:root {
    --sh-dark: #002538;
    --sh-dark-2: #001925;
    --sh-cream: #F6EEDC;
    --sh-cream-2: #FFF9EA;
    --sh-paper: #FDF5E3;
    --sh-brass: #B9945B;
    --sh-brass-2: #D7BA7B;
    --sh-ink: #17313A;
    --sh-muted: rgba(23, 49, 58, .74);
    --sh-shadow: 0 24px 70px rgba(0, 24, 35, .22);
    --sh-soft-shadow: 0 14px 35px rgba(0, 24, 35, .14);
    --sh-radius: 24px;
    --sh-wrap: 1240px;
    --sh-serif: Georgia, 'Times New Roman', Times, serif;
    --sh-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--sh-cream);
    color: var(--sh-ink);
    font-family: var(--sh-sans);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--sh-brass); color: #fff; }

.sh-wrap {
    width: min(calc(100% - 40px), var(--sh-wrap));
    margin-inline: auto;
}

.sh-skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--sh-cream);
    color: var(--sh-dark);
    padding: 10px 14px;
    z-index: 1000;
}
.sh-skip-link:focus { left: 10px; }

.sh-site-header {
    background:
        radial-gradient(circle at top left, rgba(185,148,91,.18), transparent 38%),
        linear-gradient(180deg, #002538 0%, #001f2f 100%);
    color: var(--sh-cream-2);
    position: relative;
    z-index: 10;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}
.sh-site-header::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215,186,123,.55), transparent);
}
.sh-site-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.sh-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    letter-spacing: .05em;
}
.sh-brand__mark {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(215,186,123,.65);
    color: var(--sh-brass-2);
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.04);
}
.sh-brand__text strong,
.sh-footer-logo {
    display: block;
    font-family: var(--sh-serif);
    font-size: clamp(28px, 3vw, 42px);
    line-height: .9;
    color: var(--sh-brass-2);
    font-weight: 700;
}
.sh-brand__text em,
.sh-footer-subtitle {
    display: block;
    margin-top: 6px;
    color: rgba(246,238,220,.83);
    font-style: normal;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
}
.custom-logo { max-height: 70px; width: auto; }

.sh-main-nav__list,
.sh-mobile-nav__list,
.sh-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sh-main-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
}
.sh-main-nav a {
    color: rgba(246,238,220,.9);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: .04em;
    position: relative;
    padding: 9px 0;
}
.sh-main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--sh-brass-2);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}
.sh-main-nav a:hover::after,
.sh-main-nav .current-menu-item > a::after { transform: scaleX(1); }
.sh-menu-toggle {
    display: none;
    border: 1px solid rgba(215,186,123,.55);
    color: var(--sh-cream);
    background: transparent;
    padding: 10px 14px;
    border-radius: 999px;
}
.sh-mobile-nav { display: none; }

.sh-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    font-weight: 750;
    border: 1px solid rgba(185,148,91,.75);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.sh-button:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0,0,0,.16); }
