/* Gen-C Lifestyle v2 — International Cultural Festival Magazine */

:root {
    --ink: #1a1a1a;
    --ink-soft: #3a3a3a;
    --ink-mute: #6b6b6b;
    --paper: #faf7f2;
    --paper-soft: #f3eee5;
    --line: #ddd6c8;
    --accent: #b8472a;
    --accent-deep: #8d3318;
    --teal: #1f5d5b;
    --gold: #c08a3e;
    --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', 'Noto Serif SC', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.gc2-display {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.08;
}

.gc2-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}
.gc2-container-wide { max-width: 1480px; }

/* ============ Top marquee bar ============ */
.gc2-topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 0;
    overflow: hidden;
}
.gc2-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.gc2-topbar span { opacity: 0.85; white-space: nowrap; }
.gc2-topbar a { color: var(--paper); opacity: 0.9; }
.gc2-topbar a:hover { opacity: 1; }

/* ============ Header ============ */
.gc2-header {
    position: sticky; top: 0; z-index: 50;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}
.gc2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    gap: 32px;
}
.gc2-brand { display: flex; align-items: center; gap: 14px; }
.gc2-brand-logo { height: 44px; width: auto; }
.gc2-brand-text { display: flex; flex-direction: column; line-height: 1; }
.gc2-brand-text b {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.02em;
}
.gc2-brand-text small {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 4px;
}
.gc2-nav {
    display: flex; align-items: center; gap: 36px;
}
.gc2-nav a {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    position: relative;
    padding: 6px 0;
    transition: color 160ms ease;
}
.gc2-nav a:hover { color: var(--ink); }
.gc2-nav a.is-active { color: var(--ink); }
.gc2-nav a.is-active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--accent);
}
.gc2-actions { display: flex; align-items: center; gap: 18px; }
.gc2-lang {
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    border: 1px solid var(--ink); padding: 8px 14px; border-radius: 999px;
    transition: background 160ms ease, color 160ms ease;
}
.gc2-lang:hover { background: var(--ink); color: var(--paper); }
.gc2-menu-toggle {
    display: none; background: none; padding: 0; cursor: pointer;
    border: 1px solid var(--ink); border-radius: 999px;
}
.gc2-menu-toggle span {
    display: block; width: 16px; height: 2px; background: var(--ink);
    transition: transform 160ms ease, opacity 160ms ease;
}
.gc2-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.gc2-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gc2-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ Buttons ============ */
.gc2-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 26px;
    font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
    border: 1px solid transparent; border-radius: 0;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.gc2-btn::after {
    content: "→"; font-size: 14px; letter-spacing: 0; transition: transform 200ms ease;
}
.gc2-btn:hover::after { transform: translateX(4px); }
.gc2-btn-primary { background: var(--ink); color: var(--paper); }
.gc2-btn-primary:hover { background: var(--accent); }
.gc2-btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.gc2-btn-secondary:hover { background: var(--ink); color: var(--paper); }
.gc2-btn-light { background: var(--paper); color: var(--ink); }
.gc2-btn-ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.gc2-btn-ghost:hover { background: var(--paper); color: var(--ink); }

/* ============ Hero ============ */
.gc2-hero {
    position: relative;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}
