@font-face {
    font-family: "Bookmania";
    src: url("assets/f3964ba6-d3e3-443a-92af-d0406c3989e0.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Bookmania";
    src: url("assets/4fb68152-d2e2-46b9-90a1-0f568f9d16e0.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Acme Gothic";
    src: url("assets/c7d34eae-e7b4-421b-be1f-c83bea4e0500.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Acme Gothic";
    src: url("assets/44d3bb38-d329-4859-b105-393788974fd4.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}


:root {
    /* --- Brand base --- */
    --sr-black: #100c08;
    --sr-gold: #d6aa42;
    --sr-gold-light: #e8c877;
    --sr-gold-dark: #a97f28;
    --sr-gold-muted: #bfa062;
    --sr-cream: #f6efe1;
    --sr-ivory: #fbf8f2;

    /* --- Warm neutral scale (charcoal-to-cream, tinted toward brand black) --- */
    --sr-neutral-950: #100c08;
    --sr-neutral-900: #1c1712;
    --sr-neutral-800: #2b241c;
    --sr-neutral-700: #453a2c;
    --sr-neutral-600: #645440;
    --sr-neutral-500: #8a765a;
    --sr-neutral-400: #ad9a7c;
    --sr-neutral-300: #cdbe9f;
    --sr-neutral-200: #e3d8bf;
    --sr-neutral-100: #efe6d2;
    --sr-neutral-50: #f8f3e8;

    /* --- Semantic surfaces --- */
    --surface-page: var(--sr-black);
    --surface-page-alt: var(--sr-neutral-900);
    --surface-card: var(--sr-neutral-900);
    --surface-card-raised: var(--sr-neutral-800);
    --surface-inverse: var(--sr-ivory);
    --surface-overlay: rgba(16, 12, 8, 0.72);

    /* --- Text --- */
    --text-primary: var(--sr-ivory);
    --text-secondary: var(--sr-neutral-300);
    --text-muted: var(--sr-neutral-500);
    --text-on-gold: var(--sr-black);
    --text-inverse: var(--sr-black);
    --text-inverse-secondary: var(--sr-neutral-700);

    /* --- Brand accent roles --- */
    --accent-primary: var(--sr-gold);
    --accent-primary-hover: var(--sr-gold-light);
    --accent-primary-active: var(--sr-gold-dark);
    --accent-on-primary: var(--sr-black);

    /* --- Borders / hairlines --- */
    --border-subtle: rgba(214, 170, 66, 0.18);
    --border-default: rgba(214, 170, 66, 0.35);
    --border-strong: var(--sr-gold);
    --border-inverse: rgba(16, 12, 8, 0.15);

    /* --- Semantic feedback (warm-compatible, desaturated to sit beside gold) --- */
    --color-success: #7a9b5e;
    --color-success-bg: rgba(122, 155, 94, 0.14);
    --color-warning: #c98a3a;
    --color-warning-bg: rgba(201, 138, 58, 0.14);
    --color-error: #a8503f;
    --color-error-bg: rgba(168, 80, 63, 0.14);
    --color-info: var(--sr-gold-muted);
    --color-info-bg: rgba(191, 160, 98, 0.14);
}


:root {
    --font-display: "Bookmania", "Iowan Old Style", Georgia, serif;
    --font-body: "Acme Gothic", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SF Mono", Consolas, monospace;

    /* Display / editorial serif scale */
    --text-display-2xl: clamp(3.5rem, 6vw, 6rem);
    --text-display-xl: clamp(2.75rem, 4.5vw, 4.5rem);
    --text-display-lg: clamp(2.25rem, 3.5vw, 3.25rem);
    --text-display-md: 1.75rem;
    --text-display-sm: 1.375rem;

    /* Body / UI sans scale */
    --text-body-lg: 1.125rem;
    --text-body-md: 1rem;
    --text-body-sm: 0.875rem;
    --text-body-xs: 0.75rem;
    --text-eyebrow: 0.8125rem;

    --leading-display: 1.05;
    --leading-heading: 1.2;
    --leading-body: 1.6;
    --leading-tight: 1.15;

    --tracking-tight: -0.01em;
    --tracking-normal: 0;
    --tracking-wide: 0.04em;
    --tracking-eyebrow: 0.28em;

    --weight-regular: 400;
    --weight-bold: 700;
}

h1 {
    line-height: var(--leading-display)
}

h2,
h3,
h4,
h5,
h6 {
    line-height: var(--leading-heading)
}


:root {
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 128px;

    --radius-sm: 2px;
    --radius-md: 3px;
    --radius-lg: 6px;
    --radius-pill: 999px;
    --radius-none: 0px;

    --container-max: 1200px;
    --gutter: var(--space-5);
}


:root {
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold-glow: 0 0 0 1px var(--border-default), 0 8px 30px rgba(214, 170, 66, 0.12);
    --ease-standard: cubic-bezier(.4, 0, .2, 1);
    /* @kind other */
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    /* @kind other */
    --duration-fast: 150ms;
    /* @kind other */
    --duration-standard: 240ms;
    /* @kind other */
    --duration-slow: 420ms;
    /* @kind other */
}


@font-face {
    font-family: "Bookmania";
    src: url("assets/f3964ba6-d3e3-443a-92af-d0406c3989e0.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Bookmania";
    src: url("assets/4fb68152-d2e2-46b9-90a1-0f568f9d16e0.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Acme Gothic";
    src: url("assets/c7d34eae-e7b4-421b-be1f-c83bea4e0500.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Acme Gothic";
    src: url("assets/44d3bb38-d329-4859-b105-393788974fd4.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    /* --- Brand base --- */
    --sr-black: #100c08;
    --sr-gold: #d6aa42;
    --sr-gold-light: #e8c877;
    --sr-gold-dark: #a97f28;
    --sr-gold-muted: #bfa062;
    --sr-cream: #f6efe1;
    --sr-ivory: #fbf8f2;

    /* --- Warm neutral scale (charcoal-to-cream, tinted toward brand black) --- */
    --sr-neutral-950: #100c08;
    --sr-neutral-900: #1c1712;
    --sr-neutral-800: #2b241c;
    --sr-neutral-700: #453a2c;
    --sr-neutral-600: #645440;
    --sr-neutral-500: #8a765a;
    --sr-neutral-400: #ad9a7c;
    --sr-neutral-300: #cdbe9f;
    --sr-neutral-200: #e3d8bf;
    --sr-neutral-100: #efe6d2;
    --sr-neutral-50: #f8f3e8;

    /* --- Semantic surfaces --- */
    --surface-page: var(--sr-black);
    --surface-page-alt: var(--sr-neutral-900);
    --surface-card: var(--sr-neutral-900);
    --surface-card-raised: var(--sr-neutral-800);
    --surface-inverse: var(--sr-ivory);
    --surface-overlay: rgba(16, 12, 8, 0.72);

    /* --- Text --- */
    --text-primary: var(--sr-ivory);
    --text-secondary: var(--sr-neutral-300);
    --text-muted: var(--sr-neutral-500);
    --text-on-gold: var(--sr-black);
    --text-inverse: var(--sr-black);
    --text-inverse-secondary: var(--sr-neutral-700);

    /* --- Brand accent roles --- */
    --accent-primary: var(--sr-gold);
    --accent-primary-hover: var(--sr-gold-light);
    --accent-primary-active: var(--sr-gold-dark);
    --accent-on-primary: var(--sr-black);

    /* --- Borders / hairlines --- */
    --border-subtle: rgba(214, 170, 66, 0.18);
    --border-default: rgba(214, 170, 66, 0.35);
    --border-strong: var(--sr-gold);
    --border-inverse: rgba(16, 12, 8, 0.15);

    /* --- Semantic feedback (warm-compatible, desaturated to sit beside gold) --- */
    --color-success: #7a9b5e;
    --color-success-bg: rgba(122, 155, 94, 0.14);
    --color-warning: #c98a3a;
    --color-warning-bg: rgba(201, 138, 58, 0.14);
    --color-error: #ef5031;
    --color-error-bg: rgba(168, 80, 63, 0.14);
    --color-info: var(--sr-gold-muted);
    --color-info-bg: rgba(191, 160, 98, 0.14);
}

:root {
    --font-display: "Bookmania", "Iowan Old Style", Georgia, serif;
    --font-body: "Acme Gothic", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SF Mono", Consolas, monospace;

    /* Display / editorial serif scale */
    --text-display-2xl: clamp(3.5rem, 6vw, 6rem);
    --text-display-xl: clamp(2.75rem, 4.5vw, 4.5rem);
    --text-display-lg: clamp(2.25rem, 3.5vw, 3.25rem);
    --text-display-md: 1.75rem;
    --text-display-sm: 1.375rem;

    /* Body / UI sans scale */
    --text-body-lg: 1.125rem;
    --text-body-md: 1rem;
    --text-body-sm: 0.875rem;
    --text-body-xs: 0.75rem;
    --text-eyebrow: 0.8125rem;

    --leading-display: 1.05;
    --leading-heading: 1.2;
    --leading-body: 1.6;
    --leading-tight: 1.15;

    --tracking-tight: -0.01em;
    --tracking-normal: 0;
    --tracking-wide: 0.04em;
    --tracking-eyebrow: 0.28em;

    --weight-regular: 400;
    --weight-bold: 700;
}

:root {
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 128px;

    --radius-sm: 2px;
    --radius-md: 3px;
    --radius-lg: 6px;
    --radius-pill: 999px;
    --radius-none: 0px;

    --container-max: 1200px;
    --gutter: var(--space-5);
}

:root {
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold-glow: 0 0 0 1px var(--border-default), 0 8px 30px rgba(214, 170, 66, 0.12);
    --ease-standard: cubic-bezier(.4, 0, .2, 1);
    /* @kind other */
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    /* @kind other */
    --duration-fast: 150ms;
    /* @kind other */
    --duration-standard: 240ms;
    /* @kind other */
    --duration-slow: 420ms;
    /* @kind other */
}




body {
    margin: 0;
    background: #100c08;
}

a {
    color: var(--sr-gold);
    text-decoration: none;
}

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

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 160px;
}

.todo {
    display: inline;
    background: rgba(214, 170, 66, 0.14);
    border-bottom: 1px dashed #d6aa42;
    color: #e8c976;
    padding: 0 4px;
    font-style: normal;
}


.s1 {
    background: var(--surface-page);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-width: 1100px
}

.s2 {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 48px;
    background: var(--sr-black);
    border-bottom: 1px solid var(--border-subtle)
}

.s3 {
    display: flex;
    align-items: center;
    gap: 14px
}

.s4 {
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none
}

.s5 {
    color: var(--border-default)
}

.s6 {
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--sr-gold);
    text-decoration: none
}

.s7 {
    justify-self: center;
    display: flex;
    align-items: center;
    text-decoration: none
}

.s8 {
    height: 44px
}

.s9 {
    display: flex;
    justify-content: flex-end;
    gap: 12px
}

.s10 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    background: var(--accent-primary);
    color: var(--accent-on-primary);
    border: 1px solid var(--accent-primary);
    border-radius: 999px;
    padding: 11px 22px;
    text-decoration: none;
    transition: all 240ms cubic-bezier(.16, 1, .3, 1)
}

.s10:hover {
    background: var(--accent-primary-hover);
    border-color: var(--accent-primary-hover);
    color: var(--accent-on-primary)
}

.s11 {
    position: sticky;
    top: 89px;
    z-index: 25;
    background: rgba(16, 12, 8, 0.94);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 48px;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap
}

.s12 {
    padding: 12px 48px;
    background: rgba(214, 170, 66, 0.07);
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 13px;
    line-height: var(--leading-body)
}

.s13 {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.s14 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.42)
}

.s15 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 48px;
    max-width: 880px
}

.s16 {
    width: 48px;
    border-top: 2px solid var(--sr-gold)
}

.s17 {
    font-size: 12px;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--sr-gold)
}

.s18 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    line-height: var(--leading-display);
    margin: 0
}

.s19 {
    font-size: var(--text-body-lg);
    line-height: var(--leading-body);
    color: var(--sr-cream);
    max-width: 680px;
    margin: 0
}

.s20 {
    display: flex;
    justify-content: center;
    margin-top: 8px
}

.s21 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    background: var(--accent-primary);
    color: var(--accent-on-primary);
    border: 1px solid var(--accent-primary);
    padding: 16px 28px;
    text-decoration: none;
    transition: all 240ms cubic-bezier(.16, 1, .3, 1)
}

.s21:hover {
    background: var(--accent-primary-hover);
    border-color: var(--accent-primary-hover);
    color: var(--accent-on-primary)
}

.s22 {
    padding: 96px 48px
}

.s23 {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px
}

.s24 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin: 0
}

