:root {
    --bg: #fffdf5;
    --surface: #fcf9f8;
    --surface-warm: #f0eded;
    --ink: #1c1b1b;
    --muted: #434844;
    --line: rgba(45, 62, 53, 0.12);
    --accent: #924a2e;
    --accent-dark: #182820;
    --sage: #516258;
    --gold: #a9a593;
    --shadow: 0 32px 64px -12px rgba(24, 40, 32, 0.08);
}

.site-header.home-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 80px;
    padding: 0 max(20px, calc((100vw - 1200px) / 2 + 80px));
    border-bottom: 0;
    background: rgba(252, 249, 248, 0.82);
    backdrop-filter: blur(12px);
}

.site-header.home-header .home-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-primary, #182820);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.site-header.home-header .home-brand-logo {
    width: 42px;
    height: 42px;
    max-width: 42px;
    flex: 0 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

.site-header.home-header .home-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-header.home-header .home-nav a + a::before {
    content: none;
}

.site-header.home-header .home-nav a {
    padding: 0;
    border-radius: 0;
    color: var(--home-muted, #434844);
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.site-header.home-header .home-nav a:hover,
.site-header.home-header .home-nav a[aria-current="page"] {
    color: var(--home-secondary, #924a2e);
    background: transparent;
}

.site-header.home-header .home-nav a[aria-current="page"] {
    color: var(--home-primary, #182820);
    font-weight: 700;
}

.site-header.home-header .home-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.site-header.home-header .home-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--home-primary, #182820);
}

@media (max-width: 1020px) {
    .site-header.home-header {
        padding-right: 32px;
        padding-left: 32px;
    }
}

@media (max-width: 920px) {
    .site-header.home-header {
        min-height: 72px;
    }

    .site-header.home-header .home-nav-toggle {
        display: block;
    }

    .site-header.home-header .home-nav {
        position: fixed;
        top: 72px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px;
        border: 1px solid var(--home-border, rgba(45, 62, 53, 0.12));
        border-radius: 8px;
        background: rgba(252, 249, 248, 0.98);
        box-shadow: 0 10px 32px -4px rgba(24, 40, 32, 0.08);
    }

    .site-header.home-header .home-nav.is-open {
        display: flex;
    }

    .site-header.home-header .home-nav a {
        padding: 13px 12px;
    }
}

@media (max-width: 640px) {
    .site-header.home-header {
        padding-right: 20px;
        padding-left: 20px;
    }

    .site-header.home-header .home-brand {
        font-size: 16px;
        letter-spacing: 0;
    }
}

.brand-redesign {
    --brand-bg: #fffdf5;
    --brand-surface: #fcf9f8;
    --brand-surface-low: #f6f3f2;
    --brand-surface-container: #f0eded;
    --brand-border: rgba(45, 62, 53, 0.12);
    --brand-primary: #182820;
    --brand-primary-container: #2d3e35;
    --brand-secondary: #924a2e;
    --brand-tertiary: #272519;
    --brand-tertiary-soft: #e8e2cf;
    --brand-muted: #434844;
    --brand-warm: #fffdf5;
    --brand-shadow: 0 10px 32px -4px rgba(24, 40, 32, 0.04);
    color: var(--brand-primary);
    background: var(--brand-bg);
}

.brand-redesign .material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.brand-site-header {
    border-bottom: 1px solid var(--brand-border);
    background: rgba(255, 253, 245, 0.9);
}

.brand-top-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 20px;
    color: var(--brand-warm);
    background: var(--brand-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-top-action:hover {
    opacity: 0.9;
}

.brand-top-action:active {
    transform: scale(0.98);
}

.brand-main {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow-x: hidden;
    padding-top: 80px;
}

.brand-hero {
    position: relative;
    display: flex;
    min-height: 70vh;
    align-items: center;
    overflow: hidden;
}

.brand-hero-media {
    position: absolute;
    inset: 0;
}

.brand-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 253, 245, 0.08) 0%, #fffdf5 100%);
}

.brand-hero-content,
.brand-services,
.brand-cases-inner,
.brand-inquiry {
    width: min(1200px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.brand-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.brand-hero-content > * {
    max-width: 680px;
}

.brand-hero-content span,
.brand-section-heading span,
.brand-inquiry-intro span,
.brand-footer span {
    display: block;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.brand-hero-content h1,
.brand-inquiry-intro h2 {
    margin: 16px 0 24px;
    color: var(--brand-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
}

.brand-hero-content p {
    margin: 0 0 12px;
    color: var(--brand-muted);
    font-size: 18px;
    line-height: 1.7;
}

.brand-hero-content p + p {
    max-width: 620px;
    font-size: 16px;
    opacity: 0.82;
}

.brand-services {
    padding: 120px 0;
}

.brand-section-heading {
    margin-bottom: 64px;
}

.brand-section-heading h2 {
    margin: 12px 0 0;
    color: var(--brand-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    line-height: 1.3;
}

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

.brand-service-grid article {
    min-height: 144px;
    padding: 24px;
    border: 1px solid var(--brand-border);
    background: #fff;
    transition: border-color 0.25s ease;
}

.brand-service-grid article:hover {
    border-color: var(--brand-primary);
}

.brand-service-grid .material-symbols-outlined {
    display: block;
    margin-bottom: 18px;
    color: var(--brand-primary);
    font-size: 32px;
    transition: transform 0.25s ease;
}

.brand-service-grid article:hover .material-symbols-outlined {
    transform: scale(1.1);
}

.brand-service-grid h3 {
    margin: 0;
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.brand-cases {
    padding: 120px 0;
    background: rgba(39, 37, 25, 0.05);
}

.brand-cases-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.brand-cases-heading p {
    max-width: 360px;
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.7;
}

.brand-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.brand-case-grid article {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(24, 40, 32, 0.12);
}

.brand-case-grid figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: var(--brand-surface-container);
    border-radius: 20px;
    box-shadow: var(--brand-shadow);
}

.brand-case-grid img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

.brand-case-carousel img:not(:first-child) {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.brand-case-carousel img {
    transition: opacity 0.45s ease;
}

.brand-case-carousel figcaption {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.brand-case-carousel figcaption button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 0 1px rgba(24, 40, 32, 0.12);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.brand-case-carousel figcaption button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.brand-case-carousel img.is-active {
    opacity: 1;
}

.brand-case-carousel figcaption button.is-active {
    background: #ffffff;
    transform: scale(1.2);
}

.brand-case-copy > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.brand-case-copy span {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 0 8px;
    color: var(--brand-warm);
    background: var(--brand-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
}

.brand-case-copy time {
    color: var(--brand-muted);
    font-size: 14px;
    font-weight: 500;
}

.brand-case-copy h3 {
    margin: 0 0 10px;
    color: var(--brand-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    line-height: 1.4;
}

.brand-case-copy p {
    margin: 0 0 16px;
    color: var(--brand-muted);
    line-height: 1.65;
}

.brand-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-case-copy small {
    color: rgba(24, 40, 32, 0.62);
    border-bottom: 1px solid rgba(24, 40, 32, 0.2);
    padding-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-inquiry {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 24px;
    padding: 120px 0;
}

.brand-inquiry-intro p {
    max-width: 440px;
    margin: 0;
    color: var(--brand-muted);
    font-size: 18px;
    line-height: 1.7;
}

.brand-inquiry-form {
    display: grid;
    gap: 32px;
    padding: clamp(32px, 4vw, 48px);
    background: var(--brand-surface-low);
}

.brand-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.brand-inquiry-form label {
    display: grid;
    gap: 10px;
}

.brand-inquiry-form label span,
.brand-inquiry-form legend {
    color: var(--brand-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.brand-inquiry-form input,
.brand-inquiry-form textarea,
.brand-inquiry-form select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--brand-border);
    border-radius: 0;
    background: transparent;
    color: var(--brand-primary);
    font: inherit;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.brand-inquiry-form input,
.brand-inquiry-form select {
    min-height: 44px;
    padding: 8px 0;
}

.brand-inquiry-form textarea {
    min-height: 116px;
    padding: 10px 0;
    resize: vertical;
}

.brand-inquiry-form input:focus,
.brand-inquiry-form textarea:focus,
.brand-inquiry-form select:focus {
    outline: 0;
    border-bottom-color: var(--brand-primary);
}

.brand-inquiry-form ::placeholder {
    color: rgba(67, 72, 68, 0.48);
}

.brand-inquiry-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.brand-inquiry-form fieldset > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.brand-inquiry-form fieldset label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.brand-inquiry-form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-height: 0;
    flex: 0 0 auto;
    accent-color: var(--brand-primary);
}

.brand-inquiry-form fieldset label span {
    color: var(--brand-muted);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: none;
    transition: color 0.2s ease;
}

.brand-inquiry-form fieldset label:hover span {
    color: var(--brand-primary);
}

.brand-form-full {
    grid-column: 1 / -1;
}

.brand-inquiry-form button {
    min-height: 56px;
    border: 0;
    color: var(--brand-warm);
    background: var(--brand-primary);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.brand-inquiry-form button:hover {
    background: var(--brand-primary-container);
}

.brand-inquiry-form button:active {
    transform: scale(0.98);
}

.brand-inquiry-form button:disabled {
    cursor: progress;
    opacity: 0.8;
}

.brand-form-message {
    min-height: 20px;
    margin: -16px 0 0;
    color: var(--brand-secondary);
    font-size: 14px;
}

.brand-footer {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: 48px 24px;
    padding: 120px max(20px, calc((100vw - 1200px) / 2 + 80px)) 40px;
    color: #a9a593;
    background: var(--brand-tertiary);
}

.brand-footer h2 {
    margin: 0 0 24px;
    color: #fff;
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    line-height: 1.4;
}

.brand-footer p {
    max-width: 360px;
    margin: 0;
    line-height: 1.7;
}

.brand-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.brand-footer nav div {
    display: grid;
    align-content: start;
    gap: 16px;
}

.brand-footer span {
    color: #a9a593;
}

.brand-footer a {
    color: #a9a593;
}

.brand-footer a:hover {
    color: #fff;
}

.brand-footer > div:last-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer > div:last-child p {
    max-width: none;
    color: rgba(169, 165, 147, 0.72);
    font-size: 14px;
}

@media (max-width: 980px) {
    .brand-top-action {
        display: none;
    }

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

    .brand-inquiry,
    .brand-footer {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .brand-main {
        padding-top: 64px;
    }

    .brand-hero {
        min-height: 72vh;
    }

    .brand-services,
    .brand-cases,
    .brand-inquiry {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .brand-service-grid,
    .brand-form-grid,
    .brand-inquiry-form fieldset > div {
        grid-template-columns: 1fr;
    }

    .brand-cases-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-case-grid {
        grid-template-columns: 1fr;
    }

    .brand-inquiry-form {
        padding: 32px 24px;
    }

    .brand-footer {
        padding: 72px 20px 36px;
    }

    .brand-footer nav,
    .brand-footer > div:last-child {
        grid-template-columns: 1fr;
    }

    .brand-footer > div:last-child {
        align-items: flex-start;
        flex-direction: column;
    }
}

.story-redesign {
    --story-bg: #fffdf5;
    --story-surface: #fcf9f8;
    --story-surface-low: #f6f3f2;
    --story-surface-container: #f0eded;
    --story-border: rgba(45, 62, 53, 0.12);
    --story-primary: #182820;
    --story-primary-container: #2d3e35;
    --story-primary-soft: #d4e7da;
    --story-secondary: #924a2e;
    --story-tertiary-soft: #e8e2cf;
    --story-muted: #434844;
    --story-subtle: #8c8c8c;
    --story-warm: #fffdf5;
    --story-shadow: 0 32px 64px -12px rgba(24, 40, 32, 0.04);
    color: var(--story-primary);
    background: var(--story-bg);
}

.story-redesign .material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.story-site-header {
    background: rgba(252, 249, 248, 0.86);
}

.stories-main,
.story-detail-main {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow-x: hidden;
}

.stories-main {
    padding: 128px 0 120px;
}

.stories-hero,
.stories-list,
.stories-more,
.stories-pagination,
.story-back-link,
.story-detail-hero,
.story-meta-grid,
.story-gallery,
.story-participant,
.story-next {
    width: min(1200px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.stories-hero {
    margin-bottom: 120px;
}

.stories-hero > div {
    max-width: 700px;
}

.stories-kicker {
    margin: 0;
    color: var(--story-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.stories-hero h1,
.story-detail-hero h1 {
    margin: 20px 0 0;
    color: var(--story-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
}

.stories-hero p:not(.stories-kicker) {
    margin: 32px 0 0;
    color: var(--story-muted);
    font-size: 18px;
    line-height: 1.7;
}

.stories-list {
    display: grid;
    gap: 120px;
    padding-bottom: 96px;
}

.story-list-card {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: 24px;
    align-items: center;
}

.story-list-card:nth-child(even) .story-list-cover {
    order: 2;
}

.story-list-card:nth-child(even) .story-list-copy {
    order: 1;
}

.story-list-cover {
    overflow: hidden;
    border-radius: 8px;
    background: var(--story-surface-container);
    box-shadow: var(--story-shadow);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.story-list-cover:hover {
    transform: translateY(-8px);
}

.story-list-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.story-list-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-list-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.story-list-meta span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--story-primary);
    background: var(--story-tertiary-soft);
    font-size: 14px;
    font-weight: 600;
}

.story-list-meta time {
    color: var(--story-subtle);
    font-size: 14px;
    font-weight: 500;
}

.story-list-copy h2 {
    margin: 0;
    color: var(--story-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.story-list-card:hover h2 {
    color: var(--story-secondary);
}

.story-list-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    color: var(--story-muted);
    line-height: 1.7;
}

.story-read-link,
.stories-more a,
.stories-empty a,
.story-next a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--story-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.story-read-link:hover {
    color: var(--story-secondary);
}

.story-read-link .material-symbols-outlined,
.story-next a .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.story-read-link:hover .material-symbols-outlined,
.story-next a:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.stories-empty {
    padding: 56px;
    border: 1px solid var(--story-border);
    background: var(--story-surface);
    text-align: center;
}

.stories-empty h2 {
    margin: 22px 0 12px;
    color: var(--story-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
}

.stories-empty p:not(.stories-kicker) {
    max-width: 560px;
    margin: 0 auto 28px;
    color: var(--story-muted);
    line-height: 1.7;
}

.stories-empty a,
.stories-more a {
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid var(--story-primary);
}

.stories-empty a:hover,
.stories-more a:hover {
    color: var(--story-warm);
    background: var(--story-primary);
}

.stories-more {
    display: flex;
    justify-content: center;
}

.stories-pagination {
    padding-top: 24px;
}

.story-detail-main {
    padding-top: 80px;
}

.story-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    color: var(--story-muted);
    font-size: 14px;
    font-weight: 700;
}

.story-back-link:hover {
    color: var(--story-secondary);
}

.story-detail-hero {
    padding: 80px 0 56px;
}

.story-detail-hero > div:first-child {
    display: flex;
    max-width: 940px;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.story-detail-hero h1 {
    margin: 0;
}

.story-detail-hero time {
    color: var(--story-muted);
    font-size: 14px;
    font-weight: 500;
}

.story-detail-cover {
    overflow: hidden;
    aspect-ratio: 21 / 9;
    border-radius: 8px;
    background: var(--story-surface-container);
}

.story-detail-cover img,
.story-gallery img,
.story-participant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 48px 0;
    border-top: 1px solid var(--story-border);
    border-bottom: 1px solid var(--story-border);
}

.story-meta-grid div {
    display: grid;
    gap: 10px;
}

.story-meta-grid span {
    color: rgba(67, 72, 68, 0.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.story-meta-grid strong {
    color: var(--story-primary);
    font-size: 16px;
    font-weight: 500;
}

.story-article-body {
    width: min(800px, calc(100% - 40px));
    margin: 0 auto;
    padding: 120px 0;
}

.story-article-body h2,
.story-gallery h2,
.story-participant h2,
.story-feedback h2 {
    margin: 0;
    color: var(--story-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.story-rich-text {
    margin-top: 32px;
    color: var(--story-primary);
    font-size: 18px;
    line-height: 1.9;
    white-space: pre-line;
}

.story-quote {
    padding: 96px 20px;
    background: var(--story-surface-container);
    text-align: center;
}

.story-quote .material-symbols-outlined {
    margin-bottom: 28px;
    color: var(--story-secondary);
    font-size: 48px;
}

.story-quote blockquote {
    max-width: 760px;
    margin: 0 auto;
    color: var(--story-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.45;
}

.story-gallery {
    padding: 120px 0;
}

.story-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.story-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.story-gallery-grid figure {
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    background: var(--story-surface-container);
    box-shadow: 0 4px 32px rgba(24, 40, 32, 0.04);
}

.story-gallery-grid figure:nth-child(1),
.story-gallery-grid figure:nth-child(4) {
    aspect-ratio: 3 / 4;
}

.story-gallery-grid figure:nth-child(2),
.story-gallery-grid figure:nth-child(3) {
    aspect-ratio: 1;
}

.story-gallery-grid figure:nth-child(even) {
    transform: translateY(48px);
}

.story-detail-page .story-gallery-grid figure {
    aspect-ratio: auto;
}

.story-detail-page .story-gallery img {
    height: auto;
    object-fit: contain;
}

.story-participant {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 24px;
    align-items: center;
    padding: 120px 0;
}

.story-participant > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-participant i {
    width: 48px;
    height: 2px;
    margin: 8px 0 12px;
    background: var(--story-secondary);
}

.story-participant p {
    margin: 0;
    color: var(--story-primary);
    font-size: 18px;
    line-height: 1.8;
}

.story-participant span {
    color: var(--story-secondary);
    font-size: 14px;
    font-weight: 500;
}

.story-participant figure {
    overflow: hidden;
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: 0 4px 32px rgba(24, 40, 32, 0.04);
}

.story-feedback {
    overflow: hidden;
    padding: 96px 0;
    background: var(--story-surface-low);
}

.story-feedback-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.story-feedback-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    margin-top: 48px;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.story-feedback-track::-webkit-scrollbar {
    display: none;
}

.story-feedback-track article {
    display: flex;
    min-width: 320px;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 32px rgba(24, 40, 32, 0.04);
}

.story-feedback-track .material-symbols-outlined {
    color: #fea27f;
}

.story-feedback-track p {
    margin: 0;
    color: var(--story-primary);
    line-height: 1.65;
}

.story-feedback-track small {
    color: rgba(67, 72, 68, 0.52);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.story-next {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-top: 120px;
    margin-bottom: 120px;
    padding: clamp(40px, 6vw, 80px);
    border-radius: 16px;
    color: #fff;
    background: var(--story-primary-container);
}

.story-next > div {
    display: grid;
    gap: 24px;
}

.story-next span:first-child {
    color: #96a99d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.story-next h2 {
    margin: 0;
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    line-height: 1.3;
}

.story-next-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.story-next-meta p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.story-next article {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.story-next article h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
}

.story-next article p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.story-next a {
    min-height: 48px;
    justify-content: center;
    border-radius: 999px;
    padding: 0 32px;
    color: var(--story-primary);
    background: var(--story-warm);
}

.story-next a:hover {
    background: #ffdbce;
}

.stories-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 48px;
    padding: 96px max(20px, calc((100vw - 1200px) / 2 + 80px)) 40px;
    color: var(--story-muted);
    background: var(--story-surface-container);
}

.stories-footer h2 {
    margin: 0 0 18px;
    color: var(--story-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
}

.stories-footer p {
    margin: 0;
    max-width: 420px;
    line-height: 1.7;
}

.stories-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 32px;
}

.stories-footer a {
    color: var(--story-muted);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.stories-footer a:hover {
    color: var(--story-secondary);
}

.stories-footer > p {
    grid-column: 1 / -1;
    max-width: none;
    padding-top: 32px;
    border-top: 1px solid var(--story-border);
    color: rgba(67, 72, 68, 0.62);
    font-size: 14px;
}

@media (max-width: 980px) {
    .story-list-card,
    .story-list-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .story-list-card:nth-child(even) .story-list-cover,
    .story-list-card:nth-child(even) .story-list-copy {
        order: initial;
    }

    .story-meta-grid,
    .story-gallery-grid,
    .story-participant {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-next {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .stories-main {
        padding-top: 104px;
    }

    .stories-hero {
        margin-bottom: 72px;
    }

    .stories-list {
        gap: 72px;
        padding-bottom: 72px;
    }

    .story-list-copy h2,
    .story-quote blockquote {
        font-size: 26px;
    }

    .story-detail-main {
        padding-top: 64px;
    }

    .story-detail-hero {
        padding: 48px 0;
    }

    .story-detail-cover {
        aspect-ratio: 4 / 3;
    }

    .story-meta-grid,
    .story-gallery-grid,
    .story-participant {
        grid-template-columns: 1fr;
    }

    .story-article-body,
    .story-gallery,
    .story-participant,
    .story-feedback {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .story-gallery-grid figure:nth-child(even) {
        transform: none;
    }

    .story-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .story-next {
        margin-top: 72px;
        margin-bottom: 72px;
        padding: 40px 24px;
        border-radius: 12px;
    }

    .stories-footer {
        grid-template-columns: 1fr;
        padding: 72px 20px 36px;
    }

    .stories-footer nav {
        grid-template-columns: 1fr;
    }
}

.partner-redesign {
    --partner-bg: #fffdf5;
    --partner-surface: #fcf9f8;
    --partner-surface-low: #f6f3f2;
    --partner-surface-container: #f0eded;
    --partner-border: rgba(45, 62, 53, 0.12);
    --partner-primary: #182820;
    --partner-primary-soft: #d4e7da;
    --partner-primary-dim: #b8cbbf;
    --partner-secondary: #924a2e;
    --partner-tertiary: #272519;
    --partner-tertiary-soft: #e8e2cf;
    --partner-muted: #434844;
    --partner-subtle: #8c8c8c;
    --partner-warm: #fffdf5;
    --partner-shadow: 0 32px 64px -12px rgba(24, 40, 32, 0.04);
    color: var(--partner-primary);
    background: var(--partner-bg);
}

.partner-redesign .material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.partner-site-header {
    background: rgba(252, 249, 248, 0.86);
}

.partners-redesign-main,
.partner-profile-redesign-main {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow-x: hidden;
}

.partners-redesign-main {
    padding: 128px 0 120px;
}

.partners-redesign-hero,
.partners-redesign-filters,
.partners-redesign-grid,
.partners-redesign-cta,
.partner-profile-redesign-hero,
.partner-profile-redesign-bento,
.partner-profile-activities,
.partner-profile-inner,
.partner-profile-section-heading,
.partner-profile-back {
    width: min(1200px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.partners-redesign-hero {
    margin-bottom: 48px;
}

.partners-redesign-hero > div {
    max-width: 680px;
}

.partners-redesign-kicker,
.partner-profile-label {
    margin: 0;
    color: rgba(24, 40, 32, 0.6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.partners-redesign-kicker span {
    margin-right: 8px;
}

.partners-redesign-hero h1,
.partner-profile-redesign-title h1 {
    margin: 24px 0 0;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
}

.partners-redesign-hero p:not(.partners-redesign-kicker) {
    margin: 24px 0 0;
    color: var(--partner-muted);
    font-size: 18px;
    line-height: 1.7;
}

.partners-redesign-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.partners-redesign-filters button {
    min-height: 36px;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    color: var(--partner-primary);
    background: var(--partner-tertiary-soft);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.partners-redesign-filters button:hover,
.partners-redesign-filters button.is-active {
    color: var(--partner-warm);
    background: var(--partner-primary);
}

.partners-redesign-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.partners-redesign-card {
    display: flex;
    min-height: 480px;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    border: 1px solid var(--partner-border);
    border-radius: 8px;
    background: var(--partner-surface);
    box-shadow: var(--partner-shadow);
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.partners-redesign-card:hover {
    border-color: rgba(24, 40, 32, 0.2);
    transform: translateY(-4px);
}

.partners-redesign-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.partners-redesign-avatar,
.partner-profile-redesign-avatar {
    overflow: hidden;
    border-radius: 50%;
    background: var(--partner-primary-soft);
}

.partners-redesign-avatar {
    width: 80px;
    height: 80px;
}

.partners-redesign-avatar img,
.partner-profile-redesign-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.7s ease, transform 0.7s ease;
}

.partners-redesign-card:hover .partners-redesign-avatar img,
.partner-profile-redesign-avatar:hover img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.partners-redesign-avatar span,
.partner-profile-redesign-avatar span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.partners-redesign-badges {
    display: grid;
    justify-items: end;
    gap: 6px;
}

.partners-redesign-badges span {
    color: rgba(24, 40, 32, 0.4);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}

.partners-redesign-badges strong,
.partner-profile-redesign-title span,
.partner-profile-service-top span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border-radius: 999px;
    padding: 0 12px;
    color: var(--partner-primary);
    background: var(--partner-tertiary-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
}

.partners-redesign-copy h2 {
    margin: 0;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.partners-redesign-style {
    margin: 6px 0 0;
    color: var(--partner-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.partners-redesign-summary {
    display: -webkit-box;
    overflow: hidden;
    min-height: 52px;
    margin: 20px 0 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: rgba(67, 72, 68, 0.82);
    line-height: 1.6;
}

.partners-redesign-stats {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: auto;
    padding: 18px 0;
    border-top: 1px solid var(--partner-border);
    border-bottom: 1px solid var(--partner-border);
}

.partners-redesign-stats div {
    display: grid;
    gap: 6px;
}

.partners-redesign-stats strong {
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    line-height: 1.15;
}

.partners-redesign-stats span {
    color: var(--partner-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}

.partners-redesign-stats i {
    width: 1px;
    height: 32px;
    background: var(--partner-border);
}

.partners-redesign-action,
.partners-redesign-empty a,
.partners-redesign-cta a,
.partner-profile-service-grid button,
.partner-profile-mobile-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--partner-warm);
    background: var(--partner-primary);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.partners-redesign-action {
    gap: 8px;
    min-height: 48px;
    width: 100%;
}

.partners-redesign-action:hover,
.partner-profile-service-grid button:hover,
.partner-profile-mobile-bar button:hover {
    background: var(--partner-secondary);
}

.partners-redesign-action .material-symbols-outlined {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.partners-redesign-action:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.partners-redesign-empty {
    grid-column: 1 / -1;
    padding: 56px;
    border: 1px solid var(--partner-border);
    border-radius: 8px;
    background: var(--partner-surface);
    text-align: center;
}

.partners-redesign-empty h2 {
    margin: 20px 0 10px;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
}

.partners-redesign-empty p:not(.partners-redesign-kicker) {
    max-width: 560px;
    margin: 0 auto 28px;
    color: var(--partner-muted);
}

.partners-redesign-empty a,
.partners-redesign-cta a {
    min-height: 56px;
    padding: 0 32px;
}

.partners-redesign-cta {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 120px;
    padding: clamp(48px, 7vw, 80px);
    border-radius: 8px;
    color: var(--partner-warm);
    background: var(--partner-primary);
    text-align: center;
}

.partners-redesign-cta > div {
    position: absolute;
    inset: auto;
    width: min(720px, 120vw);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 253, 245, 0.16);
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
    transform: scale(1.18);
}

.partners-redesign-cta h2,
.partners-redesign-cta p,
.partners-redesign-cta a {
    position: relative;
    z-index: 1;
}

.partners-redesign-cta h2 {
    margin: 0;
    font-family: Chivo, Inter, sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.12;
}

.partners-redesign-cta p {
    max-width: 580px;
    margin: 0;
    color: var(--partner-primary-dim);
    font-size: 18px;
    line-height: 1.7;
}

.partners-redesign-cta a {
    color: var(--partner-primary);
    background: var(--partner-warm);
}

.partners-redesign-cta a:hover {
    background: #ffdbce;
}

.partners-redesign-footer {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    gap: 48px;
    padding: 96px max(20px, calc((100vw - 1200px) / 2 + 80px)) 40px;
    color: var(--partner-muted);
    background: var(--partner-surface-container);
}

.partners-redesign-footer > div span {
    display: block;
    margin-bottom: 24px;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.partners-redesign-footer p {
    margin: 0;
    max-width: 420px;
    line-height: 1.7;
}

.partners-redesign-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 32px;
}

.partners-redesign-footer a {
    color: var(--partner-muted);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.partners-redesign-footer a:hover {
    color: var(--partner-secondary);
}

.partners-redesign-footer > p {
    grid-column: 1 / -1;
    max-width: none;
    padding-top: 32px;
    border-top: 1px solid var(--partner-border);
    color: rgba(67, 72, 68, 0.62);
    font-size: 14px;
}

.partner-profile-redesign-main {
    padding-top: 80px;
}

.partner-profile-back {
    display: block;
    margin-top: 32px;
    color: var(--partner-muted);
    font-size: 14px;
    font-weight: 700;
}

.partner-profile-back:hover {
    color: var(--partner-secondary);
}

.partner-profile-redesign-hero {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 72px 0 96px;
}

.partner-profile-redesign-avatar {
    width: 256px;
    height: 256px;
    flex: 0 0 auto;
    border: 4px solid var(--partner-surface-low);
}

.partner-profile-redesign-avatar span {
    font-size: 84px;
}

.partner-profile-redesign-copy {
    flex: 1;
    padding-top: 8px;
}

.partner-profile-redesign-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.partner-profile-redesign-title h1 {
    margin: 0;
}

.partner-profile-redesign-title small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--partner-subtle);
    font-size: 14px;
    font-weight: 500;
}

.partner-profile-redesign-title small .material-symbols-outlined {
    font-size: 18px;
}

.partner-profile-redesign-slogan {
    margin: 24px 0 28px;
    color: var(--partner-secondary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.partner-profile-redesign-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.partner-profile-redesign-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border: 1px solid var(--partner-border);
    border-radius: 999px;
    color: var(--partner-muted);
    font-size: 14px;
    font-weight: 500;
}

.partner-profile-redesign-bento {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: 24px;
    padding-bottom: 120px;
}

.partner-profile-about,
.partner-profile-expertise {
    padding: clamp(32px, 4vw, 40px);
    border-radius: 0;
}

.partner-profile-about {
    display: flex;
    min-height: 400px;
    flex-direction: column;
    justify-content: space-between;
    background: var(--partner-surface-low);
}

.partner-profile-about h2 {
    margin: 24px 0;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    line-height: 1.3;
}

.partner-profile-rich-text {
    color: var(--partner-muted);
    font-size: 18px;
    line-height: 1.75;
    white-space: pre-line;
}

.partner-profile-expertise {
    color: var(--partner-warm);
    background: var(--partner-tertiary);
}

.partner-profile-expertise .partner-profile-label {
    color: #a9a593;
}

.partner-profile-expertise-list {
    display: grid;
    gap: 28px;
    margin-top: 32px;
}

.partner-profile-expertise-list > div {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.partner-profile-expertise-list .material-symbols-outlined {
    color: #fea27f;
    font-size: 24px;
}

.partner-profile-expertise h3 {
    margin: 0 0 6px;
    font-family: Chivo, Inter, sans-serif;
    font-size: 22px;
    line-height: 1.3;
}

.partner-profile-expertise p {
    margin: 0;
    color: rgba(232, 226, 207, 0.82);
    line-height: 1.65;
}

.partner-profile-cooperation {
    padding: 120px 0;
    background: var(--partner-surface-container);
}

.partner-profile-cooperation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.partner-profile-cooperation-grid article {
    min-height: 220px;
    padding: 32px;
    border-left: 1px solid rgba(24, 40, 32, 0.12);
}

.partner-profile-cooperation-grid h3 {
    margin: 0 0 16px;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    line-height: 1.35;
}

.partner-profile-cooperation-grid p {
    margin: 0 0 24px;
    color: var(--partner-muted);
    line-height: 1.65;
}

.partner-profile-activities {
    padding: 120px 0;
}

.partner-profile-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 64px;
}

.partner-profile-section-heading h2 {
    margin: 24px 0 0;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    line-height: 1.3;
}

.partner-profile-section-heading a {
    color: var(--partner-primary);
    border-bottom: 1px solid var(--partner-primary);
    padding-bottom: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-profile-activity-grid {
    display: grid;
    width: min(1200px, calc(100% - 40px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.partner-profile-activity-grid a {
    display: block;
}

.partner-profile-activity-grid a > div {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-bottom: 24px;
    background: #e5e2e1;
}

.partner-profile-activity-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.partner-profile-activity-grid a:hover img {
    transform: scale(1.05);
}

.partner-profile-activity-grid span {
    color: var(--partner-subtle);
    font-size: 14px;
    font-weight: 500;
}

.partner-profile-activity-grid h3 {
    margin: 8px 0 0;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    line-height: 1.35;
}

.partner-profile-services {
    padding: 120px 0;
    border-top: 1px solid var(--partner-border);
    background: var(--partner-warm);
}

.partner-profile-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.partner-profile-service-grid article {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    border: 1px solid var(--partner-border);
    background: var(--partner-surface);
    box-shadow: 0 4px 32px rgba(24, 40, 32, 0.04);
}

.partner-profile-service-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.partner-profile-service-top strong {
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
}

.partner-profile-service-grid h3 {
    margin: 0 0 16px;
    color: var(--partner-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    line-height: 1.3;
}

.partner-profile-service-grid p {
    margin: 0 0 28px;
    color: var(--partner-muted);
    line-height: 1.7;
}

.partner-profile-service-grid small {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    color: var(--partner-muted);
    font-size: 14px;
}

.partner-profile-service-grid button {
    min-height: 56px;
    width: 100%;
}

.partner-profile-empty {
    margin-top: 32px;
    padding: 36px;
    border: 1px dashed var(--partner-border);
    color: var(--partner-muted);
    background: rgba(252, 249, 248, 0.52);
}

.partner-toast {
    position: fixed;
    top: 96px;
    left: 50%;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    color: var(--partner-warm);
    background: var(--partner-tertiary);
    box-shadow: 0 4px 32px rgba(24, 40, 32, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -80px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.partner-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.partner-profile-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: none;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--partner-border);
    background: rgba(252, 249, 248, 0.92);
    backdrop-filter: blur(12px);
}

.partner-profile-mobile-bar button {
    flex: 1;
    min-height: 52px;
}

.partner-profile-mobile-bar a {
    display: grid;
    width: 52px;
    place-items: center;
    background: var(--partner-surface-container);
}

@media (max-width: 980px) {
    .partners-redesign-grid,
    .partner-profile-cooperation-grid,
    .partner-profile-activity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-profile-redesign-hero,
    .partner-profile-redesign-bento {
        grid-template-columns: 1fr;
    }

    .partner-profile-redesign-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .partner-profile-redesign-title,
    .partner-profile-redesign-tags {
        justify-content: center;
    }

    .partner-profile-service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .partners-redesign-main {
        padding-top: 104px;
    }

    .partners-redesign-grid,
    .partner-profile-cooperation-grid,
    .partner-profile-activity-grid {
        grid-template-columns: 1fr;
    }

    .partners-redesign-card {
        min-height: auto;
        padding: 28px;
    }

    .partners-redesign-cta {
        margin-top: 72px;
        padding: 48px 24px;
    }

    .partners-redesign-footer {
        grid-template-columns: 1fr;
        padding: 72px 20px 36px;
    }

    .partners-redesign-footer nav {
        grid-template-columns: 1fr;
    }

    .partner-profile-redesign-main {
        padding-top: 64px;
        padding-bottom: 84px;
    }

    .partner-profile-redesign-hero {
        padding: 48px 0 72px;
    }

    .partner-profile-redesign-avatar {
        width: 192px;
        height: 192px;
    }

    .partner-profile-redesign-title h1 {
        font-size: 42px;
    }

    .partner-profile-redesign-slogan {
        font-size: 21px;
    }

    .partner-profile-redesign-bento,
    .partner-profile-cooperation,
    .partner-profile-activities,
    .partner-profile-services {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .partner-profile-section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .partner-profile-service-grid article {
        min-height: auto;
        padding: 32px 24px;
    }

    .partner-profile-service-top {
        flex-direction: column;
    }

    .partner-toast {
        top: 76px;
        width: min(340px, calc(100% - 40px));
        justify-content: center;
        padding: 14px 18px;
    }

    .partner-profile-mobile-bar {
        display: flex;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
}

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

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 80px;
    padding: 0 max(20px, calc((100vw - 1200px) / 2 + 80px));
    border-bottom: 0;
    background: rgba(252, 249, 248, 0.84);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-dark);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand-mark {
    display: none;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--accent-dark);
    font-family: Georgia, serif;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-nav a {
    position: relative;
    padding: 0;
    border-radius: 0;
    color: var(--muted);
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.primary-nav a + a::before {
    content: "/";
    position: absolute;
    left: -18px;
    color: rgba(67, 72, 68, 0.22);
    font-weight: 400;
}

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

.primary-nav a[aria-current="page"] {
    color: var(--accent-dark);
    font-weight: 700;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--ink);
}

main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: clamp(32px, 7vw, 76px) 0 42px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(40px, 6vw, 74px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 610px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
}

button.button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.button-primary {
    color: #fff;
    background: var(--accent-dark);
    box-shadow: 0 10px 24px rgba(126, 46, 52, 0.18);
}

.button-secondary {
    border: 1px solid var(--line);
    color: var(--ink);
    background: var(--surface);
}

.hero-media {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 8px;
    background: var(--surface-warm);
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.quick-answer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.quick-answer article {
    min-height: 190px;
    padding: 26px;
    background: var(--surface);
}

.quick-answer span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.quick-answer h2 {
    margin: 18px 0 10px;
    font-size: 20px;
    letter-spacing: 0;
}

.quick-answer p,
.host-band p {
    margin: 0;
    color: var(--muted);
}

.section {
    padding: clamp(56px, 8vw, 92px) 0 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-heading h2,
.host-band h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: 0;
}

.section-heading a {
    flex: 0 0 auto;
    color: var(--accent-dark);
    font-weight: 800;
}

.event-grid {
    display: grid;
    gap: 14px;
}

.event-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.event-date {
    display: grid;
    place-items: center;
    min-height: 92px;
    border-radius: 6px;
    color: #fff;
    background: var(--sage);
}

.event-date strong {
    font-size: 25px;
    line-height: 1;
}

.event-date span,
.event-type {
    font-size: 13px;
    font-weight: 800;
}

.event-type {
    margin: 0 0 6px;
    color: var(--accent-dark);
}

.event-info h3 {
    margin: 0;
    font-size: 22px;
    letter-spacing: 0;
}

.event-info p:last-child {
    margin: 8px 0 0;
    color: var(--muted);
}

.event-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    min-height: 42px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-weight: 800;
}

.host-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: clamp(56px, 8vw, 92px);
    padding: clamp(28px, 5vw, 44px);
    border-radius: 8px;
    color: #fff;
    background: #302823;
}

.host-band .eyebrow,
.host-band p {
    color: #e5d8c6;
}

.host-band div {
    max-width: 720px;
}

.host-band h2 {
    margin-bottom: 12px;
}

.host-band .button-primary {
    flex: 0 0 auto;
    color: #2b211d;
    background: #f3dfb8;
}

.link-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: clamp(18px, 4vw, 32px) 0 clamp(56px, 8vw, 80px);
}

.link-panels a {
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.link-panels span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.link-panels strong {
    display: block;
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.2;
}

.site-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-content: space-between;
    gap: 18px;
    padding: 56px max(20px, calc((100vw - 1200px) / 2 + 80px));
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    background: #f0eded;
}

.placeholder-page {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    padding: 72px 0;
}

.placeholder-page h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: 0;
}

.placeholder-page p:not(.eyebrow) {
    max-width: 560px;
    margin: 18px 0 28px;
    color: var(--muted);
    font-size: 19px;
}

.host-page {
    padding: clamp(34px, 6vw, 72px) 0 clamp(56px, 8vw, 84px);
}

.host-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: clamp(24px, 5vw, 52px);
    align-items: center;
    min-height: calc(92vh - 72px);
}

.host-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.04;
    letter-spacing: 0;
}

.host-hero p:not(.eyebrow),
.application-section .section-heading p {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 19px;
}

.host-hero-panel {
    display: grid;
    gap: 16px;
    min-height: 360px;
    align-content: end;
    padding: clamp(24px, 4vw, 34px);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(160deg, #7e2e34 0%, #302823 100%);
    box-shadow: var(--shadow);
}

.host-hero-panel span {
    color: #f3dfb8;
    font-size: 13px;
    font-weight: 900;
}

.host-hero-panel strong {
    font-size: 30px;
    line-height: 1.16;
}

.host-hero-panel p {
    margin: 0;
    color: #eadfd7;
}

.host-section {
    padding-top: clamp(48px, 7vw, 80px);
}

.host-check-grid,
.support-grid,
.cooperation-grid,
.process-steps {
    display: grid;
    gap: 14px;
}

.host-check-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.host-check-grid article,
.support-grid article,
.cooperation-grid article,
.process-steps article,
.form-block {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.host-check-grid article {
    min-height: 150px;
    padding: 20px;
    font-size: 17px;
    font-weight: 800;
}

.support-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.support-grid article {
    min-height: 110px;
    padding: 18px;
}

.support-grid span,
.cooperation-grid span {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.support-grid strong {
    font-size: 18px;
}

.cooperation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cooperation-grid article {
    min-height: 300px;
    padding: 24px;
}

.cooperation-grid h3 {
    margin: 0 0 14px;
    font-size: 25px;
}

.cooperation-grid p {
    color: var(--muted);
}

.cooperation-grid small {
    display: inline-flex;
    margin-top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--accent-dark);
    background: var(--surface-warm);
    font-weight: 800;
}

.process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-steps article {
    display: grid;
    gap: 22px;
    min-height: 150px;
    padding: 20px;
}

.process-steps span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--sage);
    font-weight: 900;
}

.process-steps strong {
    font-size: 18px;
}

.application-section {
    scroll-margin-top: 88px;
}

.host-application-form {
    display: grid;
    gap: 18px;
}

.form-block {
    display: grid;
    gap: 16px;
    padding: clamp(18px, 4vw, 28px);
}

.form-block h3 {
    margin: 0;
    font-size: 22px;
}

.form-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.events-page,
.event-detail-page {
    padding: clamp(34px, 6vw, 72px) 0 clamp(56px, 8vw, 84px);
}

.events-page {
    width: min(1200px, calc(100% - 40px));
    padding-top: 96px;
    color: #1c1b1b;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.events-hero {
    display: grid;
    gap: 16px;
    max-width: 720px;
    margin-bottom: 40px;
}

.events-hero h1,
.event-detail-hero h1 {
    margin: 0;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: 0;
}

.events-hero h1 {
    color: #182820;
    font-family: Chivo, Inter, sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
}

.events-hero p:not(.eyebrow) {
    margin: 0;
    max-width: 560px;
    color: #434844;
    font-size: 18px;
    line-height: 1.7;
}

.event-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 64px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(45, 62, 53, 0.12);
}

.event-filters div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.event-filters a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 24px;
    border: 1px solid rgba(45, 62, 53, 0.12);
    border-radius: 999px;
    color: #434844;
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.event-filters a.is-active {
    color: #fffdf5;
    border-color: #182820;
    background: #182820;
}

.event-filters a:hover {
    color: #182820;
    border-color: #182820;
}

.event-sort-note {
    color: rgba(67, 72, 68, 0.62);
    font-size: 14px;
    font-weight: 500;
}

.public-event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 24px;
}

.public-event-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #182820;
    transition: transform 0.28s ease;
}

.public-event-card:hover {
    transform: translateY(-6px);
}

.public-event-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    background: #f0eded;
}

.public-event-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.4s ease, opacity 0.4s ease;
}

.public-event-card:hover .public-event-cover img {
    transform: scale(1.05);
}

.public-event-card.is-ended .public-event-cover img {
    filter: grayscale(1);
    opacity: 0.78;
}

.public-event-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.public-event-status {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    color: #fffdf5;
    background: #924a2e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-event-type {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    color: #182820;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 700;
}

.status-full,
.status-ended {
    background: #8c8c8c;
}

.status-signing {
    background: #924a2e;
}

.public-event-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.public-event-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #8c8c8c;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.public-event-body h2 {
    margin: 0;
    color: #182820;
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    transition: color 0.25s ease;
}

.public-event-card:hover .public-event-body h2 {
    color: #924a2e;
}

.public-event-summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(45, 62, 53, 0.12);
}

.public-event-summary div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.public-event-summary div:last-child {
    flex: 0 0 auto;
    align-items: flex-end;
    text-align: right;
}

.public-event-summary span {
    color: #8c8c8c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.public-event-summary strong {
    color: #182820;
    font-size: 14px;
    font-weight: 500;
}

.public-event-summary div:last-child strong {
    color: #924a2e;
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.event-detail-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 52px;
    margin-top: 8px;
    padding: 0 24px;
    border: 1px solid #182820;
    color: #182820;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.public-event-card:hover .event-detail-link {
    color: #fffdf5;
    background: #182820;
    box-shadow: 0 20px 40px -24px rgba(24, 40, 32, 0.32);
}

.events-host-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 48px;
    align-items: center;
    overflow: hidden;
    margin-top: 120px;
    padding: clamp(28px, 5vw, 64px);
    border-radius: 12px;
    color: #fffdf5;
    background: #182820;
}

.events-host-cta h2 {
    margin: 0;
    color: #fffdf5;
    font-family: Chivo, Inter, sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.12;
    letter-spacing: 0;
}

.events-host-cta p {
    max-width: 520px;
    margin: 24px 0 0;
    color: rgba(255, 253, 245, 0.78);
    font-size: 18px;
    line-height: 1.7;
}

.events-host-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 32px;
    padding: 0 32px;
    border-radius: 999px;
    color: #fffdf5;
    background: #924a2e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.events-host-cta img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    filter: grayscale(1) contrast(1.15);
    object-fit: cover;
}

.event-summary-panel dl {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
}

.event-summary-panel dl div {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
}

.event-summary-panel dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.event-summary-panel dd {
    margin: 0;
    color: var(--ink);
    font-size: 14px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    text-align: center;
}

.empty-state h2 {
    margin: 0;
}

.empty-state p {
    margin: 10px 0 0;
    color: var(--muted);
}

.pagination-wrap {
    margin-top: 24px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent-dark);
    font-weight: 900;
}

.event-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(22px, 5vw, 48px);
    align-items: center;
}

.event-detail-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.event-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.event-detail-tags span:not(.public-event-status) {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.event-summary-panel,
.event-detail-content section,
.registration-panel {
    margin-top: 22px;
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.event-summary-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
}

.event-summary-panel dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.event-detail-content h2,
.registration-panel h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.rich-text,
.registration-panel p {
    color: var(--muted);
    white-space: pre-wrap;
}

.form-notice,
.form-error {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
}

.form-notice {
    color: #28604b;
    background: #eaf6f1;
}

.form-error {
    color: #9f2f27;
    background: #fff0ee;
}

.form-error p {
    margin: 0;
    color: inherit;
}

.modal-open {
    overflow: hidden;
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    place-items: center;
    padding: 20px;
}

.login-modal.is-open {
    display: grid;
}

.login-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(33, 29, 27, 0.42);
}

.login-modal-card {
    position: relative;
    z-index: 1;
    width: min(100%, 480px);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 24px 80px rgba(33, 29, 27, 0.24);
}

.login-modal-card h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.login-modal-card > p {
    margin: 0 0 18px;
    color: var(--muted);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
}

.login-modal-forms {
    display: grid;
    gap: 14px;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.inline-form-card,
.registration-form {
    display: grid;
    gap: 12px;
}

.inline-form-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.inline-form-card label,
.registration-field > label {
    font-weight: 900;
}

.code-row {
    display: flex;
    gap: 10px;
}

.code-row input {
    min-width: 0;
    flex: 1;
}

.inline-form-card input,
.registration-field input:not([type="radio"]):not([type="checkbox"]),
.registration-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.inline-form-card input,
.registration-field input:not([type="radio"]):not([type="checkbox"]) {
    min-height: 44px;
    padding: 0 12px;
}

.registration-field textarea {
    padding: 12px;
    resize: vertical;
}

.login-strip {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--surface-warm);
    color: var(--muted);
}

.login-strip button {
    padding: 0;
    border: 0;
    color: var(--accent-dark);
    background: transparent;
    cursor: pointer;
    font-weight: 900;
}

.registration-form {
    max-width: 760px;
}

.registration-field {
    display: grid;
    gap: 8px;
}

.registration-field label span {
    color: var(--accent-dark);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.radio-group input,
.checkbox-group input {
    width: auto;
    min-height: auto;
    padding: 0;
    flex: 0 0 auto;
}

.success-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.success-card {
    width: min(680px, 100%);
    padding: clamp(28px, 6vw, 52px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.success-card h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1.05;
}

.success-card p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

@media (max-width: 920px) {
    .site-header {
        min-height: 64px;
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 64px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        border-radius: 6px;
        padding: 13px 12px;
    }

    .primary-nav a + a::before {
        content: none;
    }

    main {
        width: min(100% - 32px, 720px);
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 34px;
    }

    .hero-media,
    .hero-media img {
        min-height: 340px;
    }

    .quick-answer,
    .link-panels,
    .public-event-grid,
    .host-check-grid,
    .support-grid,
    .cooperation-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .event-detail-hero,
    .event-summary-panel,
    .auth-grid,
    .host-hero,
    .form-two-columns {
        grid-template-columns: 1fr;
    }

    .host-hero {
        min-height: auto;
    }

    .host-hero-panel {
        min-height: 280px;
    }

    .event-summary-panel .button {
        width: 100%;
    }

    .event-card {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 14px;
    }

    .event-card > span {
        grid-column: 1 / -1;
        width: 100%;
    }

    .event-date {
        min-height: 82px;
    }

    .host-band {
        align-items: stretch;
        flex-direction: column;
    }

    .host-band .button {
        width: 100%;
    }

    .events-host-cta {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 88px;
    }
}

@media (min-width: 681px) and (max-width: 920px) {
    .public-event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .brand span:last-child {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-date {
        width: 100%;
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .events-page {
        width: min(100% - 32px, 720px);
        padding-top: 72px;
    }

    .events-hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .events-hero p:not(.eyebrow) {
        font-size: 16px;
    }

    .event-filters {
        margin-bottom: 48px;
    }

    .event-filters a {
        padding: 0 18px;
    }

    .event-sort-note {
        display: none;
    }

    .public-event-grid {
        gap: 48px;
    }

    .public-event-summary {
        flex-direction: column;
    }

    .public-event-summary div:last-child {
        align-items: flex-start;
        text-align: left;
    }

    .events-host-cta {
        padding: 32px 22px;
    }

    .events-host-cta img {
        aspect-ratio: 4 / 3;
    }

    .event-summary-panel dl {
        grid-template-columns: 1fr;
    }

    .code-row,
    .login-strip {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Homepage: Urban Intimacy design */
.home-page {
    --home-bg: #fffdf5;
    --home-surface: #fcf9f8;
    --home-surface-bright: #ffffff;
    --home-surface-container: #f0eded;
    --home-surface-container-low: #f6f3f2;
    --home-primary: #182820;
    --home-primary-container: #2d3e35;
    --home-primary-soft: #d4e7da;
    --home-secondary: #924a2e;
    --home-text: #1c1b1b;
    --home-muted: #434844;
    --home-border: rgba(45, 62, 53, 0.12);
    --home-outline: #c3c8c3;
    margin: 0;
    color: var(--home-text);
    background: var(--home-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

.home-page a {
    color: inherit;
}

.home-page img {
    display: block;
    max-width: 100%;
}

.home-page .home-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    min-height: 80px;
    padding: 0 max(20px, calc((100vw - 1200px) / 2 + 80px));
    border-bottom: 0;
    background: rgba(252, 249, 248, 0.82);
    backdrop-filter: blur(12px);
}

.home-page .home-brand {
    color: var(--home-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
}

.home-page .home-nav {
    gap: 30px;
}

.home-page .home-nav a + a::before {
    content: none;
}

.home-page .home-nav a {
    padding: 0;
    border-radius: 0;
    color: var(--home-muted);
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.home-page .home-nav a:hover,
.home-page .home-nav a[aria-current="page"] {
    color: var(--home-secondary);
    background: transparent;
}

.home-page .home-nav a[aria-current="page"] {
    color: var(--home-primary);
    font-weight: 700;
}

.home-page .home-nav-toggle {
    border: 0;
    background: transparent;
}

.home-page .home-nav-toggle span {
    background: var(--home-primary);
}

.home-main {
    width: 100%;
    margin: 0;
    padding-top: 80px;
}

.home-hero,
.home-values,
.home-host,
.home-links,
.home-footer-inner,
.home-section-inner {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding-right: 80px;
    padding-left: 80px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 24px;
    align-items: center;
    padding-top: clamp(48px, 8vw, 96px);
    padding-bottom: 120px;
}

.home-hero-copy {
    order: 1;
}

.home-hero-media {
    order: 2;
    overflow: hidden;
    height: clamp(420px, 52vw, 600px);
    border-radius: 8px;
    background: var(--home-surface-container);
}

.home-hero-media img,
.home-event-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-label {
    display: block;
    margin-bottom: 16px;
    color: var(--home-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.home-hero h1,
.home-host h2,
.home-footer h2 {
    margin: 0;
    color: var(--home-primary);
    font-family: Chivo, Inter, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.home-hero h1 {
    font-size: 48px;
    line-height: 1.1;
}

.home-hero p {
    max-width: 540px;
    margin: 24px 0 0;
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.7;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.home-button:hover {
    transform: none;
}

.home-button-primary {
    border: 0;
    color: #fcf9f8;
    background: var(--home-primary);
    -webkit-text-fill-color: #fcf9f8;
}

.home-button-primary,
.home-button-primary:visited,
.home-button-primary span {
    color: #fcf9f8;
    -webkit-text-fill-color: #fcf9f8;
}

.home-button-primary:hover {
    opacity: 0.9;
}

.home-button-primary:active {
    opacity: 0.82;
}

.home-button-primary span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.home-button-secondary {
    border: 1px solid var(--home-primary);
    color: var(--home-primary);
    background: transparent;
}

.home-button-secondary:hover {
    color: var(--home-bg);
    background: var(--home-primary);
}

.home-button-secondary:active {
    color: var(--home-bg);
    background: var(--home-primary-container);
}

.home-button-primary:focus-visible,
.home-button-secondary:focus-visible,
.home-button-light:focus-visible {
    outline: 3px solid rgba(146, 74, 46, 0.34);
    outline-offset: 4px;
}

.home-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    padding-top: 120px;
    padding-bottom: 120px;
    border-top: 1px solid var(--home-border);
}

.home-values article div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(67, 72, 68, 0.32);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.home-values article div span {
    color: rgba(45, 62, 53, 0.18);
}

.home-values h2,
.home-section-heading h2,
.home-event-card h3,
.home-links h3 {
    margin: 0;
    color: var(--home-primary);
    font-family: Chivo, Inter, sans-serif;
    font-weight: 700;
}

.home-values h2,
.home-event-card h3,
.home-links h3 {
    font-size: 24px;
    line-height: 1.4;
}

.home-values p {
    margin: 16px 0 0;
    color: var(--home-muted);
    line-height: 1.7;
}

.home-scroll-note {
    grid-column: 1 / -1;
    margin-top: 32px;
    text-align: center;
}

.home-scroll-note strong {
    display: block;
    margin-bottom: 16px;
    color: rgba(28, 27, 27, 0.2);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.4;
}

.home-scroll-note p {
    margin: 0;
    color: var(--home-muted);
}

.home-events,
.home-footer {
    background: var(--home-surface-container);
}

.home-events {
    padding: 120px 0;
}

.home-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.home-section-heading h2,
.home-host h2 {
    font-size: 32px;
    line-height: 1.3;
}

.home-section-heading a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-muted);
    text-decoration: underline;
    text-underline-offset: 8px;
    transition: color 0.25s ease;
}

.home-section-heading a:hover {
    color: var(--home-primary);
}

.home-event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-event-card {
    overflow: hidden;
    border-radius: 8px;
    background: var(--home-surface-bright);
    box-shadow: 0 10px 32px -4px rgba(24, 40, 32, 0.04);
    transition: transform 0.45s ease;
}

.home-event-card:hover {
    transform: translateY(-8px);
}

.home-event-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--home-surface-container-low);
}

.home-event-cover img {
    transition: transform 0.7s ease;
}

.home-event-card:hover .home-event-cover img {
    transform: scale(1.05);
}

.home-event-cover time {
    position: absolute;
    top: 16px;
    left: 16px;
    min-width: 72px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--home-bg);
    background: var(--home-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.home-event-cover time span {
    display: block;
    margin-top: 3px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
}

.home-event-body {
    padding: 32px;
}

.home-event-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--home-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.home-event-meta span:first-child {
    padding: 5px 8px;
    border-radius: 4px;
    color: var(--home-primary);
    background: #e8e2cf;
}

.home-event-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    color: var(--home-muted);
    font-size: 14px;
}

.home-event-bottom strong {
    flex: 0 0 auto;
    color: var(--home-primary);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-event-placeholder {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    border: 1px dashed var(--home-outline);
    border-radius: 8px;
    color: rgba(67, 72, 68, 0.48);
    text-align: center;
}

.home-event-placeholder span {
    margin-bottom: 16px;
    font-size: 42px;
}

.home-event-placeholder p {
    margin: 0;
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.home-host {
    padding-top: 120px;
    padding-bottom: 120px;
}

.home-host > div {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 8vw, 96px);
    border-radius: 16px;
    color: var(--home-bg);
    background: var(--home-primary-container);
    text-align: center;
}

.home-host .home-label {
    color: var(--home-primary-soft);
}

.home-host h2 {
    max-width: 680px;
    margin: 0 auto;
    color: var(--home-bg);
}

.home-host p {
    max-width: 600px;
    margin: 32px auto 0;
    color: var(--home-primary-soft);
    font-size: 18px;
    line-height: 1.7;
}

.home-button-light {
    gap: 12px;
    margin-top: 48px;
    min-height: 56px;
    padding: 0 40px;
    border: 0;
    border-radius: 999px;
    color: var(--home-primary);
    background: var(--home-bg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-button-light,
.home-button-light:visited,
.home-button-light span {
    color: var(--home-primary);
}

.home-button-light:hover {
    color: var(--home-bg);
    background: var(--home-secondary);
    transform: none;
}

.home-button-light:hover span {
    color: var(--home-bg);
}

.home-button-light:active {
    color: var(--home-bg);
    background: var(--home-secondary);
    transform: none;
}

.home-button-light span {
    display: inline-block;
    color: var(--home-primary);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
}

.home-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 120px;
}

.home-links a {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 40px;
    border-radius: 8px;
    background: var(--home-surface-container-low);
    transition: background 0.25s ease;
}

.home-links a:hover {
    background: var(--home-surface-container);
}

.home-links span {
    margin-bottom: 16px;
    color: var(--home-secondary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.home-links h3 {
    margin-bottom: 24px;
}

.home-links div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--home-border);
    opacity: 0.62;
    transition: opacity 0.25s ease;
}

.home-links a:hover div {
    opacity: 1;
}

.home-links small {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-footer {
    --home-bg: #fffdf5;
    --home-primary: #182820;
    --home-secondary: #924a2e;
    --home-muted: #434844;
    --home-border: rgba(45, 62, 53, 0.12);
    --home-outline: #c3c8c3;
    padding: 40px 0 36px;
    background: var(--home-bg);
}

.home-footer-inner {
    width: min(1320px, calc(100% - 40px));
    padding: 36px 40px 24px;
    border: 1px solid var(--home-border);
    border-radius: 18px;
    background: #f6f3f1;
    box-shadow: 0 18px 48px -34px rgba(24, 40, 32, 0.22);
}

.home-footer-top {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(180px, 0.45fr) minmax(360px, 1.05fr);
    gap: 64px;
    align-items: start;
    margin-bottom: 44px;
}

.home-footer h2 {
    margin: 0 0 22px;
    color: var(--home-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.home-footer p {
    max-width: 460px;
    margin: 0;
    color: var(--home-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

.home-footer-links {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.home-footer-links nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.home-footer-links span,
.home-footer-connect > span {
    color: var(--home-secondary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-footer-links a {
    color: var(--home-muted);
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 6px;
    transition: color 0.25s ease;
}

.home-footer-links a:hover {
    color: var(--home-secondary);
}

.home-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--home-border);
    color: rgba(67, 72, 68, 0.62);
    font-size: 14px;
    font-weight: 500;
}

.home-footer-bottom p {
    max-width: none;
    font-size: inherit;
    line-height: 1.4;
}

.home-footer-connect {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 22px;
}

.home-footer-qr-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.home-footer-contact {
    position: relative;
}

.home-footer-contact-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    list-style: none;
    text-align: center;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.home-footer-contact-trigger:focus-visible {
    outline: 2px solid var(--home-secondary);
    outline-offset: 8px;
}

.home-footer-contact-logo {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 22px -12px rgba(24, 40, 32, 0.36);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.home-footer-contact:hover .home-footer-contact-logo,
.home-footer-contact:focus-within .home-footer-contact-logo {
    box-shadow: 0 18px 30px -14px rgba(24, 40, 32, 0.44);
    transform: translateY(-4px) scale(1.04);
}

.home-footer-contact-xhs {
    background: #ff2442;
}

.home-footer-contact-wechat {
    background: #2aae67;
}

.home-footer-contact-community {
    color: #fff;
    background: #d487ad;
}

.home-footer-contact strong {
    color: var(--home-primary);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.home-footer-qr-popover {
    position: absolute;
    right: 50%;
    bottom: calc(100% + 18px);
    z-index: 5;
    display: grid;
    width: 340px;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px;
    border: 1px solid #e8e3de;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 44px -28px rgba(24, 40, 32, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translate(50%, 8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.home-footer-contact:hover .home-footer-qr-popover,
.home-footer-contact:focus-within .home-footer-qr-popover {
    opacity: 1;
    pointer-events: auto;
    transform: translate(50%, 0);
}

.home-footer-contact:first-child .home-footer-qr-popover {
    right: auto;
    left: 0;
    transform: translate(0, 8px);
}

.home-footer-contact:first-child:hover .home-footer-qr-popover,
.home-footer-contact:first-child:focus-within .home-footer-qr-popover {
    transform: translate(0, 0);
}

.home-footer-contact:last-child .home-footer-qr-popover {
    right: 0;
    transform: translate(0, 8px);
}

.home-footer-contact:last-child:hover .home-footer-qr-popover,
.home-footer-contact:last-child:focus-within .home-footer-qr-popover {
    transform: translate(0, 0);
}

.home-footer-qr-popover img {
    width: 132px;
    height: 132px;
    border-radius: 12px;
    object-fit: cover;
}

.home-footer-qr-popover h3 {
    margin: 0 0 12px;
    color: var(--home-secondary);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.home-footer-qr-popover h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 10px;
    background: var(--home-secondary);
}

.home-footer-qr-popover p {
    margin: 0;
    color: var(--home-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.home-footer-qr-popover a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-top: 18px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: #ef343b;
    font-size: 13px;
    font-weight: 700;
}


@media (max-width: 1020px) {
    .home-page .home-header,
    .home-hero,
    .home-values,
    .home-host,
    .home-links,
    .home-footer-inner,
    .home-section-inner {
        padding-right: 32px;
        padding-left: 32px;
    }

    .home-hero,
    .home-footer-top {
        grid-template-columns: 1fr;
    }

    .home-footer-top {
        gap: 56px;
    }

    .home-footer-qr-grid {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    .home-hero h1 {
        font-size: 42px;
    }

    .home-hero-copy {
        order: 2;
    }

    .home-hero-media {
        order: 1;
        min-height: 400px;
    }

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

    .home-event-placeholder {
        min-height: 260px;
    }
}

@media (max-width: 760px) {
    .home-values,
    .home-event-grid,
    .home-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .home-page .home-header {
        min-height: 72px;
    }

    .home-page .home-nav-toggle {
        display: block;
    }

    .home-page .home-nav {
        position: fixed;
        top: 72px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px;
        border: 1px solid var(--home-border);
        border-radius: 8px;
        background: rgba(252, 249, 248, 0.98);
        box-shadow: 0 10px 32px -4px rgba(24, 40, 32, 0.08);
    }

    .home-page .home-nav.is-open {
        display: flex;
    }

    .home-page .home-nav a {
        padding: 13px 12px;
    }
}

@media (max-width: 640px) {
    .home-page .home-header,
    .home-hero,
    .home-values,
    .home-host,
    .home-links,
    .home-footer-inner,
    .home-section-inner {
        padding-right: 20px;
        padding-left: 20px;
    }

    .home-main {
        padding-top: 72px;
    }

    .home-page .home-brand {
        font-size: 16px;
        letter-spacing: 0;
    }

    .home-hero {
        padding-top: 40px;
        padding-bottom: 88px;
    }

    .home-hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .home-hero-media {
        height: 400px;
        margin-right: -20px;
        margin-left: -20px;
        border-radius: 0;
    }

    .home-actions,
    .home-section-heading,
    .home-event-bottom,
    .home-footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .home-actions {
        align-items: center;
        flex-direction: row;
        gap: 12px;
    }

    .home-button,
    .home-section-heading a {
        width: fit-content;
    }

    .home-button {
        min-height: 44px;
        padding: 0 20px;
    }

    .home-button-primary,
    .home-button-primary:visited,
    .home-button-primary span {
        color: var(--home-bg);
    }

    .home-button-secondary,
    .home-button-secondary:visited {
        color: var(--home-primary);
    }

    .home-button-light,
    .home-button-light:visited,
    .home-button-light span {
        color: var(--home-primary);
    }

    .home-values,
    .home-events,
    .home-host {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .home-footer {
        padding-top: 48px;
        padding-bottom: 36px;
    }

    .home-links {
        padding-bottom: 88px;
    }

    .home-event-body,
    .home-links a {
        padding: 28px;
    }

    .home-host > div {
        padding: 44px 24px;
    }

    .home-footer-links {
        grid-template-columns: 1fr;
    }

    .home-footer h2 {
        font-size: 28px;
    }

    .home-footer p {
        font-size: 15px;
        line-height: 1.7;
    }

    .home-footer-links a {
        font-size: 16px;
    }

    .home-footer-qr-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .home-footer-contact-trigger {
        width: 100%;
        min-height: auto;
        gap: 8px;
    }

    .home-footer-contact-logo {
        width: 46px;
        height: 46px;
        font-size: 11px;
    }

    .home-footer-contact strong {
        font-size: 12px;
    }

    .home-footer-qr-popover {
        position: static;
        display: none;
        width: calc(300% + 20px);
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
        margin-top: 24px;
        padding: 14px;
        opacity: 0;
        pointer-events: none;
        transform: none;
        animation: none;
    }

    .home-footer-contact:nth-child(2) .home-footer-qr-popover {
        margin-left: calc(-100% - 10px);
    }

    .home-footer-contact:nth-child(3) .home-footer-qr-popover {
        margin-left: calc(-200% - 20px);
    }

    .home-footer-contact.is-open .home-footer-qr-popover {
        display: grid;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        animation: footerQrReveal 0.24s ease-out;
    }

    .home-footer-qr-popover::after {
        content: none;
    }

    .home-footer-qr-popover img {
        width: 96px;
        height: 96px;
    }

    .home-footer-qr-popover h3 {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .home-footer-qr-popover p {
        font-size: 13px;
        line-height: 1.45;
    }

    .home-footer-qr-popover a {
        min-height: 32px;
        margin-top: 12px;
        padding: 0 14px;
        font-size: 12px;
    }

    .home-footer-bottom {
        font-size: 15px;
    }
}

@keyframes footerQrReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Event calendar activity list */
.events-calendar-page {
    --calendar-bg: #fcf9f8;
    --calendar-warm: #fffdf5;
    --calendar-primary: #182820;
    --calendar-primary-container: #2d3e35;
    --calendar-secondary: #924a2e;
    --calendar-text: #1c1b1b;
    --calendar-muted: #434844;
    --calendar-subtle: #8c8c8c;
    --calendar-surface: #fcf9f8;
    --calendar-surface-container: #f0eded;
    --calendar-border: rgba(45, 62, 53, 0.12);
    --calendar-outline: #c3c8c3;
    margin: 0;
    color: var(--calendar-text);
    background: var(--calendar-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.events-calendar-page .events-calendar-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    min-height: 80px;
    padding: 0;
    border: 0;
    background: rgba(252, 249, 248, 0.82);
    backdrop-filter: blur(12px);
}

.events-calendar-page .events-calendar-nav {
    display: flex;
    width: min(100%, 1200px);
    height: 80px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 80px;
}

.events-calendar-brand-wrap,
.events-calendar-actions,
.events-calendar-links {
    display: flex;
    align-items: center;
}

.events-calendar-brand-wrap {
    gap: 16px;
}

.events-calendar-page .events-calendar-icon-button {
    display: inline-flex;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.events-calendar-page .events-calendar-icon-button span {
    display: block;
    width: 12px;
    height: 1.5px;
    margin: 2px 0;
    border-radius: 0;
    background: var(--calendar-primary);
}

.events-calendar-brand {
    color: var(--calendar-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.events-calendar-page .events-calendar-links {
    gap: 24px;
}

.events-calendar-page .events-calendar-links a {
    padding: 0;
    border-radius: 0;
    color: var(--calendar-muted);
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.25s ease;
}

.events-calendar-page .events-calendar-links a:hover,
.events-calendar-page .events-calendar-links a[aria-current="page"] {
    color: var(--calendar-primary);
    background: transparent;
}

.events-calendar-page .events-calendar-links a[aria-current="page"] {
    font-weight: 700;
}

.events-calendar-page .events-calendar-links > span {
    color: rgba(67, 72, 68, 0.2);
}

.events-calendar-actions {
    gap: 16px;
    color: var(--calendar-primary);
    font-size: 20px;
    line-height: 1;
}

.events-calendar-page .events-page {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 128px 80px 120px;
    color: var(--calendar-text);
    background: transparent;
}

.events-calendar-page .events-hero {
    display: flex;
    max-width: 672px;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 32px;
}

.events-hero-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(24, 40, 32, 0.4);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.events-hero-kicker span:last-child {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.events-calendar-page .events-hero h1 {
    margin: 0;
    color: var(--calendar-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.events-calendar-page .events-hero p {
    max-width: 520px;
    margin: 0;
    color: var(--calendar-muted);
    font-size: 18px;
    line-height: 1.7;
}

.mobile-only {
    display: none;
}

.events-calendar-page .event-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 64px;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--calendar-border);
}

.events-calendar-page .event-filters div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.events-calendar-page .event-filters a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid var(--calendar-border);
    border-radius: 999px;
    color: var(--calendar-muted);
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.15s ease;
}

.events-calendar-page .event-filters a:hover {
    color: var(--calendar-primary);
    border-color: var(--calendar-primary);
}

.events-calendar-page .event-filters a:active {
    transform: scale(0.95);
}

.events-calendar-page .event-filters a.is-active {
    color: var(--calendar-warm);
    border-color: var(--calendar-primary);
    background: var(--calendar-primary);
}

.events-calendar-page .event-sort-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(67, 72, 68, 0.6);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.events-calendar-page .public-event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 24px;
}

.events-calendar-page .public-event-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--calendar-primary);
    opacity: 1;
    transform: none;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.events-calendar-page .public-event-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    background: var(--calendar-surface-container);
}

.events-calendar-page .public-event-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.4s ease, opacity 0.4s ease;
}

.events-calendar-page .public-event-card:hover .public-event-cover img {
    transform: scale(1.05);
}

.events-calendar-page .public-event-card.is-ended .public-event-cover,
.events-calendar-page .public-event-card.is-ended .public-event-cover img {
    filter: grayscale(1);
    opacity: 0.8;
}

.events-calendar-page .public-event-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.events-calendar-page .public-event-status,
.events-calendar-page .public-event-type {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
}

.events-calendar-page .public-event-status {
    color: var(--calendar-warm);
    background: var(--calendar-secondary);
}

.events-calendar-page .public-event-type {
    color: var(--calendar-primary);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
}

.events-calendar-page .status-full,
.events-calendar-page .status-ended {
    background: var(--calendar-subtle);
}

.events-calendar-page .status-signing {
    background: var(--calendar-secondary);
}

.events-calendar-page .public-event-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.events-calendar-page .public-event-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--calendar-subtle);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.events-calendar-page .public-event-body h2 {
    min-height: auto;
    margin: 0;
    color: var(--calendar-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.events-calendar-page .public-event-card:hover .public-event-body h2 {
    color: var(--calendar-secondary);
}

.events-calendar-page .public-event-card.is-ended .public-event-body h2,
.events-calendar-page .public-event-card.is-ended .public-event-summary strong,
.events-calendar-page .public-event-card.is-ended .public-event-summary div:last-child strong {
    color: var(--calendar-subtle);
}

.events-calendar-page .public-event-summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--calendar-border);
}

.events-calendar-page .public-event-summary div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.events-calendar-page .public-event-summary div:last-child {
    flex: 0 0 auto;
    align-items: flex-end;
    text-align: right;
}

.events-calendar-page .public-event-summary span {
    color: var(--calendar-subtle);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.events-calendar-page .public-event-summary strong {
    color: var(--calendar-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.events-calendar-page .public-event-summary div:last-child strong {
    color: var(--calendar-secondary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.events-calendar-page .event-detail-link {
    display: flex;
    min-height: 52px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
    padding: 0 24px;
    border: 1px solid var(--calendar-primary);
    color: var(--calendar-primary);
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.events-calendar-page .public-event-card:hover .event-detail-link {
    color: var(--calendar-warm);
    background: var(--calendar-primary);
    box-shadow: 0 20px 40px -24px rgba(24, 40, 32, 0.32);
}

.events-calendar-page .public-event-card.is-ended .event-detail-link {
    border-color: var(--calendar-subtle);
    color: var(--calendar-subtle);
    cursor: pointer;
}

.events-calendar-page .events-host-cta {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-top: 120px;
    padding: 64px;
    border-radius: 8px;
    color: var(--calendar-warm);
    background: var(--calendar-primary);
}

.events-calendar-page .events-host-cta::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: rgba(146, 74, 46, 0.1);
    filter: blur(48px);
}

.events-calendar-page .events-host-cta > div:first-child,
.events-calendar-page .events-host-image {
    position: relative;
    z-index: 1;
}

.events-calendar-page .events-host-cta h2 {
    margin: 0;
    color: var(--calendar-warm);
    font-family: Chivo, Inter, sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.events-calendar-page .events-host-cta p {
    max-width: 440px;
    margin: 24px 0 0;
    color: rgba(255, 253, 245, 0.8);
    font-size: 18px;
    line-height: 1.7;
}

.events-calendar-page .events-host-cta a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 0 32px;
    border-radius: 999px;
    color: var(--calendar-warm);
    background: var(--calendar-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    transition: transform 0.25s ease;
}

.events-calendar-page .events-host-cta a:hover {
    transform: scale(1.05);
}

.events-calendar-page .events-host-image {
    overflow: hidden;
    width: min(50%, 440px);
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    filter: grayscale(1) contrast(1.25);
}

.events-calendar-page .events-host-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-calendar-page .pagination-wrap {
    margin-top: 40px;
}

.events-calendar-page .empty-state {
    grid-column: 1 / -1;
    padding: 64px 32px;
    border: 1px solid var(--calendar-border);
    border-radius: 8px;
    background: var(--calendar-surface-container);
    text-align: center;
}

.events-calendar-page .empty-state h2 {
    margin: 0;
    color: var(--calendar-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
}

.events-calendar-page .empty-state p {
    margin: 12px 0 0;
    color: var(--calendar-muted);
}

.events-calendar-footer {
    width: 100%;
    padding: 120px 0;
    background: var(--calendar-surface-container);
}

.events-calendar-footer > div {
    display: grid;
    width: min(100%, 1200px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 0 auto;
    padding: 0 80px;
}

.events-calendar-footer h2 {
    margin: 0 0 24px;
    color: var(--calendar-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.events-calendar-footer p {
    max-width: 390px;
    margin: 0;
    color: var(--calendar-muted);
    font-size: 16px;
    line-height: 1.6;
}

.events-calendar-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    color: var(--calendar-primary);
    font-size: 18px;
}

.events-calendar-footer-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.events-calendar-footer-links > div:first-child,
.events-calendar-footer-links > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.events-calendar-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.events-calendar-footer-links p {
    grid-column: 1 / -1;
    max-width: none;
    padding-top: 32px;
    border-top: 1px solid var(--calendar-border);
    color: var(--calendar-subtle);
    font-size: 12px;
}

.events-calendar-footer-links span {
    color: var(--calendar-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.events-calendar-footer-links a {
    color: var(--calendar-muted);
    font-size: 16px;
    line-height: 1.6;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.25s ease;
}

.events-calendar-footer-links a:hover {
    color: var(--calendar-secondary);
}

@media (max-width: 1020px) {
    .events-calendar-page .events-calendar-nav,
    .events-calendar-page .events-page,
    .events-calendar-footer > div {
        padding-right: 32px;
        padding-left: 32px;
    }

    .events-calendar-page .public-event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .events-calendar-page .events-host-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .events-calendar-page .events-host-image {
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    .events-calendar-footer > div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .events-calendar-page .events-calendar-nav {
        height: 64px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .events-calendar-page .events-calendar-header {
        min-height: 64px;
    }

    .events-calendar-page .events-calendar-links {
        position: fixed;
        top: 64px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--calendar-border);
        border-radius: 8px;
        background: rgba(252, 249, 248, 0.98);
        box-shadow: 0 20px 40px -24px rgba(24, 40, 32, 0.32);
    }

    .events-calendar-page .events-calendar-links.is-open {
        display: flex;
    }

    .events-calendar-page .events-calendar-links > span {
        display: none;
    }

    .events-calendar-page .events-calendar-links a {
        padding: 12px;
    }

    .events-calendar-actions {
        gap: 12px;
    }

    .events-calendar-page .events-page {
        padding: 96px 20px 88px;
    }

    .mobile-only {
        display: block;
    }

    .events-calendar-page .events-hero h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .events-calendar-page .event-filters {
        margin-bottom: 48px;
    }

    .events-calendar-page .event-sort-note {
        display: none;
    }

    .events-calendar-page .public-event-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .events-calendar-page .events-host-cta {
        margin-top: 88px;
        padding: 20px;
    }

    .events-calendar-page .events-host-image {
        aspect-ratio: 1 / 1;
    }

    .events-calendar-footer {
        padding: 88px 0;
    }

    .events-calendar-footer > div {
        padding-right: 20px;
        padding-left: 20px;
    }

    .events-calendar-footer-links {
        grid-template-columns: 1fr;
    }
}

/* Host management redesign */
.hosts-redesign-page {
    --host-bg: #fcf9f8;
    --host-bone: #f7f5f0;
    --host-surface: #ffffff;
    --host-container: #f0eded;
    --host-primary: #182820;
    --host-primary-muted: #3d4f46;
    --host-secondary: #924a2e;
    --host-text: #1c1b1b;
    --host-muted: #434844;
    --host-soft-border: rgba(45, 62, 53, 0.08);
    margin: 0;
    color: var(--host-text);
    background: var(--host-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.hosts-redesign-page .site-header {
    border-bottom: 1px solid var(--host-soft-border);
    background: rgba(252, 249, 248, 0.86);
    backdrop-filter: blur(12px);
}

.hosts-redesign-page .brand {
    color: var(--host-primary);
    font-family: Chivo, Inter, sans-serif;
    font-weight: 700;
}

.hosts-redesign-page .brand-mark {
    color: var(--host-bg);
    background: var(--host-primary);
}

.hosts-redesign-page .primary-nav a {
    color: var(--host-muted);
    background: transparent;
}

.hosts-redesign-page .primary-nav a:hover,
.hosts-redesign-page .primary-nav a[aria-current="page"] {
    color: var(--host-secondary);
    background: transparent;
}

.hosts-redesign-page .host-page {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 96px 80px 120px;
}

.hosts-redesign-page .host-kicker {
    margin: 0 0 16px;
    color: var(--host-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

.hosts-redesign-page .host-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
    min-height: auto;
    padding: 48px 0 72px;
}

.hosts-redesign-page .host-hero h1,
.hosts-redesign-page .section-heading h2,
.hosts-redesign-page .host-hero-panel strong,
.hosts-redesign-page .cooperation-grid h3 {
    color: var(--host-primary);
    font-family: Chivo, Inter, sans-serif;
    letter-spacing: -0.02em;
}

.hosts-redesign-page .host-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.08;
}

.hosts-redesign-page .host-hero p:not(.host-kicker) {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--host-muted);
    font-size: 18px;
    line-height: 1.6;
}

.host-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.host-hero-meta span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--host-soft-border);
    border-radius: 999px;
    color: var(--host-primary);
    background: var(--host-bone);
    font-size: 14px;
    font-weight: 600;
}

.hosts-redesign-page .host-hero-panel {
    display: grid;
    gap: 0;
    overflow: hidden;
    min-height: auto;
    padding: 0;
    border: 1px solid var(--host-soft-border);
    border-radius: 24px;
    color: var(--host-primary);
    background: var(--host-bone);
    box-shadow: 0 28px 70px -42px rgba(24, 40, 32, 0.42);
}

.hosts-redesign-page .host-hero-panel img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.hosts-redesign-page .host-hero-panel div {
    padding: 28px;
}

.hosts-redesign-page .host-hero-panel span {
    display: block;
    margin-bottom: 14px;
    color: var(--host-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hosts-redesign-page .host-hero-panel strong {
    display: block;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.hosts-redesign-page .host-hero-panel p {
    margin: 18px 0 0;
    color: var(--host-muted);
    font-size: 16px;
    line-height: 1.5;
}

.hosts-redesign-page .host-section {
    padding-top: 88px;
}

.hosts-redesign-page .section-heading {
    display: block;
    margin-bottom: 32px;
}

.hosts-redesign-page .section-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
}

.hosts-redesign-page .host-check-grid,
.hosts-redesign-page .support-grid,
.hosts-redesign-page .cooperation-grid,
.hosts-redesign-page .process-steps {
    display: grid;
    gap: 24px;
}

.hosts-redesign-page .host-check-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hosts-redesign-page .host-check-grid article,
.hosts-redesign-page .support-grid article,
.hosts-redesign-page .cooperation-grid article,
.hosts-redesign-page .process-steps article {
    border: 1px solid var(--host-soft-border);
    border-radius: 20px;
    background: var(--host-bone);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hosts-redesign-page .host-check-grid article:hover,
.hosts-redesign-page .support-grid article:hover,
.hosts-redesign-page .cooperation-grid article:hover,
.hosts-redesign-page .process-steps article:hover {
    border-color: rgba(24, 40, 32, 0.22);
    box-shadow: 0 24px 60px -44px rgba(24, 40, 32, 0.52);
    transform: translateY(-2px);
}

.hosts-redesign-page .host-check-grid article {
    min-height: 220px;
    padding: 24px;
}

.hosts-redesign-page .host-check-grid strong {
    display: block;
    color: var(--host-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.hosts-redesign-page .host-check-grid p {
    margin: 18px 0 0;
    color: var(--host-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.hosts-redesign-page .support-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hosts-redesign-page .support-grid article {
    min-height: 132px;
    padding: 22px;
}

.hosts-redesign-page .support-grid span,
.hosts-redesign-page .cooperation-grid span {
    display: block;
    margin-bottom: 18px;
    color: var(--host-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

.hosts-redesign-page .support-grid strong {
    color: var(--host-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.hosts-redesign-page .cooperation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hosts-redesign-page .cooperation-grid article {
    min-height: 340px;
    padding: 32px;
}

.hosts-redesign-page .cooperation-grid h3 {
    margin: 0 0 18px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.hosts-redesign-page .cooperation-grid p {
    margin: 14px 0 0;
    color: var(--host-muted);
    font-size: 16px;
    line-height: 1.5;
}

.hosts-redesign-page .cooperation-grid small {
    display: inline-flex;
    margin-top: 22px;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--host-primary);
    background: #e8e2cf;
    font-size: 12px;
    font-weight: 600;
}

.hosts-redesign-page .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hosts-redesign-page .process-steps article {
    min-height: 172px;
    padding: 24px;
}

.hosts-redesign-page .process-steps span {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 50%;
    color: var(--host-bone);
    background: var(--host-secondary);
    font-size: 14px;
    font-weight: 700;
}

.hosts-redesign-page .process-steps strong {
    color: var(--host-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.hosts-redesign-page .application-section {
    margin-top: 24px;
    scroll-margin-top: 96px;
}

@media (max-width: 1180px) {
    .hosts-redesign-page .host-page {
        padding-right: 32px;
        padding-left: 32px;
    }

    .hosts-redesign-page .host-check-grid,
    .hosts-redesign-page .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .hosts-redesign-page .host-hero,
    .hosts-redesign-page .cooperation-grid,
    .hosts-redesign-page .process-steps {
        grid-template-columns: 1fr;
    }

    .hosts-redesign-page .host-hero {
        padding-top: 32px;
    }
}

@media (max-width: 640px) {
    .hosts-redesign-page .host-page {
        padding: 88px 20px 88px;
    }

    .hosts-redesign-page .host-check-grid,
    .hosts-redesign-page .support-grid {
        grid-template-columns: 1fr;
    }

    .hosts-redesign-page .host-section {
        padding-top: 72px;
    }

    .hosts-redesign-page .host-hero h1,
    .hosts-redesign-page .section-heading h2 {
        font-size: 32px;
        line-height: 1.18;
    }

    .hosts-redesign-page .host-hero-panel div,
    .hosts-redesign-page .cooperation-grid article {
        padding: 24px;
    }
}

/* Host full redesign from supplied module */
.host-full-redesign {
    --host-surface: #fcf9f8;
    --host-bone: #f7f5f0;
    --host-container-low: #f6f3f2;
    --host-container: #f0eded;
    --host-primary: #182820;
    --host-primary-container: #2d3e35;
    --host-secondary: #924a2e;
    --host-tertiary: #272519;
    --host-tertiary-fixed: #e8e2cf;
    --host-on-surface: #1c1b1b;
    --host-variant: #434844;
    --host-outline: #737874;
    --host-outline-variant: #c3c8c3;
    --host-soft-border: rgba(45, 62, 53, 0.08);
    --host-primary-fixed: #d4e7da;
    --host-secondary-fixed: #ffdbce;
    --host-on-primary: #ffffff;
    background: var(--host-surface);
    color: var(--host-on-surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.host-full-redesign .host-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 16px clamp(20px, 5vw, 80px);
    background: rgba(252, 249, 248, 0.9);
    backdrop-filter: blur(12px);
}

.host-full-redesign .host-logo {
    color: var(--host-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.host-full-redesign .host-topbar-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.host-full-redesign .host-topbar-links a,
.host-full-redesign .host-mobile-menu a {
    color: var(--host-variant);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.host-full-redesign .host-topbar-links a:hover,
.host-full-redesign .host-topbar-links a[aria-current="page"],
.host-full-redesign .host-mobile-menu a[aria-current="page"] {
    color: var(--host-secondary);
}

.host-full-redesign .host-menu-button {
    display: none;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.host-full-redesign .host-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--host-primary);
}

.host-full-redesign .host-mobile-menu {
    display: none;
}

.host-full-redesign .host-page {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 32px 20px 64px;
}

.host-index-page .host-page {
    padding-top: 112px;
}

.host-full-redesign .host-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
    min-height: auto;
    padding: 32px 0 64px;
}

.host-full-redesign .host-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: var(--host-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.host-full-redesign .host-hero-copy p {
    max-width: 580px;
    margin: 24px 0 0;
    color: var(--host-variant);
    font-size: 18px;
    line-height: 1.6;
}

.host-full-redesign .host-primary-action,
.host-full-redesign .host-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    margin-top: 28px;
    padding: 0 32px;
    border: 0;
    border-radius: 12px;
    color: var(--host-on-primary);
    background: var(--host-primary);
    box-shadow: 0 12px 24px -10px rgba(45, 62, 53, 0.24);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.host-full-redesign .host-primary-action {
    border-radius: 999px;
    padding: 0 36px;
}

.host-full-redesign .host-primary-action:hover,
.host-full-redesign .host-submit-button:hover {
    opacity: 0.9;
}

.host-full-redesign .host-primary-action:active,
.host-full-redesign .host-submit-button:active {
    transform: scale(0.98);
}

.host-full-redesign .host-hero-image {
    position: relative;
    overflow: hidden;
    height: clamp(360px, 48vw, 560px);
    border-radius: 32px;
    background: var(--host-container);
}

.host-full-redesign .host-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 40, 32, 0.4), transparent 55%);
}

.host-full-redesign .host-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.host-full-redesign .host-hero-image:hover img {
    transform: scale(1.05);
}

.host-full-redesign .host-support-intro,
.host-full-redesign .host-platform-support {
    margin-right: -20px;
    margin-left: -20px;
    padding: 64px 20px;
}

.host-full-redesign .host-support-intro {
    background: var(--host-bone);
}

.host-full-redesign .host-support-intro > div:first-child,
.host-full-redesign .host-platform-support > h2,
.host-full-redesign .host-platform-support > div {
    width: min(100%, 1280px);
    margin-right: auto;
    margin-left: auto;
}

.host-full-redesign .host-support-intro > div:first-child span {
    display: block;
    margin-bottom: 8px;
    color: var(--host-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.host-full-redesign h2,
.host-full-redesign .host-support-intro h3,
.host-full-redesign .host-cooperation h3,
.host-full-redesign .host-form-step-heading h3,
.host-full-redesign .host-application-shell > header h2 {
    color: var(--host-primary);
    font-family: Chivo, Inter, sans-serif;
}

.host-full-redesign h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.01em;
}

.host-full-redesign .host-support-intro > div:first-child p {
    max-width: 640px;
    margin: 12px 0 0;
    color: var(--host-variant);
    font-size: 16px;
    line-height: 1.5;
}

.host-support-cards {
    display: grid;
    width: min(100%, 1280px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 24px auto 0;
}

.host-support-cards article,
.host-audience-grid article,
.host-cooperation article {
    border: 1px solid var(--host-soft-border);
    border-radius: 24px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.host-support-cards article:hover,
.host-audience-grid article:hover,
.host-cooperation article:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 62, 53, 0.18);
    box-shadow: 0 12px 24px -10px rgba(45, 62, 53, 0.15);
}

.host-support-cards article {
    padding: 32px;
}

.host-support-cards article > span {
    color: var(--host-secondary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.host-support-cards h3 {
    margin: 16px 0 0;
    font-size: 18px;
    font-weight: 700;
}

.host-support-cards p,
.host-cooperation p,
.host-application-flow p {
    margin: 12px 0 0;
    color: var(--host-variant);
    font-size: 16px;
    line-height: 1.5;
}

.host-audience,
.host-cooperation,
.host-application-flow,
.host-application-shell {
    padding: 64px 0;
}

.host-audience h2,
.host-application-flow h2 {
    text-align: center;
}

.host-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.host-audience-grid article {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--host-container-low);
}

.host-audience-grid p {
    margin: 0;
    color: var(--host-on-surface);
    font-size: 16px;
    line-height: 1.5;
}

.host-icon {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--host-secondary-fixed);
}

.host-icon::before {
    color: var(--host-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.host-icon-woman::before { content: "♀"; }
.host-icon-lightbulb::before { content: "✦"; }
.host-icon-chat::before { content: "◌"; }
.host-icon-rocket::before { content: "↗"; }
.host-icon-lightbulb { background: var(--host-primary-fixed); }
.host-icon-chat { background: var(--host-tertiary-fixed); }
.host-icon-rocket { background: var(--host-container); }

.host-platform-support {
    color: var(--host-on-primary);
    background: var(--host-primary);
}

.host-platform-support h2 {
    color: var(--host-on-primary);
    text-align: center;
}

.host-platform-support > div {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px 16px;
    margin-top: 64px;
}

.host-platform-support article {
    text-align: center;
}

.host-platform-support span {
    display: block;
    margin-bottom: 8px;
    color: #96a99d;
    font-size: 12px;
    font-weight: 700;
}

.host-platform-support p {
    margin: 0;
    color: var(--host-on-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

.host-cooperation > div {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.host-cooperation article {
    padding: 32px;
    background: var(--host-bone);
}

.host-cooperation article:nth-child(2) {
    background: var(--host-container);
}

.host-cooperation article:nth-child(3) {
    color: #fff;
    background: var(--host-tertiary);
}

.host-cooperation article > span {
    display: block;
    margin-bottom: 16px;
    color: var(--host-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.host-cooperation article:nth-child(3) > span {
    color: var(--host-tertiary-fixed);
}

.host-cooperation h3 {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.host-cooperation article:nth-child(3) h3,
.host-cooperation article:nth-child(3) p,
.host-cooperation article:nth-child(3) strong {
    color: inherit;
}

.host-cooperation strong {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    color: var(--host-primary);
    font-weight: 700;
}

.host-application-flow {
    border-top: 1px solid var(--host-soft-border);
}

.host-application-flow > div {
    position: relative;
    display: grid;
    gap: 48px;
    max-width: 760px;
    margin: 64px auto 0;
}

.host-application-flow > div::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: rgba(195, 200, 195, 0.35);
}

.host-application-flow article {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.host-application-flow article > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--host-on-primary);
    background: var(--host-primary);
    font-weight: 700;
    z-index: 1;
}

.host-application-flow article:last-child > span {
    background: var(--host-secondary);
}

.host-application-flow h3 {
    margin: 0;
    color: var(--host-primary);
    font-size: 18px;
    font-weight: 700;
}

.host-application-shell {
    scroll-margin-top: 96px;
    border-top: 1px solid var(--host-soft-border);
}

.host-apply-page {
    min-height: 100vh;
    background: var(--host-surface);
}

.host-apply-topbar {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    min-height: 72px;
    padding: 0 56px;
    border-bottom: 1px solid rgba(45, 62, 53, 0.08);
    background: rgba(252, 249, 248, 0.92);
    backdrop-filter: blur(14px);
}

.host-apply-topbar a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--host-soft-border);
    border-radius: 50%;
    color: var(--host-primary);
    font-size: 20px;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.host-apply-topbar a:hover {
    border-color: var(--host-primary);
    background: var(--host-bone);
    transform: translateX(-2px);
}

.host-apply-topbar h1 {
    margin: 0;
    color: var(--host-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
}

.host-apply-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 56px 96px;
}

.host-apply-page .host-application-shell {
    border-top: 0;
}

.host-apply-page .host-application-shell > header {
    max-width: none;
    margin: 0 0 72px;
}

.host-apply-page .host-application-shell > header p {
    margin-bottom: 18px;
    color: var(--host-secondary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.host-apply-page .host-application-shell > header h2 {
    color: var(--host-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.05;
}

.host-apply-page .host-application-shell > header span {
    margin-top: 24px;
    color: rgba(45, 62, 53, 0.74);
    font-size: 24px;
    line-height: 1.5;
}

.host-application-shell > header {
    max-width: 760px;
    margin: 0 auto 36px;
}

.host-application-shell > header p {
    margin: 0 0 10px;
    color: var(--host-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.host-application-shell > header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
}

.host-application-shell > header span {
    display: block;
    margin-top: 8px;
    color: var(--host-variant);
}

.host-form-progress {
    position: relative;
    display: grid;
    max-width: 760px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0 auto 40px;
}

.host-form-progress::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: var(--host-outline-variant);
}

.host-form-progress div {
    position: relative;
    display: grid;
    gap: 8px;
    justify-items: center;
    background: var(--host-surface);
}

.host-form-progress button {
    position: relative;
    display: grid;
    gap: 18px;
    justify-items: center;
    border: 0;
    padding: 0;
    background: var(--host-surface);
    color: var(--host-primary);
    cursor: pointer;
    font: inherit;
    text-align: center;
}

.host-form-progress button:focus-visible {
    outline: 3px solid rgba(147, 76, 49, 0.28);
    outline-offset: 8px;
}

.host-form-progress span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--host-on-primary);
    background: var(--host-primary);
    font-size: 12px;
    font-weight: 700;
}

.host-apply-page .host-form-progress {
    max-width: none;
    gap: 64px;
    margin-bottom: 72px;
}

.host-apply-page .host-form-progress::before {
    top: 31px;
    left: 18%;
    right: 18%;
}

.host-apply-page .host-form-progress button {
    gap: 18px;
}

.host-apply-page .host-form-progress span {
    width: 64px;
    height: 64px;
    font-size: 22px;
}

.host-apply-page .host-form-progress strong {
    font-size: 20px;
    font-weight: 700;
}

.host-form-progress button:not([aria-current="step"]):not(.is-complete) span {
    color: rgba(45, 62, 53, 0.72);
    background: rgba(18, 40, 29, 0.12);
}

.host-form-progress button:not([aria-current="step"]):not(.is-complete) strong {
    color: rgba(45, 62, 53, 0.64);
}

.host-form-progress strong {
    color: var(--host-primary);
    font-size: 12px;
    font-weight: 600;
}

.host-redesign-form {
    display: grid;
    max-width: 760px;
    gap: 64px;
    margin: 0 auto;
}

.host-form-step {
    display: grid;
    gap: 24px;
}

.host-form-step[hidden] {
    display: none !important;
}

.host-apply-page .host-redesign-form {
    max-width: 860px;
}

.host-apply-page .host-form-step {
    gap: 32px;
}

.host-apply-page .host-form-actions {
    max-width: 860px;
    margin: 0 auto;
    align-items: center;
    gap: 16px;
}

.host-form-step-heading {
    padding-left: 16px;
    border-left: 4px solid var(--host-secondary);
}

.host-form-step-heading h3 {
    margin: 0;
    color: var(--host-primary);
    font-size: 28px;
    font-weight: 600;
}

.host-form-step-heading p {
    margin: 6px 0 0;
    color: var(--host-variant);
}

.host-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.host-redesign-form .registration-field {
    display: grid;
    gap: 10px;
}

.host-redesign-form .registration-field > label {
    color: var(--host-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.host-redesign-form .registration-field > label span {
    color: var(--host-secondary);
}

.host-redesign-form input:not([type="radio"]):not([type="checkbox"]),
.host-redesign-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(45, 62, 53, 0.2);
    border-radius: 0;
    background: transparent;
    color: var(--host-on-surface);
    font: inherit;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.host-redesign-form input:not([type="radio"]):not([type="checkbox"]) {
    min-height: 48px;
    padding: 8px 0;
}

.host-redesign-form textarea {
    min-height: 112px;
    padding: 12px 0;
    resize: vertical;
}

.host-redesign-form input:focus,
.host-redesign-form textarea:focus {
    outline: 0;
    border-bottom-color: var(--host-secondary);
}

.host-redesign-form ::placeholder {
    color: rgba(67, 72, 68, 0.42);
}

.host-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.host-choice,
.host-chip-group label {
    cursor: pointer;
}

.host-choice {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid var(--host-soft-border);
    border-radius: 8px;
    background: #fff;
    color: var(--host-on-surface);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.host-choice:hover {
    border-color: var(--host-secondary);
}

.host-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.host-choice span {
    font-size: 15px;
    line-height: 1.4;
}

.host-choice::after {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border: 2px solid var(--host-outline);
    border-radius: 50%;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.host-choice:has(input:checked) {
    border-color: var(--host-primary);
    background: var(--host-primary-fixed);
}

.host-choice:has(input:checked)::after {
    border-color: var(--host-primary);
    background: var(--host-primary);
    box-shadow: inset 0 0 0 4px var(--host-primary-fixed);
}

.host-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.host-chip-group input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.host-chip-group label {
    position: relative;
}

.host-chip-group span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--host-soft-border);
    border-radius: 999px;
    color: var(--host-variant);
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.host-chip-group label:hover span {
    border-color: var(--host-primary);
    color: var(--host-primary);
}

.host-chip-group input:checked + span {
    border-color: var(--host-tertiary);
    color: var(--host-primary);
    background: var(--host-tertiary-fixed);
}

.host-form-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--host-soft-border);
}

.host-secondary-action,
.host-submit-button {
    min-height: 56px;
    border-radius: 8px;
    margin-top: 0;
}

.host-secondary-action {
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--host-primary);
    color: var(--host-primary);
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.host-submit-button {
    flex: 2;
}

.host-apply-page .host-form-actions [hidden] {
    display: none !important;
}

.host-apply-page .host-secondary-action,
.host-apply-page .host-submit-button {
    min-height: 52px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.host-apply-page .host-secondary-action {
    flex: 0 0 clamp(180px, 22vw, 296px);
    background: transparent;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.host-apply-page .host-secondary-action:hover {
    background: var(--host-primary-fixed);
}

.host-apply-page .host-secondary-action:active {
    transform: scale(0.98);
}

.host-apply-page .host-submit-button {
    flex: 0 0 clamp(240px, 32vw, 440px);
    margin-left: 0;
}

.host-apply-page .host-submit-button[data-host-submit] {
    background: var(--host-secondary);
}

.host-apply-page .home-footer {
    padding-top: 32px;
    padding-bottom: 28px;
}

.host-apply-page .home-footer-inner {
    padding: 28px 32px 22px;
}

.host-apply-page .home-footer-top {
    gap: 42px;
    margin-bottom: 28px;
}

.host-apply-page .home-footer h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.1;
}

.host-apply-page .home-footer p {
    font-size: 14px;
    line-height: 1.65;
}

.host-apply-page .home-footer-links span,
.host-apply-page .home-footer-connect > span {
    font-size: 12px;
}

.host-apply-page .home-footer-links a {
    font-size: 14px;
}

.host-apply-page .home-footer-contact-logo {
    width: 48px;
    height: 48px;
    font-size: 13px;
}

.host-apply-page .home-footer-contact strong {
    font-size: 12px;
}

.host-apply-page .home-footer-bottom {
    padding-top: 20px;
    font-size: 12px;
}

.host-index-page .home-footer {
    padding-top: 32px;
    padding-bottom: 28px;
    background: var(--host-surface);
}

.host-index-page .home-footer-inner {
    padding: 28px 32px 22px;
}

.host-index-page .home-footer-top {
    gap: 42px;
    margin-bottom: 28px;
}

.host-index-page .home-footer h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.1;
}

.host-index-page .home-footer p {
    font-size: 14px;
    line-height: 1.65;
}

.host-index-page .home-footer-links span,
.host-index-page .home-footer-connect > span {
    font-size: 12px;
}

.host-index-page .home-footer-links a {
    font-size: 14px;
}

.host-index-page .home-footer-contact-logo {
    width: 48px;
    height: 48px;
    font-size: 13px;
}

.host-index-page .home-footer-contact strong {
    font-size: 12px;
}

.host-index-page .home-footer-bottom {
    padding-top: 20px;
    font-size: 12px;
}

.host-footer {
    display: flex;
    max-width: 1280px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin: 0 auto;
    padding: 64px 20px 88px;
    background: var(--host-container);
}

.host-footer div {
    color: var(--host-primary);
    font-family: Chivo, Inter, sans-serif;
    font-size: 28px;
    font-weight: 600;
}

.host-footer nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.host-footer a {
    color: var(--host-variant);
}

.host-footer a:hover {
    color: var(--host-secondary);
}

.host-footer p {
    margin: 0;
    color: rgba(67, 72, 68, 0.64);
    font-size: 12px;
}

.host-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: none;
    height: 64px;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid var(--host-soft-border);
    background: rgba(252, 249, 248, 0.95);
    backdrop-filter: blur(10px);
}

.host-bottom-nav a {
    color: var(--host-variant);
    font-size: 12px;
    font-weight: 600;
}

.host-bottom-nav a[aria-current="page"] {
    color: var(--host-secondary);
}

@media (min-width: 900px) {
    .host-full-redesign .host-page {
        padding-right: 80px;
        padding-left: 80px;
    }

    .host-full-redesign .host-support-intro,
    .host-full-redesign .host-platform-support {
        margin-right: calc(-1 * min(80px, 5vw));
        margin-left: calc(-1 * min(80px, 5vw));
        padding-right: 80px;
        padding-left: 80px;
    }
}

@media (max-width: 980px) {
    .host-support-cards,
    .host-platform-support > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .host-full-redesign .host-hero,
    .host-audience-grid,
    .host-form-grid {
        grid-template-columns: 1fr;
    }

    .host-apply-topbar {
        padding: 0 24px;
    }

    .host-apply-main {
        padding: 40px 24px 88px;
    }

    .host-apply-page .host-form-progress {
        gap: 18px;
    }

    .host-apply-page .host-form-progress::before {
        left: 20%;
        right: 20%;
    }
}

@media (max-width: 760px) {
    .host-full-redesign .host-topbar-links {
        display: none;
    }

    .host-full-redesign .host-menu-button {
        display: block;
    }

    .host-full-redesign .host-mobile-menu {
        position: fixed;
        top: 72px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--host-soft-border);
        border-radius: 16px;
        background: var(--host-bone);
        box-shadow: 0 24px 48px -24px rgba(24, 40, 32, 0.32);
    }

    .host-full-redesign .host-mobile-menu.is-open {
        display: flex;
    }

    .host-full-redesign .host-mobile-menu a {
        padding: 14px 12px;
    }

    .host-index-page .host-page {
        padding-top: 96px;
    }

    .host-full-redesign .host-hero {
        padding-top: 24px;
    }

    .host-full-redesign .host-hero-copy h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .host-full-redesign .host-hero-image {
        height: 400px;
    }

    .host-support-cards,
    .host-platform-support > div,
    .host-option-grid {
        grid-template-columns: 1fr;
    }

    .host-apply-topbar {
        grid-template-columns: 40px 1fr 40px;
        min-height: 64px;
        padding: 0 16px;
    }

    .host-apply-topbar a {
        width: 40px;
        height: 40px;
    }

    .host-apply-main {
        padding: 32px 20px 80px;
    }

    .host-apply-page .host-application-shell > header {
        margin-bottom: 48px;
    }

    .host-apply-page .host-application-shell > header p {
        font-size: 16px;
    }

    .host-apply-page .host-application-shell > header h2 {
        font-size: 44px;
    }

    .host-apply-page .host-application-shell > header span {
        font-size: 18px;
    }

    .host-apply-page .host-form-progress {
        gap: 8px;
        margin-bottom: 48px;
    }

    .host-apply-page .host-form-progress::before {
        top: 24px;
        left: 18%;
        right: 18%;
    }

    .host-apply-page .host-form-progress span {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .host-apply-page .host-form-progress strong {
        font-size: 15px;
    }

    .host-form-progress strong {
        font-size: 11px;
    }

    .host-form-actions {
        flex-direction: column;
    }

    .host-apply-page .host-secondary-action,
    .host-apply-page .host-submit-button {
        width: 100%;
        flex-basis: auto;
        margin-left: 0;
    }

    .host-apply-page .home-footer-inner {
        padding: 24px 20px 20px;
    }

    .host-apply-page .home-footer h2 {
        font-size: 22px;
    }

    .host-apply-page .home-footer p,
    .host-apply-page .home-footer-links a {
        font-size: 13px;
    }

    .host-index-page .home-footer-inner {
        padding: 24px 20px 20px;
    }

    .host-index-page .home-footer h2 {
        font-size: 22px;
    }

    .host-index-page .home-footer p,
    .host-index-page .home-footer-links a {
        font-size: 13px;
    }

    .host-bottom-nav {
        display: flex;
    }

    .host-footer {
        padding-bottom: 104px;
    }
}

.site-header.home-header {
    border-bottom: 0;
    background: rgba(252, 249, 248, 0.82);
    backdrop-filter: blur(12px);
}

.site-header.home-header .home-brand {
    color: var(--home-primary, #182820);
    font-size: 24px;
    font-weight: 800;
}

.site-header.home-header .home-nav a {
    color: var(--home-muted, #434844);
    font-size: 15px;
    font-weight: 500;
}

.site-header.home-header .home-nav a:hover,
.site-header.home-header .home-nav a[aria-current="page"] {
    color: var(--home-secondary, #924a2e);
}

.site-header.home-header .home-nav a[aria-current="page"] {
    color: var(--home-primary, #182820);
    font-weight: 700;
}

.site-header.home-header .home-nav-toggle span {
    background: var(--home-primary, #182820);
}

.home-page .home-hero .home-actions .home-button-primary,
.home-page .home-hero .home-actions .home-button-primary:visited,
.home-page .home-hero .home-actions .home-button-primary span {
    color: #fcf9f8;
    -webkit-text-fill-color: #fcf9f8;
}

.event-detail-page,
.placeholder-page {
    padding-top: max(96px, clamp(34px, 6vw, 72px));
}

@media (max-width: 640px) {
    .site-header.home-header .home-brand {
        font-size: 16px;
    }

    .site-header.home-header .home-brand-logo {
        width: 26px !important;
        height: 26px !important;
        max-width: 26px !important;
        flex-basis: 26px;
        border-radius: 6px;
    }

    .event-detail-page,
    .placeholder-page {
        padding-top: 88px;
    }
}

@media (max-width: 640px) {
    .home-page .home-hero .home-actions .home-button-primary,
    .home-page .home-hero .home-actions .home-button-primary:visited,
    .home-page .home-hero .home-actions .home-button-primary span {
        color: #fcf9f8;
        -webkit-text-fill-color: #fcf9f8;
    }

    .home-page .home-host .home-button-light,
    .home-page .home-host .home-button-light:visited,
    .home-page .home-host .home-button-light span {
        color: #182820;
        -webkit-text-fill-color: #182820;
    }
}

@media (max-width: 640px) {
    .events-calendar-page .events-hero h1,
    .host-full-redesign .host-hero-copy h1 {
        font-size: 32px;
        line-height: 1.2;
    }
}