.gc2-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    min-height: calc(100vh - 130px);
}
.gc2-hero-copy {
    padding: 80px 64px 64px;
    display: flex; flex-direction: column; justify-content: space-between;
    background: var(--paper);
}
.gc2-hero-edition {
    display: flex; align-items: center; gap: 18px;
    font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute);
}
.gc2-hero-edition::before {
    content: ""; width: 38px; height: 1px; background: var(--ink);
}
.gc2-hero-title {
    margin: 36px 0 28px;
    font-size: clamp(44px, 5.2vw, 64px);
    color: var(--ink);
}
.gc2-hero-title em {
    display: block; white-space: nowrap; font-style: normal; color: var(--accent);
}
.gc2-hero-lead {
    font-size: 17px; line-height: 1.65; color: var(--ink-soft);
    max-width: 36ch; margin: 0 0 36px;
}
.gc2-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.gc2-hero-chapters {
    margin-top: 64px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gc2-hero-chapters > div { display: flex; flex-direction: column; gap: 4px; }
.gc2-hero-chapters b {
    font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--accent);
}
.gc2-hero-chapters span {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
}
.gc2-hero-media {
    position: relative; overflow: hidden;
    background: #1a1a1a;
}
.gc2-hero-media img {
    width: 100%; height: 100%; object-fit: cover;
}
.gc2-hero-stamp {
    position: absolute; top: 32px; right: 32px;
    background: rgba(255,255,255,0.92); color: var(--ink);
    padding: 14px 18px; border-radius: 999px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.gc2-hero-caption {
    position: absolute; left: 32px; bottom: 32px; right: 32px;
    color: var(--paper);
    display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.gc2-hero-caption b {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; display: block;
}
.gc2-hero-caption small {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85;
}

/* ============ Section frame ============ */
.gc2-section { padding: 120px 0; }
.gc2-section-soft { background: var(--paper-soft); }
.gc2-section-dark { background: var(--ink); color: var(--paper); }
.gc2-section-dark .gc2-eyebrow,
.gc2-section-dark .gc2-section-head p { color: rgba(250,247,242,0.7); }

.gc2-chapter {
    display: flex; align-items: baseline; gap: 16px;
    margin-bottom: 36px;
}
.gc2-chapter-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; font-weight: 500; color: var(--accent);
    line-height: 1;
}
.gc2-chapter-rule { flex: 1; height: 1px; background: var(--line); }
.gc2-chapter-label {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute);
}

.gc2-eyebrow {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute);
    margin: 0 0 14px;
}
.gc2-section-head { max-width: 760px; margin-bottom: 64px; }
.gc2-section-head h2 {
    margin: 0 0 18px;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.005em;
}
.gc2-section-head p {
    font-size: 17px; color: var(--ink-soft); margin: 0;
    max-width: 56ch;
}

/* ============ Manifesto / editorial lead ============ */
.gc2-manifesto {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    align-items: start;
}
.gc2-manifesto-quote {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-style: italic;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.25;
    color: var(--ink);
}
.gc2-manifesto-quote::before {
    content: "“"; display: block;
    font-size: 96px; color: var(--accent); line-height: 0.6;
    margin-bottom: 12px;
}
.gc2-manifesto-body {
    columns: 2; column-gap: 48px;
    font-size: 16px; color: var(--ink-soft); line-height: 1.8;
}
.gc2-manifesto-body p { margin: 0 0 18px; }

/* ============ Editorial image grid ============ */
.gc2-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
    margin-top: 56px;
}
.gc2-tile {
    position: relative; overflow: hidden; background: var(--ink);
    color: var(--paper);
    grid-column: span 2; grid-row: span 2;
}
.gc2-tile-wide { grid-column: span 3; grid-row: span 2; }
.gc2-tile-tall { grid-column: span 2; grid-row: span 3; }
.gc2-tile-square { grid-column: span 2; grid-row: span 2; }
.gc2-tile img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 600ms ease;
}
.gc2-tile:hover img { transform: scale(1.04); }
.gc2-tile-meta {
    position: absolute; left: 18px; bottom: 18px; right: 18px;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.gc2-tile-meta b {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 500; display: block; color: var(--paper);
}
.gc2-tile-meta small {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85;
}
.gc2-tile::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
}

/* ============ Brand fit editorial table ============ */
.gc2-fit-list {
    border-top: 1px solid var(--line);
}
.gc2-fit-row {
    display: grid;
    grid-template-columns: 80px 1fr 2fr 1fr;
    gap: 32px;
    align-items: baseline;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    transition: background 200ms ease, padding 200ms ease;
}
.gc2-fit-row:hover { background: var(--paper-soft); padding-left: 16px; padding-right: 16px; }
.gc2-fit-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; color: var(--accent); line-height: 1;
}
.gc2-fit-row h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-size: 28px; font-weight: 500; line-height: 1.15;
}
.gc2-fit-row p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
.gc2-fit-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.gc2-fit-tags span {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-mute); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px;
}