.s25 {
    font-size: var(--text-body-lg);
    line-height: var(--leading-body);
    color: var(--text-secondary);
    margin: 0
}

.s26 {
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--sr-gold);
    text-decoration: underline;
    margin-top: 4px
}

.s27 {
    padding: 0 48px 96px
}

.s28 {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.s29 {
    font-size: 12px;
    letter-spacing: var(--tracking-wide);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sr-gold)
}

.s30 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin: 0 0 24px
}

.s31 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch
}

.s32 {
    border: 1px solid var(--border-default);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-primary);
    transition: border-color 240ms cubic-bezier(.16, 1, .3, 1)
}

.s32:hover {
    border-color: var(--sr-gold)
}

.s33 {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.s34 {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.s35 {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0
}

.s36 {
    font-size: 14px;
    line-height: var(--leading-body);
    color: var(--text-secondary)
}

.s32:hover {
    border-color: var(--sr-gold)
}

.s32:hover {
    border-color: var(--sr-gold)
}

.s32:hover {
    border-color: var(--sr-gold)
}

.s37 {
    width: 100%;
    height: 220px;
    overflow: hidden
}

.s38 {
    width: 120%;
    height: 120%;
    object-fit: cover;
    display: block;
    margin: 0 0 0 -10%
}

.s39 {
    max-width: 1100px;
    margin: 0 auto 56px
}

.s40 {
    border: 1px solid var(--border-default);
    padding: 6px
}

.s41 {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block
}

.s42 {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.s43 {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.s44 {
    font-size: var(--text-body-md);
    line-height: var(--leading-body);
    color: var(--text-secondary);
    margin: 0
}

.s45 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    padding: 14px 24px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 12px;
    transition: all 240ms cubic-bezier(.16, 1, .3, 1)
}

.s45:hover {
    border-color: var(--sr-gold);
    color: var(--sr-gold)
}

.s46 {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block
}

.s47 {
    display: flex;
    flex-direction: column;
    margin-top: 8px
}

.s48 {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
    border-top: 1px solid var(--border-subtle)
}

.s49 {
    font-size: 15px;
    color: var(--text-primary)
}

.s50 {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--sr-gold);
    white-space: nowrap
}

.s51 {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle)
}

.s52 {
    font-size: var(--text-body-md);
    line-height: var(--leading-body);
    color: var(--text-secondary);
    margin: 8px 0 0
}

.s45:hover {
    border-color: var(--sr-gold);
    color: var(--sr-gold)
}

.s45:hover {
    border-color: var(--sr-gold);
    color: var(--sr-gold)
}

.s53 {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block
}

.s54 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    padding: 14px 24px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 8px;
    transition: all 240ms cubic-bezier(.16, 1, .3, 1)
}

