@import url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
    color-scheme: light;
    --bg: #f8f5f0;
    --bg-soft: #fffaf6;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-strong: #ffffff;
    --surface-dark: #1d222b;
    --text: #16181d;
    --text-soft: #445064;
    --line: rgba(22, 24, 29, 0.09);
    --red: #be1e2d;
    --red-deep: #8e1621;
    --gold: #d5a94a;
    --navy: #173257;
    --shadow: 0 24px 60px rgba(16, 24, 40, 0.14);
    --radius-xl: 2rem;
    --radius-lg: 1.5rem;
    --radius-md: 1.1rem;
    --section-gap: 6rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Pretendard", "Malgun Gothic", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(190, 30, 45, 0.08), transparent 26rem),
        linear-gradient(180deg, #fffaf6 0%, #f7f2eb 100%);
    word-break: keep-all;
    line-break: strict;
}

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

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.social-icon {
    display: block;
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    fill: currentColor;
}

.hero-copy h1,
.section-heading h2,
.story-card h2,
.share-card h2,
.plan-title,
.hero-float-card h2,
.message-card h3,
.brochure-card h3,
.brochure-sheet h3,
.modal-copy h2,
.schedule-feature-card h3,
.schedule-entry h3 {
    text-wrap: balance;
}

.hero-lead,
.story-card p,
.story-note p,
.proof-card p,
.pillar-card p,
.plan-summary,
.plan-lead,
.share-card p,
.message-card p,
.modal-copy p,
.modal-copy li,
.brochure-sheet-section p,
.metric-label,
.schedule-feature-copy,
.schedule-feature-note,
.schedule-entry-location,
.schedule-entry-note {
    text-wrap: pretty;
}

button,
input,
textarea,
select {
    font: inherit;
}

.page-shell {
    min-height: 100vh;
    overflow: clip;
}

.section-width {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid transparent;
    background: rgba(255, 250, 246, 0.84);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-nav.is-scrolled {
    border-color: rgba(22, 24, 29, 0.08);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.nav-inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0.95rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    font: 800 0.85rem/1 "Paperlogy", "Pretendard", sans-serif;
    letter-spacing: 0.08em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.brand-text strong {
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: 1rem;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
    font-size: 0.96rem;
    color: var(--text-soft);
}

.nav-links a {
    position: relative;
    padding: 0.35rem 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(190, 30, 45, 0.16);
    background: rgba(255, 255, 255, 0.92);
    color: var(--red-deep);
    font: 900 0.82rem/1 "Paperlogy", "Pretendard", sans-serif;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    box-shadow: 0 16px 28px rgba(190, 30, 45, 0.22);
}

.social-youtube .social-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.social-instagram .social-icon {
    width: 1.08rem;
    height: 1.08rem;
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 1rem;
    background: rgba(22, 24, 29, 0.06);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1.4rem;
    height: 2px;
    margin: 0.25rem auto;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 28, 0.3);
    backdrop-filter: blur(12px);
    z-index: 0;
}

.hero {
    position: relative;
    padding: 3.5rem 0 4rem;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 52%, rgba(230, 73, 83, 0.34), transparent 18rem),
        radial-gradient(circle at 16% 78%, rgba(255, 176, 176, 0.32), transparent 22rem),
        radial-gradient(circle at 58% 26%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 42rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 238, 235, 0.92));
}

.hero-backdrop::before,
.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-backdrop::before {
    background:
        radial-gradient(ellipse at 78% 28%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 28rem),
        radial-gradient(ellipse at 22% 10%, rgba(255, 240, 240, 0.6), rgba(255, 255, 255, 0) 24rem);
}