/* ============ Feature spread (summit etc) ============ */
.gc2-feature-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.gc2-feature-media {
    position: relative; aspect-ratio: 4 / 5;
    overflow: hidden; background: var(--ink-soft);
}
.gc2-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.gc2-feature-stamp {
    position: absolute; left: 24px; top: 24px;
    background: var(--paper); color: var(--ink);
    padding: 10px 16px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.gc2-feature-copy h2 {
    margin: 24px 0 24px;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500; font-size: clamp(32px, 3.5vw, 48px); line-height: 1.15;
}
.gc2-feature-facts {
    display: flex; flex-wrap: wrap; gap: 28px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.gc2-feature-facts span {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
}

/* ============ Journey ============ */
.gc2-journey {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.gc2-journey-intro h2 {
    margin: 18px 0 22px;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500; font-size: clamp(34px, 4vw, 52px); line-height: 1.12;
    color: var(--paper);
}
.gc2-journey-intro p { color: rgba(250,247,242,0.78); font-size: 17px; max-width: 42ch; }
.gc2-markets {
    margin-top: 32px;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.gc2-markets span {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    border: 1px solid rgba(250,247,242,0.3); padding: 8px 14px; border-radius: 999px;
}
.gc2-steps { display: flex; flex-direction: column; }
.gc2-step {
    display: grid; grid-template-columns: 60px 1fr; gap: 28px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(250,247,242,0.15);
}
.gc2-step:last-child { border-bottom: none; }
.gc2-step-num {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--accent);
    line-height: 1; padding-top: 4px;
}
.gc2-step h3 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500; font-size: 24px; color: var(--paper);
}
.gc2-step p { margin: 0; font-size: 15px; color: rgba(250,247,242,0.72); line-height: 1.6; }

/* ============ Proof ============ */
.gc2-proof-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.gc2-proof-card {
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
}
.gc2-proof-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gc2-proof-card-body { padding: 26px 28px 30px; }
.gc2-proof-card h3 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500; font-size: 22px;
}
.gc2-proof-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }

/* ============ Newsroom ============ */
.gc2-news-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
    align-items: start;
}
.gc2-news-lead {
    grid-row: span 1;
}
.gc2-news-lead img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.gc2-news-card {
    display: flex; flex-direction: column; gap: 14px;
}
.gc2-news-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gc2-news-meta {
    display: flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute);
}
.gc2-news-meta b { color: var(--accent); font-weight: 600; }
.gc2-news-card h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500;
    font-size: 22px; line-height: 1.25;
}
.gc2-news-lead h3 { font-size: 32px; }
.gc2-news-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }

/* ============ Apply CTA band ============ */
.gc2-apply-band {
    background: var(--ink); color: var(--paper);
    padding: 96px 0;
    position: relative; overflow: hidden;
}
.gc2-apply-inner {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
}
.gc2-apply-inner h2 {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 60px); line-height: 1.1; margin: 0 0 18px;
}
.gc2-apply-inner h2 em { font-style: italic; color: var(--accent); display: block; }
.gc2-apply-inner p { color: rgba(250,247,242,0.78); font-size: 17px; max-width: 50ch; margin: 0; }
.gc2-apply-actions { display: flex; flex-direction: column; gap: 14px; }

/* ============ Footer ============ */
.gc2-footer {
    background: var(--paper-soft);
    color: var(--ink);
    padding: 80px 0 28px;
    border-top: 1px solid var(--line);
}
.gc2-footer-main {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line);
}
.gc2-footer-logo { height: 44px; margin-bottom: 20px; }
.gc2-footer-main p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; margin: 0 0 12px; }
.gc2-footer-main h4 {
    margin: 0 0 18px;
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute);
}
.gc2-footer-links { display: flex; flex-direction: column; gap: 10px; }
.gc2-footer-links a {
    font-size: 14.5px; color: var(--ink);
    border-bottom: 1px solid transparent; padding-bottom: 2px;
    transition: border-color 160ms ease;
    align-self: flex-start;
}
.gc2-footer-links a:hover { border-bottom-color: var(--accent); }
.gc2-footer-bottom {
    padding-top: 24px;
    display: flex; gap: 28px; flex-wrap: wrap;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
}