.s54:hover {
    border-color: var(--sr-gold);
    color: var(--sr-gold)
}

.s55 {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 96px
}

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

.s57 {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 12, 8, 0.5) 0%, rgba(16, 12, 8, 0.93) 60%)
}

.s58 {
    position: relative;
    width: 100%;
    padding: 80px 48px;
    box-sizing: border-box
}

.s59 {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px
}

.s54:hover {
    border-color: var(--sr-gold);
    color: var(--sr-gold)
}

.s60 {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.s61 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 760px
}

.s62 {
    border: 1px solid var(--border-default);
    padding: 6px;
    background: var(--surface-card)
}

.s63 {
    width: 100%;
    height: auto;
    display: block
}

.s64 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.s65 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px
}

.s66 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--sr-gold)
}

.s67 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    padding: 14px 24px;
    text-decoration: none;
    align-self: flex-start;
    transition: all 240ms cubic-bezier(.16, 1, .3, 1)
}

.s67:hover {
    border-color: var(--sr-gold);
    color: var(--sr-gold)
}

.s68 {
    font-size: 15px;
    line-height: var(--leading-body);
    color: var(--text-primary);
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px
}

.s54:hover {
    border-color: var(--sr-gold);
    color: var(--sr-gold)
}

.s69 {
    width: 100%;
    height: 380px;
    background: var(--surface-card);
    background-image: url("assets/st-ribs-muenchen_kartenbearbeitung-schwarz-weiss-gold.png");
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.s70 {
    font-size: 11px;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--sr-gold)
}