.hero-backdrop::after {
    opacity: 0.7;
    background:
        radial-gradient(100% 52% at 22% 14%, rgba(255, 255, 255, 0) 59%, rgba(255, 255, 255, 0.46) 60%, rgba(255, 255, 255, 0) 63%),
        radial-gradient(108% 58% at 74% 34%, rgba(255, 255, 255, 0) 61%, rgba(255, 255, 255, 0.42) 62%, rgba(255, 255, 255, 0) 66%),
        radial-gradient(115% 70% at 48% 82%, rgba(255, 255, 255, 0) 64%, rgba(255, 255, 255, 0.28) 65%, rgba(255, 255, 255, 0) 68%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    grid-template-areas: "copy visual";
    column-gap: 2.75rem;
    align-items: center;
}

.hero-copy {
    grid-area: copy;
    position: relative;
    z-index: 2;
    padding: 2.5rem 0 1.5rem;
    color: var(--text);
    max-width: 34rem;
}

.section-eyebrow,
.panel-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-eyebrow::before,
.panel-overline::before,
.modal-kicker::before {
    content: "";
    width: 1.4rem;
    height: 2px;
    background: currentColor;
    opacity: 0.72;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    margin: 0;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d71e31, #be1e2d);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 18px 30px rgba(190, 30, 45, 0.2);
}

.hero-copy h1 {
    margin: 1.1rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(3.35rem, 6vw, 5.35rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 10.5ch;
    color: #111827;
}

.hero-title-line,
.hero-title-accent {
    display: block;
    white-space: nowrap;
}

.hero-title-accent {
    color: var(--red);
}

.hero-lead {
    max-width: 29rem;
    margin: 1.4rem 0 0;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: #4c596b;
}

.hero-lead strong {
    color: var(--red-deep);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.7rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--red-deep);
    border: 1px solid rgba(190, 30, 45, 0.16);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.06);
}

.hero-actions,
.brochure-actions,
.share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.1rem;
}

.hero-socials > span,
.hero-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.45rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
}

.hero-socials > span {
    padding: 0.55rem 0.9rem;
    background: rgba(190, 30, 45, 0.1);
    color: var(--red-deep);
}