/* ============ Page hero (sub pages) ============ */
.gc2-page-hero {
    padding: 100px 0 80px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}
.gc2-page-hero .gc2-eyebrow { color: var(--accent); }
.gc2-page-hero h1 {
    margin: 0 0 22px;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500;
    font-size: clamp(48px, 6vw, 70px); line-height: 1.05;
}
.gc2-page-hero p { font-size: 18px; color: var(--ink-soft); max-width: 64ch; margin: 0; }
.gc2-breadcrumb {
    display: flex; gap: 10px; font-size: 12px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--ink-mute); margin-bottom: 32px;
}
.gc2-breadcrumb a:hover { color: var(--accent); }

/* ============ Project / news list ============ */
.gc2-list-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.gc2-list-card {
    display: flex; flex-direction: column; gap: 18px;
}
.gc2-list-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gc2-list-card h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500; font-size: 24px; line-height: 1.25;
}
.gc2-list-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
.gc2-list-card a:hover h3 { color: var(--accent); }

/* ============ Detail layout ============ */
.gc2-detail {
    display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 80px;
    align-items: start;
}
.gc2-detail-main h1 {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500; font-size: clamp(36px, 4vw, 56px); line-height: 1.12;
    margin: 0 0 28px;
}
.gc2-detail-cover {
    width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
    margin: 0 0 36px;
}
.gc2-rich-content { font-size: 17px; line-height: 1.85; color: var(--ink-soft); }
.gc2-rich-content h2, .gc2-rich-content h3 {
    color: var(--ink);
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500;
}
.gc2-rich-content h2 { font-size: 30px; margin: 48px 0 16px; }
.gc2-rich-content h3 { font-size: 22px; margin: 36px 0 12px; }
.gc2-rich-content img { margin: 28px 0; }
.gc2-aside {
    position: sticky; top: 100px;
    border-top: 1px solid var(--ink);
    padding-top: 28px;
}
.gc2-aside h2 {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    margin: 0 0 24px;
}
.gc2-aside a {
    display: block; padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-size: 18px; line-height: 1.35;
    transition: color 160ms ease, padding-left 200ms ease;
}
.gc2-aside a:hover { color: var(--accent); padding-left: 8px; }