.s71 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-secondary)
}

.s72 {
    font-size: 13px;
    color: var(--text-muted)
}

.s73 {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px
}

.s74 {
    margin: 0 0 96px
}

.s75 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block
}

.s76 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.s77 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-default);
    padding-top: 20px
}

.s78 {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--sr-gold);
    line-height: 1
}

.s79 {
    font-family: var(--font-display);
    font-size: 19px;
    margin: 0
}

.s80 {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: var(--leading-body)
}

.s81 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    padding: 14px 24px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 20px;
    transition: all 240ms cubic-bezier(.16, 1, .3, 1)
}

.s81:hover {
    border-color: var(--sr-gold);
    color: var(--sr-gold)
}

.s82 {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 48px;
    box-sizing: border-box
}

.s83 {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block
}

.s84 {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--sr-gold);
    box-shadow: var(--shadow-gold-glow);
    background: var(--surface-card)
}

.s85 {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr
}

.s86 {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-right: 1px solid var(--border-subtle)
}

.s87 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin: 0
}

.s88 {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid var(--border-strong);
    background: rgba(214, 170, 66, 0.07);
    padding: 18px 20px;
    margin-top: 8px
}

.s89 {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--sr-gold);
    margin-top: 7px;
    flex-shrink: 0
}

.s90 {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.s91 {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.2
}

.s92 {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.s93 {
    font-size: 14px;
    color: var(--text-secondary)
}

.s94 {
    padding: 56px 48px
}

.s95 {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.s96 {
    display: flex;
    align-items: center;
    gap: 12px
}

.s97 {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--sr-gold)
}

.s98 {
    flex: 1;
    height: 1px;
    background: var(--border-subtle)
}

.s99 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.s100 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px
}

.s101 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-body)
}