.sh-button--primary {
    color: var(--sh-cream-2);
    background: linear-gradient(180deg, #00324a, var(--sh-dark));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 12px 25px rgba(0, 37, 56, .23);
}
.sh-button--secondary {
    color: var(--sh-dark);
    background: linear-gradient(180deg, #fff8e8, #ead8b9);
}
.sh-button--light {
    color: var(--sh-dark);
    background: linear-gradient(180deg, #fff9e9, var(--sh-cream));
    border-color: rgba(215,186,123,.8);
}
.sh-button--full { width: 100%; }
.sh-text-link {
    color: var(--sh-dark);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .11em;
    text-decoration: none;
    border-bottom: 1px solid var(--sh-brass);
}

.sh-hero-shell {
    background:
        radial-gradient(circle at 16% 4%, rgba(215,186,123,.18), transparent 26%),
        linear-gradient(180deg, var(--sh-dark) 0%, var(--sh-dark) 58%, var(--sh-cream) 58%, var(--sh-cream) 100%);
    padding: 34px 0 70px;
    position: relative;
}
.sh-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 28px;
    align-items: stretch;
}
.sh-hero-card {
    min-height: clamp(620px, 72vh, 760px);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    box-shadow: var(--sh-shadow);
    border: 1px solid rgba(215,186,123,.55);
}
.sh-hero-card::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(215,186,123,.42);
    border-radius: 22px;
    pointer-events: none;
    z-index: 2;
}
.sh-hero-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(246,238,220,.92) 0%, rgba(246,238,220,.76) 38%, rgba(246,238,220,.18) 68%, rgba(0,37,56,.08) 100%),
        linear-gradient(180deg, rgba(255,255,255,.2), rgba(0,37,56,.18));
}
.sh-hero-content {
    position: relative;
    z-index: 3;
    width: min(620px, 72%);
    padding: clamp(48px, 6vw, 86px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sh-kicker {
    margin: 0 0 4px;
    color: var(--sh-dark);
    font-family: var(--sh-serif);
    font-size: clamp(38px, 5.5vw, 72px);
    line-height: .9;
    font-weight: 700;
}
.sh-kicker--small {
    font-family: var(--sh-sans);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--sh-brass);
}
.sh-hero-title {
    margin: 0;
    color: var(--sh-dark);
    font-family: var(--sh-serif);
    font-size: clamp(62px, 8vw, 116px);
    line-height: .82;
    letter-spacing: -.055em;
    text-shadow: 0 1px 0 rgba(255,255,255,.4);
}
.sh-hero-subtitle {
    margin: 22px 0 0;
    color: var(--sh-brass);
    font-family: var(--sh-serif);
    font-size: clamp(26px, 3.2vw, 44px);
    font-style: italic;
    line-height: 1.05;
}
.sh-ornament {
    color: var(--sh-brass);
    margin: 18px 0;
    display: flex;
    align-items: center;
    gap: 14px;
}
.sh-ornament::before,
.sh-ornament::after {
    content: '';
    width: 88px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sh-brass), transparent);
}
.sh-hero-text {
    margin: 0;
    max-width: 540px;
    font-size: clamp(17px, 1.4vw, 20px);
    color: rgba(23,49,58,.92);
}
.sh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.sh-side-column {
    display: grid;
    gap: 22px;
    align-content: start;
}
.sh-brass-card,
.sh-history-panel,
.sh-feature-card,
.sh-join-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,249,234,.98), rgba(246,238,220,.98)),
        radial-gradient(circle at top left, rgba(185,148,91,.2), transparent 34%);
    border: 1px solid rgba(185,148,91,.82);
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-soft-shadow), inset 0 0 0 1px rgba(255,255,255,.55);
}
.sh-brass-card::before,
.sh-history-panel::before,
.sh-feature-card::before,
.sh-join-card::before {
    content: '';
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(185,148,91,.34);
    border-radius: calc(var(--sh-radius) - 7px);
    pointer-events: none;
}
.sh-brass-card {
    padding: 28px;
    min-height: 0;
}
.sh-brass-card h2,
.sh-section-head h2,
.sh-charter h2,
.sh-history-panel h2,
.sh-page-hero h1 {
    margin: 0;
    color: var(--sh-dark);
    font-family: var(--sh-serif);
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.sh-brass-card h2 {
    font-size: clamp(25px, 2.4vw, 34px);
    text-align: center;
}
.sh-card-lead {
    margin: 12px 0 18px;
    text-align: center;
    color: var(--sh-muted);
    font-weight: 650;
}
.sh-schedule-list {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}
.sh-schedule-row {
    display: grid;
    grid-template-columns: 1.3fr .6fr 1.2fr .7fr;
    gap: 8px;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(185,148,91,.25);
    font-size: 12px;
    color: var(--sh-ink);
}
.sh-schedule-row strong { color: var(--sh-dark); }
.sh-schedule-row em { font-style: normal; }
.sh-schedule-row b { color: var(--sh-brass); text-align: right; }
.sh-engine-preview {
    display: block;
    height: 330px;
    border-radius: 18px;
    background-image: var(--engine-image);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(185,148,91,.7);
    box-shadow: inset 0 0 0 7px rgba(255,249,234,.18);
    position: relative;
    overflow: hidden;
}
.sh-engine-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,37,56,.3));
}
.sh-play {
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,249,234,.9);
    color: var(--sh-dark);
    box-shadow: 0 15px 30px rgba(0,0,0,.25);
}