.hero-socials a {
    padding: 0.55rem 1rem;
    border: 1px solid rgba(190, 30, 45, 0.18);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.06);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
    transform: translateY(-2px);
    background: var(--red);
    color: #fff;
    box-shadow: 0 16px 28px rgba(190, 30, 45, 0.22);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
    background: linear-gradient(135deg, #d71e31 0%, #b51523 100%);
    color: #fff;
    box-shadow: 0 18px 30px rgba(190, 30, 45, 0.24);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--red);
    border-color: rgba(190, 30, 45, 0.24);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.hero-metrics {
    grid-area: metrics;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.metric-card {
    padding: 1.15rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(190, 30, 45, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
    position: relative;
    z-index: 2;
}

.metric-number {
    display: inline-flex;
    align-items: flex-start;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    line-height: 1;
    color: var(--red-deep);
}

.metric-label {
    display: block;
    margin-top: 0.6rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.hero-visual {
    grid-area: visual;
    position: relative;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 13.8rem;
    grid-template-areas:
        "portrait info"
        "metrics metrics";
    column-gap: 1rem;
    row-gap: 0.9rem;
    align-items: end;
    padding: 1.5rem 0 0.35rem;
    z-index: 1;
}

.hero-visual-glow {
    position: absolute;
    inset: 2.5rem 0 4rem 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(241, 102, 111, 0.26), rgba(241, 102, 111, 0) 64%);
    filter: blur(12px);
}

.hero-portrait-stage {
    grid-area: portrait;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 23rem;
    z-index: 1;
}

.hero-portrait-shell {
    width: min(100%, 20rem);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 2.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 240, 236, 0.92));
    border: 1px solid rgba(190, 30, 45, 0.1);
    box-shadow:
        0 30px 60px rgba(17, 24, 39, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-portrait-large {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    transform: scale(1.02);
}

.hero-float-card {
    grid-area: info;
    position: relative;
    width: 100%;
    padding: 1.35rem 1.35rem 1.4rem;
    border-radius: 1.7rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(190, 30, 45, 0.12);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
    backdrop-filter: blur(16px);
    z-index: 2;
}

.hero-float-kicker {
    margin: 0;
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-float-card h2 {
    margin: 0.5rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-float-subline {
    margin: 0.7rem 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-float-list {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-float-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    font-weight: 700;
}

.hero-float-list li::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #ef6068);
    box-shadow: 0 0 0 0.2rem rgba(190, 30, 45, 0.12);
}

.hero-panel {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border-radius: 2rem;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 246, 0.84)),
        rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow);
    color: var(--text);
}

.hero-panel-head {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.hero-portrait-frame {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 220px;
}

.hero-portrait {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 30px rgba(18, 24, 39, 0.22));
}

.hero-panel-head .hero-panel-top h2 {
    font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.hero-panel-top h2 {
    margin: 0.65rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.panel-subline {
    margin: 0.65rem 0 0;
    font-size: 1.05rem;
    color: var(--text-soft);
}

.hero-panel-quote {
    position: relative;
    padding: 1.25rem 1.3rem;
    border-radius: 1.4rem;
    background: linear-gradient(135deg, rgba(190, 30, 45, 0.08), rgba(213, 169, 74, 0.16));
}

.quote-chip,
.list-tag,
.pillar-number,
.proof-label,
.plan-card-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-panel-quote p {
    margin: 0.9rem 0 0;
    font-size: 1.02rem;
    line-height: 1.8;
}

.hero-panel-list {
    display: grid;
    gap: 0.85rem;
}

.hero-panel-list article,
.proof-card,
.pillar-card,
.message-card,
.plan-card,
.brochure-card {
    padding: 1.15rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
}

.hero-panel-list h3,
.pillar-card h3,
.proof-card strong,
.message-card h3,
.plan-title,
.brochure-sheet h3 {
    margin: 0.7rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    line-height: 1.2;
}

.hero-panel-list p,
.proof-card p,
.pillar-card p,
.section-heading p,
.message-card p,
.plan-summary,
.share-card p,
.site-footer p,
.brochure-card p {
    margin: 0.65rem 0 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.hero-signature {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-signature span {
    background: rgba(190, 30, 45, 0.08);
    color: var(--red-deep);
    border-color: rgba(190, 30, 45, 0.12);
}

.ticker-band {
    border-block: 1px solid rgba(190, 30, 45, 0.16);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.66), rgba(255, 242, 232, 0.92));
    overflow: hidden;
}

.ticker-marquee {
    display: flex;
    width: max-content;
    min-width: 100%;
    will-change: transform;
    animation: ticker 60s linear infinite;
}

.ticker-track {
    display: flex;
    flex: 0 0 auto;
    padding: 1rem 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: 1rem;
    color: var(--red-deep);
    white-space: nowrap;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 2.6rem;
    flex: 0 0 auto;
    padding-right: 2.6rem;
}

.ticker-track span::after {
    content: "•";
    color: rgba(190, 30, 45, 0.38);
}

.section {
    padding: var(--section-gap) 0;
}

.section-heading {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin: 0.85rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.section-message {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent),
        rgba(255, 255, 255, 0.16);
}

.section-schedule {
    padding-top: calc(var(--section-gap) - 1.5rem);
}

.schedule-board {
    display: grid;
    grid-template-columns: minmax(18rem, 22rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.schedule-board.is-feature-hidden {
    grid-template-columns: 1fr;
}

.schedule-feature-card,
.schedule-entry,
.schedule-empty-card {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(22, 24, 29, 0.06);
    box-shadow: 0 24px 50px rgba(18, 24, 39, 0.08);
    backdrop-filter: blur(16px);
}

.schedule-feature-card {
    position: sticky;
    top: 5.9rem;
    overflow: hidden;
}

.schedule-feature-card.is-hidden {
    display: none;
}

.schedule-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(190, 30, 45, 0.95), rgba(23, 50, 87, 0.92)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 14rem);
}

.schedule-feature-card-body {
    position: relative;
    z-index: 1;
    padding: 1.45rem;
    color: #fff;
}

.schedule-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.schedule-feature-date {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
}

.schedule-feature-card h3 {
    margin: 0.8rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.schedule-feature-copy,
.schedule-feature-note {
    margin: 0.95rem 0 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}

.schedule-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.schedule-feature-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 2.1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    font-weight: 700;
}

.schedule-feature-points {
    display: grid;
    gap: 0.7rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.schedule-feature-points li {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding: 0.75rem 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
}

.schedule-feature-points strong {
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: 1rem;
}

.schedule-feature-points span {
    line-height: 1.55;
}

.schedule-content {
    min-width: 0;
}

.schedule-date-guide {
    display: none;
    margin: 0 0 0.65rem;
    color: rgba(142, 22, 33, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.schedule-date-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.schedule-day-chip {
    appearance: none;
    display: grid;
    gap: 0.2rem;
    min-width: 8.6rem;
    min-height: 3.45rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(22, 24, 29, 0.08);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.schedule-day-chip span {
    font-weight: 800;
}

.schedule-day-chip small {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.schedule-day-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(190, 30, 45, 0.16);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.schedule-day-chip.is-active {
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    border-color: transparent;
}

.schedule-day-chip.is-active small {
    color: rgba(255, 255, 255, 0.78);
}

.schedule-timeline {
    display: grid;
    gap: 1rem;
    position: relative;
}

.schedule-entry,
.schedule-empty-card {
    padding: 1.2rem;
}

.schedule-entry {
    display: grid;
    grid-template-columns: 1.1rem 8.3rem minmax(0, 1fr);
    gap: 1.15rem;
    align-items: start;
    position: relative;
    overflow: hidden;
    padding: 1rem 1.1rem 1rem 0.9rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.96)),
        rgba(255, 255, 255, 0.92);
}

.schedule-entry.is-live {
    border-color: rgba(190, 30, 45, 0.26);
    box-shadow: 0 26px 56px rgba(190, 30, 45, 0.14);
}

.schedule-entry-time-rail {
    position: relative;
    align-self: stretch;
}

.schedule-entry-time-rail::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(190, 30, 45, 0.12), rgba(190, 30, 45, 0.04));
}

.schedule-entry-time-dot {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    transform: translateX(-50%);
    background: rgba(190, 30, 45, 0.82);
    box-shadow: 0 0 0 6px rgba(190, 30, 45, 0.06);
}

.schedule-entry-time {
    display: grid;
    gap: 0.18rem;
    align-content: start;
    padding: 0.95rem 0.9rem 0.9rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(190, 30, 45, 0.08), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(190, 30, 45, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.schedule-entry-time-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(142, 22, 33, 0.76);
}

.schedule-entry-time strong {
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 0.92;
    color: var(--red);
    letter-spacing: -0.04em;
}

.schedule-entry-time-range {
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.schedule-entry-body {
    display: grid;
    gap: 0.75rem;
    align-content: start;
    padding: 0.2rem 0;
}

.schedule-entry-head {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.schedule-entry-badge,
.schedule-entry-state {
    display: inline-flex;
    align-items: center;
    min-height: 1.8rem;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.schedule-entry-badge {
    background: rgba(190, 30, 45, 0.1);
    color: var(--red-deep);
}

.schedule-entry-state {
    background: rgba(22, 24, 29, 0.06);
    color: var(--text-soft);
}

.schedule-entry-state.is-live {
    background: rgba(190, 30, 45, 0.14);
    color: var(--red-deep);
}

.schedule-entry-state.is-soon {
    background: rgba(23, 50, 87, 0.1);
    color: var(--navy);
}

.schedule-entry h3 {
    margin: 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(1.42rem, 2vw, 1.9rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
    max-width: 20ch;
}

.schedule-entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.schedule-entry-meta-chip {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.42rem;
    min-height: 2.3rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(190, 30, 45, 0.06);
    border: 1px solid rgba(190, 30, 45, 0.1);
}

.schedule-entry-meta-label,
.schedule-entry-note-label {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--red-deep);
}

.schedule-entry-meta-chip strong {
    font-size: 0.96rem;
    color: var(--text);
}

.schedule-entry-note-box {
    padding: 0.85rem 0.95rem;
    border-radius: 1.15rem;
    background: rgba(23, 50, 87, 0.04);
    border: 1px solid rgba(23, 50, 87, 0.08);
}

.schedule-entry-note,
.schedule-empty-card p {
    margin: 0.35rem 0 0;
    color: var(--text-soft);
    line-height: 1.72;
}

.schedule-entry.is-live .schedule-entry-time {
    background: linear-gradient(180deg, rgba(190, 30, 45, 0.14), rgba(255, 255, 255, 0.98));
    border-color: rgba(190, 30, 45, 0.16);
}

.schedule-entry.is-live .schedule-entry-time-dot {
    background: var(--red);
    box-shadow: 0 0 0 8px rgba(190, 30, 45, 0.1);
}

.toggle-bar,
.tab-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.toggle-button,
.tab-chip,
.brochure-nav {
    appearance: none;
    min-height: 3.15rem;
    border: 1px solid rgba(22, 24, 29, 0.1);
    border-radius: 999px;
    padding: 0.8rem 1.3rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.toggle-button:hover,
.tab-chip:hover,
.brochure-nav:hover {
    transform: translateY(-1px);
    border-color: rgba(190, 30, 45, 0.22);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.toggle-button.is-active,
.tab-chip.is-active {
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 18px 30px rgba(190, 30, 45, 0.22);
}

.message-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.3rem;
    align-items: stretch;
}

.message-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 18.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.45rem 1.35rem 1.3rem;
    text-align: left;
    background:
        linear-gradient(180deg, transparent 0%, rgba(22, 24, 29, 0.78) 100%),
        linear-gradient(135deg, rgba(190, 30, 45, 0.9), rgba(23, 50, 87, 0.78));
    color: #fff;
}

.message-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 25%, transparent 25% 100%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 13rem);
}

.message-card > * {
    position: relative;
    z-index: 1;
}

.message-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.85rem;
    font-weight: 700;
}

.message-card-copy {
    display: grid;
    gap: 0.7rem;
    width: 100%;
    margin-top: 1.05rem;
}

.message-card h3 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(1.42rem, 1.82vw, 1.72rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
    word-break: keep-all;
    line-break: strict;
}

.message-card p {
    margin: 0;
    max-width: 27ch;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.72;
    word-break: keep-all;
    line-break: strict;
}

.message-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 1.1rem;
    font-size: 0.92rem;
    font-weight: 700;
}

.message-card-cta::before {
    content: "▶";
    font-size: 0.8rem;
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.35rem;
    align-items: start;
}

.story-card,
.story-proof,
.share-card {
    padding: 1.6rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(22, 24, 29, 0.06);
    box-shadow: 0 20px 50px rgba(18, 24, 39, 0.08);
    backdrop-filter: blur(18px);
}

.story-card h2,
.share-card h2 {
    margin: 0.85rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.story-emphasis {
    margin: 1.3rem 0 0;
    padding-left: 1rem;
    border-left: 4px solid var(--red);
    font-size: 1.22rem;
    line-height: 1.75;
    color: var(--text);
}

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

.proof-card strong {
    display: block;
    font-size: 1.55rem;
}

.story-note {
    margin-top: 1rem;
    padding: 1.2rem 1.25rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(190, 30, 45, 0.08), rgba(213, 169, 74, 0.18));
}

.story-note h3 {
    margin: 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: 1.35rem;
}

.story-note p {
    margin-top: 0.7rem;
    line-height: 1.9;
}

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

.pillar-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 100%;
}

.pillar-number {
    background: rgba(190, 30, 45, 0.12);
    color: var(--red-deep);
}

.pillar-card h3 {
    font-size: 1.4rem;
}

.pillar-card ul,
.plan-card ul,
.modal-copy ul,
.brochure-sheet ul {
    margin: 0.25rem 0 0;
    padding-left: 1.15rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.plan-panel {
    margin-top: 1.25rem;
    padding: 1.35rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(22, 24, 29, 0.06);
    box-shadow: 0 24px 50px rgba(18, 24, 39, 0.08);
}

.plan-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
}

.plan-title {
    font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.plan-lead {
    margin-top: 0.7rem;
    color: var(--text-soft);
    line-height: 1.85;
}

.plan-stat {
    min-width: 11rem;
    padding: 1.15rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(190, 30, 45, 0.9), rgba(143, 19, 33, 0.95));
    color: #fff;
    text-align: center;
}

.plan-stat strong {
    display: block;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: 2rem;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.plan-card h3 {
    margin: 0.75rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: 1.25rem;
}

.plan-card-label {
    min-height: 1.8rem;
    padding: 0.22rem 0.65rem;
    background: rgba(190, 30, 45, 0.09);
    color: var(--red-deep);
    border: 1px solid rgba(190, 30, 45, 0.14);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: none;
}

.plan-card p {
    margin: 0.6rem 0 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.section-brochure {
    background:
        linear-gradient(180deg, rgba(190, 30, 45, 0.05), transparent 38%),
        rgba(255, 255, 255, 0.14);
}

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

.brochure-card {
    appearance: none;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brochure-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(18, 24, 39, 0.1);
    border-color: rgba(190, 30, 45, 0.14);
}

.brochure-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.brochure-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(190, 30, 45, 0.9), rgba(143, 19, 33, 0.96));
    color: #fff;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: 0.95rem;
}

.brochure-card h3 {
    margin: 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: 1.45rem;
}

.brochure-list-preview {
    margin-top: 0.9rem;
    padding-left: 1rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.share-card {
    background:
        linear-gradient(135deg, rgba(190, 30, 45, 0.92), rgba(23, 50, 87, 0.94));
    color: #fff;
}

.share-card p {
    color: rgba(255, 255, 255, 0.82);
}

.share-feedback {
    min-height: 1.4rem;
}

.site-footer {
    padding: 2rem 0 2.8rem;
    border-top: 1px solid rgba(22, 24, 29, 0.08);
    background: rgba(255, 255, 255, 0.54);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-soft);
}

.footer-layout strong {
    display: block;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    color: var(--text);
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.7rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(190, 30, 45, 0.16);
    background: rgba(255, 255, 255, 0.74);
    color: var(--red-deep);
    font-size: 0.86rem;
    font-weight: 800;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    background: var(--red);
    color: #fff;
}

.modal-shell {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-shell.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 21, 0.62);
    backdrop-filter: blur(8px);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(90vh, 56rem);
    overflow: auto;
    padding: 1.5rem;
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 30px 70px rgba(8, 15, 28, 0.28);
}

.modal-panel-wide {
    width: min(900px, 100%);
}

.video-modal-panel {
    width: min(420px, calc((100vh - 3rem) * 9 / 16), calc(100vw - 2rem));
    max-height: none;
    overflow: visible;
    padding: 0.75rem;
}

.video-modal-panel .modal-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    margin-left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #111111;
    font-size: 1.65rem;
    line-height: 1;
    text-align: center;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.video-modal-panel .modal-close:hover,
.video-modal-panel .modal-close:focus-visible {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}

.modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border: 0;
    border-radius: 999px;
    background: rgba(22, 24, 29, 0.08);
    font-size: 1.6rem;
    cursor: pointer;
}

.modal-copy h3 {
    margin: 0.85rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.04;
}

.modal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    color: var(--red-deep);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.modal-summary {
    margin: 1rem 0 0;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.9;
}

.modal-copy p + p {
    margin-top: 0.9rem;
}

.video-modal-copy {
    padding-inline: 0.15rem;
}

.video-modal-copy h3 {
    margin: 0.8rem 0 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    line-height: 1.08;
}

.video-modal-note {
    margin: 0.75rem 0 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.video-frame-wrap {
    margin-top: 0;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 1.45rem;
    background: #0f1116;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.video-frame-wrap iframe,
.video-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.brochure-modal-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.brochure-counter {
    margin: 0;
    color: var(--text-soft);
    font-weight: 700;
}

.brochure-sheet {
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(190, 30, 45, 0.06), rgba(213, 169, 74, 0.12)),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(22, 24, 29, 0.08);
}

.brochure-sheet-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.brochure-sheet h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.brochure-sheet-number {
    display: inline-grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    background: var(--red);
    color: #fff;
    font-family: "Paperlogy", "Pretendard", sans-serif;
}

.brochure-sheet p {
    color: var(--text-soft);
    line-height: 1.8;
}

.brochure-sheet-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.brochure-sheet-section {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(22, 24, 29, 0.06);
}

.brochure-sheet-section h4 {
    margin: 0;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: 1.15rem;
}

.brochure-sheet-section p {
    margin: 0.55rem 0 0;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1080px) {
    .nav-inner {
        gap: 0.7rem;
    }

    .nav-links {
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .social-link {
        width: 2.15rem;
        height: 2.15rem;
    }

    .hero-grid,
    .story-layout,
    .plan-intro,
    .schedule-board {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-areas:
            "copy"
            "visual";
    }

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

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

    .hero-copy {
        padding-top: 0;
    }

    .hero-visual {
        grid-template-columns: minmax(0, 1fr) 13rem;
        margin-top: -0.1rem;
    }

    .hero-portrait-stage {
        min-height: 21rem;
        justify-content: flex-end;
    }

    .hero-float-card {
        width: 100%;
    }

    .schedule-feature-card {
        position: static;
    }

}

@media (max-width: 820px) {
    :root {
        --section-gap: 4.5rem;
    }

    .site-nav {
        background: rgba(255, 250, 246, 0.94);
        backdrop-filter: blur(18px);
    }

    .nav-toggle {
        display: inline-block;
        position: relative;
        z-index: 3;
        width: 3.35rem;
        height: 3.35rem;
        border: 2px solid rgba(22, 24, 29, 0.12);
        border-radius: 1.2rem;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    }

    .nav-socials {
        margin-left: auto;
        gap: 0.35rem;
        position: relative;
        z-index: 3;
    }

    .social-link {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.72rem;
        box-shadow: 0 10px 18px rgba(17, 24, 39, 0.08);
    }

    .nav-toggle span {
        width: 1.45rem;
        height: 2.5px;
        border-radius: 999px;
        background: #111827;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        margin-left: 0;
        display: none;
        grid-auto-rows: min-content;
        align-content: start;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 1.6rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(190, 30, 45, 0.12);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
        max-height: min(32rem, calc(100vh - 7.5rem));
        overflow: auto;
        z-index: 4;
    }

    .nav-links::before {
        content: "MENU";
        display: block;
        margin: 0 0 0.1rem;
        color: rgba(142, 22, 33, 0.72);
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 0.18em;
    }

    .nav-links.is-open {
        display: grid;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 3.8rem;
        padding: 0.95rem 1rem;
        border-radius: 1.25rem;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(22, 24, 29, 0.08);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
        color: var(--text);
        font-size: 1.05rem;
        font-weight: 700;
    }

    .nav-links a::after {
        position: static;
        width: auto;
        height: auto;
        background: none;
        transform: none;
        opacity: 0.42;
        color: var(--red);
        content: "›";
        font-size: 1.35rem;
        line-height: 1;
    }

    .nav-links a.is-active,
    .nav-links a:hover {
        background: linear-gradient(135deg, rgba(190, 30, 45, 0.1), rgba(255, 255, 255, 0.98));
        border-color: rgba(190, 30, 45, 0.16);
        color: var(--red-deep);
    }

    .hero {
        padding-top: 2.6rem;
    }

    .hero-backdrop {
        inset: 0;
        clip-path: none;
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.65rem, 13vw, 4.9rem);
    }

    .hero-badges span {
        font-size: 0.88rem;
    }

    .hero-socials {
        gap: 0.45rem;
    }

    .hero-socials > span,
    .hero-socials a {
        min-height: 2.25rem;
        font-size: 0.84rem;
    }

    .hero-visual {
        grid-template-columns: 1fr;
        grid-template-areas:
            "portrait"
            "info"
            "metrics";
        row-gap: 0.85rem;
        padding-bottom: 0;
    }

    .hero-portrait-stage {
        justify-content: center;
        min-height: auto;
    }

    .hero-portrait-shell {
        width: min(24rem, 92vw);
    }

    .hero-portrait-large {
        transform: none;
    }

    .hero-float-card {
        width: 100%;
        margin-top: 0;
    }

    .hero-metrics {
        width: 100%;
        margin-top: 0;
    }

    .hero-metrics,
    .proof-grid,
    .plan-grid,
    .brochure-sheet-grid {
        grid-template-columns: 1fr;
    }

    .message-grid,
    .pillar-grid,
    .brochure-grid {
        grid-template-columns: 1fr;
    }

    .schedule-entry {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 0.95rem;
    }

    .schedule-entry-time-rail {
        display: none;
    }

    .schedule-entry-time {
        display: flex;
        justify-content: start;
        align-items: baseline;
        align-content: center;
        gap: 0.5rem;
        padding: 0.9rem 1rem;
        flex-wrap: wrap;
    }

    .schedule-feature-points li {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .schedule-entry h3 {
        max-width: 100%;
    }

    .schedule-entry-meta-chip {
        width: 100%;
        border-radius: 1rem;
    }

    .schedule-date-guide {
        display: block;
    }

    .schedule-date-tabs {
        flex-wrap: nowrap;
        gap: 0.7rem;
        margin-inline: -0.1rem;
        padding: 0 0.1rem 0.35rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .schedule-date-tabs::-webkit-scrollbar {
        display: none;
    }

    .schedule-day-chip {
        flex: 0 0 10rem;
        width: 10rem;
        min-width: 10rem;
        min-height: 4.15rem;
        padding: 0.9rem 1rem;
        scroll-snap-align: start;
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    }

    .schedule-day-chip span {
        font-size: 1.1rem;
    }

    .schedule-day-chip small {
        font-size: 0.86rem;
    }

    .footer-layout,
    .brochure-modal-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-modal-panel {
        width: min(100%, calc((100vh - 2.5rem) * 9 / 16));
        padding: 0.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ticker-marquee {
        animation: none;
    }

    .reveal,
    .button,
    .toggle-button,
    .tab-chip,
    .brochure-card {
        transition: none;
    }
}