.s102 {
    font-size: 12px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-secondary)
}

.s103 {
    font-family: var(--font-body);
    font-size: var(--text-body-md);
    background: var(--surface-card);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    outline: none;
    resize: vertical;
    transition: border-color var(--duration-fast) var(--ease-standard)
}

.s103:focus {
    border-color: var(--sr-gold)
}

.s104 {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.s105 {
    font-size: 12px;
    color: var(--text-muted);
    padding-left: 28px
}

.s106 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    background: var(--accent-primary);
    color: var(--accent-on-primary);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    cursor: not-allowed;
    opacity: .45;
    transition: all 150ms cubic-bezier(.4, 0, .2, 1)
}

.s106:hover {
    background: var(--accent-primary-hover);
    border-color: var(--accent-primary-hover)
}

.s107 {
    font-size: 12px;
    color: var(--text-muted);
    line-height: var(--leading-body)
}

.s108 {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.s109 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin: 0 0 8px
}

.s110 {
    border-top: 1px solid var(--border-subtle)
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle)
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    font: inherit;
    font-size: 18px;
    font-weight: 500;
    appearance: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-display);
}

.faq-question:focus-visible {
    outline: 2px solid var(--sr-gold);
    outline-offset: 4px
}

.faq-question:hover {
    color: var(--sr-gold)
}

.faq-question span:last-child {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    color: var(--sr-gold);
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    transition: color var(--duration-fast) var(--ease-standard)
}

.s111 {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.s112 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4)
}

.s113 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 80px 48px;
    max-width: 760px
}

.s114 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin: 0
}

.s115 {
    font-size: var(--text-body-lg);
    line-height: var(--leading-body);
    color: var(--sr-cream);
    margin: 0
}

.s116 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    background: var(--accent-primary);
    color: var(--accent-on-primary);
    border: 1px solid var(--accent-primary);
    padding: 16px 28px;
    text-decoration: none;
    margin-top: 6px;
    transition: all 240ms cubic-bezier(.16, 1, .3, 1)
}

.s116:hover {
    background: var(--accent-primary-hover);
    border-color: var(--accent-primary-hover);
    color: var(--accent-on-primary)
}

.s117 {
    padding: 56px 48px 40px;
    background: var(--sr-neutral-950);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px
}

.s118 {
    height: 48px;
    margin-bottom: 16px
}

.s119 {
    color: var(--text-muted);
    font-size: 13px;
    max-width: 280px;
    line-height: var(--leading-body)
}

.s120 {
    display: flex;
    gap: 56px;
    flex-wrap: wrap
}

.s121 {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.s122 {
    font-size: 11px;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--sr-gold);
    margin-bottom: 6px
}

.s123 {
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none
}

.s124 {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.s125 {
    color: var(--text-secondary);
    font-size: 13px
}


.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-body)
}

.field label {
    font-size: 12px;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-secondary)
}

.field input,
.field select {
    font-family: var(--font-body);
    font-size: var(--text-body-md);
    background: var(--surface-card);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    outline: none;
}

.field input:focus,
.field select:focus {
    border-color: var(--sr-gold)
}

.checkbox-field {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4
}

.checkbox-field input {
    margin-top: 3px;
    accent-color: var(--sr-gold)
}

.faq-answer {
    display: block;
    font-size: 15px;
    line-height: var(--leading-body);
    color: var(--text-secondary);
    padding: 0 48px 24px 0;
    max-width: 660px
}

.faq-answer[hidden] {
    display: none
}

#event-form .s106.is-valid {
    cursor: pointer;
    opacity: 1
}

#event-form .s106:disabled {
    cursor: not-allowed;
    opacity: .45
}

.event-form-message {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5
}

.field-error {
    display: block;
    margin-top: 6px;
    color: var(--color-error);
    font-size: 12px;
    line-height: 1.4
}

.field.has-error input,
.field.has-error select,
.checkbox-field.has-error input {
    outline: 1px solid var(--color-error);
    outline-offset: 1px
}

.event-form-message.is-error {
    color: var(--color-error)
}

.event-form-message.is-success {
    color: var(--color-success)
}