.sh-section {
    padding: clamp(72px, 8vw, 112px) 0;
}
.sh-section--cream {
    background:
        radial-gradient(circle at 12% 0, rgba(185,148,91,.12), transparent 30%),
        var(--sh-cream);
}
.sh-section-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 42px;
}
.sh-section-head--compact { margin-bottom: 26px; }
.sh-section-head--left { text-align: left; margin-left: 0; }
.sh-section-head h2::after,
.sh-charter h2::after,
.sh-history-panel h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, transparent, var(--sh-brass), transparent);
}
.sh-section-head--left h2::after { margin-left: 0; }
.sh-section-head p {
    margin: 18px auto 0;
    color: var(--sh-muted);
    font-size: clamp(18px, 1.5vw, 21px);
}
.sh-card-grid--three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sh-feature-card {
    overflow: hidden;
    padding: 10px;
}
.sh-feature-card__image {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 18px 18px 8px 8px;
    border: 1px solid rgba(185,148,91,.5);
}
.sh-feature-card__body {
    padding: 24px 20px 22px;
}
.sh-feature-card h3,
.sh-join-card h3 {
    margin: 0 0 12px;
    font-family: var(--sh-serif);
    color: var(--sh-dark);
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.05;
    text-transform: uppercase;
}
.sh-feature-card p,
.sh-join-card p,
.sh-history-panel p,
.sh-charter p {
    margin: 0;
    color: var(--sh-muted);
}
.sh-center-action { text-align: center; margin-top: 34px; }

.sh-charter {
    background:
        radial-gradient(circle at top right, rgba(215,186,123,.16), transparent 33%),
        linear-gradient(180deg, var(--sh-dark), var(--sh-dark-2));
    color: var(--sh-cream);
}
.sh-charter-grid {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 48%);
    gap: 34px;
    align-items: center;
}
.sh-charter-content {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 28px;
    align-items: center;
}
.sh-charter h2 {
    color: var(--sh-brass-2);
}
.sh-charter h2::after { margin-left: 0; }
.sh-charter p {
    color: rgba(246,238,220,.86);
    font-size: 19px;
    margin: 20px 0 28px;
}
.sh-round-badge {
    width: 160px;
    height: 160px;
    border: 1px solid rgba(215,186,123,.7);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--sh-brass-2);
    font-family: var(--sh-serif);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 9px rgba(255,255,255,.04), 0 18px 45px rgba(0,0,0,.22);
}
.sh-charter-image {
    min-height: 390px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(215,186,123,.7);
    box-shadow: var(--sh-shadow);
}

.sh-gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.sh-gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    display: block;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(185,148,91,.6);
    box-shadow: var(--sh-soft-shadow);
    transition: transform .22s ease;
}
.sh-gallery-item:hover { transform: translateY(-3px); }

.sh-join {
    background:
        radial-gradient(circle at 20% 15%, rgba(215,186,123,.16), transparent 30%),
        linear-gradient(180deg, var(--sh-dark), var(--sh-dark-2));
    color: var(--sh-cream);
}
.sh-join-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 30px;
    align-items: stretch;
}
.sh-history-panel {
    padding: 22px;
}
.sh-history-panel__image {
    height: 210px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    border: 1px solid rgba(185,148,91,.58);
    margin-bottom: 24px;
}
.sh-history-panel h2 { font-size: clamp(28px, 3vw, 42px); }
.sh-history-panel h2::after { margin-left: 0; }
.sh-history-panel p { margin: 18px 0 24px; }
.sh-join-content {
    padding: 16px 0;
}
.sh-join .sh-section-head h2 {
    color: var(--sh-brass-2);
}
.sh-join .sh-section-head p { color: rgba(246,238,220,.82); }
.sh-join-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}
.sh-join-card {
    padding: 28px 22px;
}
.sh-join-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--sh-dark);
    color: var(--sh-brass-2);
    margin-bottom: 18px;
}