/* ============ Application form ============ */
.gc2-form-layout {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start;
}
.gc2-application-form {
    display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.gc2-field { display: flex; flex-direction: column; gap: 8px; }
.gc2-field-wide { grid-column: 1 / -1; }
.gc2-field label {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute);
}
.gc2-field input, .gc2-field select, .gc2-field textarea {
    font-family: inherit; font-size: 16px;
    padding: 14px 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    transition: border-color 160ms ease, background 160ms ease;
}
.gc2-field input:focus, .gc2-field select:focus, .gc2-field textarea:focus {
    outline: none; border-color: var(--ink); background: var(--white);
}
.gc2-field textarea { min-height: 140px; resize: vertical; }
.gc2-consent {
    grid-column: 1 / -1;
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 13.5px; color: var(--ink-soft);
}
.gc2-consent a { border-bottom: 1px solid var(--ink-mute); }
.gc2-submit-row { grid-column: 1 / -1; display: flex; gap: 16px; flex-wrap: wrap; }
.gc2-form-message {
    grid-column: 1 / -1; padding: 14px 18px; font-size: 14px;
}
.gc2-form-message-success { background: #1f5d5b; color: var(--paper); }
.gc2-form-message-error { background: #b8472a; color: var(--paper); }
.gc2-form-side {
    background: var(--paper-soft);
    padding: 36px;
    border: 1px solid var(--line);
}
.gc2-form-side img {
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 24px;
}
.gc2-form-side h2 {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500; font-size: 26px; margin: 0 0 14px; line-height: 1.2;
}
.gc2-form-side p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* ============ Contact grid ============ */
.gc2-contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.gc2-contact-card {
    padding: 36px;
    border: 1px solid var(--line); background: var(--paper);
    display: flex; flex-direction: column; gap: 14px;
    transition: background 200ms ease, border-color 200ms ease;
}
.gc2-contact-card:hover { background: var(--paper-soft); border-color: var(--ink); }
.gc2-contact-card h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-weight: 500; font-size: 26px;
}
.gc2-contact-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

/* ============ Reveal animation ============ */
[data-gc2-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
[data-gc2-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    [data-gc2-reveal] { opacity: 1; transform: none; transition: none; }
    .gc2-tile img { transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
    .gc2-hero-grid { grid-template-columns: minmax(0, 1fr); min-height: auto; }
    .gc2-hero-copy { padding: 56px 32px; }
    .gc2-hero-media { width: 100%; min-width: 0; aspect-ratio: 4 / 3; min-height: 340px; }
    .gc2-manifesto { grid-template-columns: 1fr; gap: 40px; }
    .gc2-manifesto-body { columns: 1; }
    .gc2-feature-spread { grid-template-columns: 1fr; gap: 40px; }
    .gc2-journey { grid-template-columns: 1fr; gap: 40px; }
    .gc2-proof-grid { grid-template-columns: 1fr; }
    .gc2-news-grid { grid-template-columns: 1fr; }
    .gc2-apply-inner { grid-template-columns: 1fr; gap: 32px; }
    .gc2-footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .gc2-list-grid { grid-template-columns: 1fr 1fr; }
    .gc2-detail { grid-template-columns: 1fr; }
    .gc2-aside { position: static; }
    .gc2-form-layout { grid-template-columns: 1fr; gap: 40px; }
    .gc2-contact-grid { grid-template-columns: 1fr; }
    .gc2-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gc2-tile, .gc2-tile-wide, .gc2-tile-tall, .gc2-tile-square { grid-column: span 1; grid-row: span 1; }
    .gc2-tile-wide { grid-column: span 2; }
}
@media (max-width: 760px) {
    .gc2-container { padding: 0 20px; }
    .gc2-topbar { font-size: 11px; }
    .gc2-topbar-inner span:nth-child(2) { display: none; }
    .gc2-topbar-inner span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
    .gc2-topbar-inner a { flex-shrink: 0; }
    .gc2-header-inner { height: 70px; }
    .gc2-brand-logo { height: 36px; }
    .gc2-nav {
        display: none; position: absolute; top: 70px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--paper); border-bottom: 1px solid var(--line);
        padding: 16px 20px 24px;
    }
    .gc2-nav.is-open { display: flex; }
    .gc2-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
    .gc2-nav a:last-child { border-bottom: none; }
    .gc2-menu-toggle { display: inline-flex; flex-direction: column; gap: 4px; min-height: 44px; min-width: 44px; align-items: center; justify-content: center; }
    .gc2-actions { gap: 10px; }
    .gc2-actions .gc2-btn { display: none; }
    .gc2-section { padding: 72px 0; }
    .gc2-hero-copy { padding: 40px 20px; }
    .gc2-hero-chapters { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
    .gc2-fit-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
    .gc2-application-form { grid-template-columns: 1fr; }
    .gc2-mosaic { grid-template-columns: 1fr; }
    .gc2-tile-wide { grid-column: span 1; }
    .gc2-list-grid { grid-template-columns: 1fr; }
    .gc2-footer-main { grid-template-columns: 1fr; }
    .gc2-page-hero { padding: 64px 0 48px; }
    .gc2-apply-band { padding: 64px 0; }
}

/* ---------- 首页真实现场：整齐三列等高网格（替代交错拼贴） ---------- */
.gc2-scene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.gc2-scene-grid .gc2-tile {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
}
.gc2-scene-more { margin-top: 36px; text-align: center; }
@media (max-width: 1000px) {
    .gc2-scene-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .gc2-scene-grid { grid-template-columns: 1fr; }
}