.sh-page-hero {
    background: linear-gradient(180deg, var(--sh-dark), var(--sh-dark-2));
    color: var(--sh-cream);
    padding: 70px 0 76px;
}
.sh-page-hero h1 {
    color: var(--sh-cream);
    font-size: clamp(44px, 6vw, 78px);
}
.sh-page-content {
    max-width: 860px;
    background: rgba(255,249,234,.65);
    border: 1px solid rgba(185,148,91,.35);
    border-radius: 24px;
    padding: clamp(26px, 4vw, 54px);
    box-shadow: var(--sh-soft-shadow);
}
.sh-page-content h2,
.sh-page-content h3 {
    font-family: var(--sh-serif);
    color: var(--sh-dark);
    line-height: 1.1;
}
.sh-single-image img {
    border-radius: 20px;
    border: 1px solid rgba(185,148,91,.5);
    margin-bottom: 24px;
}
.sh-post-list {
    display: grid;
    gap: 22px;
}
.sh-post-card {
    background: var(--sh-paper);
    border: 1px solid rgba(185,148,91,.42);
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--sh-soft-shadow);
}
.sh-post-card h2 {
    margin-top: 0;
    font-family: var(--sh-serif);
}
.sh-post-card a { text-decoration: none; }
.sh-post-card__image img {
    border-radius: 16px;
    margin-bottom: 18px;
}

.sh-site-footer {
    background: linear-gradient(180deg, var(--sh-dark-2), #00121b);
    color: rgba(246,238,220,.86);
    padding: 72px 0 30px;
}
.sh-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 34px;
}
.sh-footer-logo { color: var(--sh-brass-2); font-size: 38px; }
.sh-footer-subtitle { margin-bottom: 18px; }
.sh-site-footer h2 {
    margin: 0 0 16px;
    color: var(--sh-brass-2);
    font-family: var(--sh-serif);
    font-size: 24px;
    text-transform: uppercase;
}
.sh-site-footer a { color: var(--sh-cream); text-decoration: none; }
.sh-footer-menu { display: grid; gap: 8px; }
.sh-footer-bottom {
    border-top: 1px solid rgba(215,186,123,.25);
    margin-top: 44px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    color: rgba(246,238,220,.65);
}

@media (max-width: 1080px) {
    .sh-hero-grid { grid-template-columns: 1fr; }
    .sh-side-column { grid-template-columns: repeat(2, 1fr); }
    .sh-hero-content { width: min(720px, 90%); }
    .sh-charter-grid, .sh-join-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .sh-main-nav { display: none; }
    .sh-menu-toggle { display: inline-flex; }
    .sh-mobile-nav.is-open { display: block; }
    .sh-mobile-nav__list {
        display: grid;
        gap: 0;
        padding: 0 20px 20px;
    }
    .sh-mobile-nav a {
        display: block;
        padding: 12px 0;
        color: var(--sh-cream);
        text-decoration: none;
        border-top: 1px solid rgba(215,186,123,.2);
    }
    .sh-site-header__inner { min-height: 74px; }
    .sh-hero-shell { padding-top: 20px; }
    .sh-hero-card { min-height: 620px; }
    .sh-hero-content { padding: 42px 26px; width: 100%; justify-content: flex-end; }
    .sh-hero-card__shade { background: linear-gradient(180deg, rgba(246,238,220,.86), rgba(246,238,220,.72) 55%, rgba(246,238,220,.93)); }
    .sh-side-column, .sh-card-grid--three, .sh-gallery-strip, .sh-join-cards, .sh-footer-grid { grid-template-columns: 1fr; }
    .sh-charter-content { grid-template-columns: 1fr; }
    .sh-round-badge { width: 140px; height: 140px; }
    .sh-gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .sh-footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
    .sh-wrap { width: min(calc(100% - 24px), var(--sh-wrap)); }
    .sh-brand__text strong { font-size: 26px; }
    .sh-brand__text em { font-size: 9px; letter-spacing: .12em; }
    .sh-hero-card { border-radius: 20px; }
    .sh-hero-card::before { inset: 8px; border-radius: 15px; }
    .sh-hero-title { font-size: clamp(48px, 16vw, 66px); }
    .sh-kicker { font-size: clamp(34px, 12vw, 48px); }
    .sh-hero-subtitle { font-size: 25px; }
    .sh-hero-actions .sh-button { width: 100%; }
    .sh-brass-card { padding: 22px 18px; }
    .sh-schedule-row { grid-template-columns: 1fr .5fr; }
    .sh-schedule-row em, .sh-schedule-row b { grid-column: span 1; text-align: left; }
}
