/* ========================================================
   Sub Pages — Common Editorial Style
   ======================================================== */

/* === Page Hero === */
.page-hero {
    padding: 180px 0 90px;
    background: var(--paper);
    border-bottom: 1px solid var(--gray-line);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    right: -200px;
    font-weight: 800;
    font-size: 36vw;
    color: var(--gray-line);
    line-height: 0.85;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    opacity: 0.4;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--gray);
}

.page-breadcrumb a:hover { color: var(--gold-deep); }

.page-title {
    font-weight: 800;
    font-size: clamp(40px, 6vw, 96px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--black);
    margin-bottom: 32px;
    max-width: 1100px;
    word-break: keep-all;
}

.page-title em {
    font-style: normal;
    color: var(--gold-deep);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.page-title em::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 4px;
    height: 30%;
    background: var(--gold);
    z-index: -1;
    border-radius: 2px;
}

.page-title .outline {
    color: var(--gold-deep);
    font-weight: 900;
}

.page-lead {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    color: var(--text);
    max-width: 760px;
}

.page-meta {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-line);
    flex-wrap: wrap;
}

.page-meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-meta-item label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.page-meta-item strong {
    font-size: 14px;
    color: var(--black);
    font-weight: 700;
}

/* === Generic content sections === */
.content-section {
    padding: 120px 0;
}

.section-head-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
}

.section-head-grid h2 {
    font-weight: 800;
    font-size: clamp(32px, 4.2vw, 64px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--black);
    word-break: keep-all;
}

.section-head-grid h2 em {
    font-style: normal;
    color: var(--gold-deep);
}

.section-head-grid p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 480px;
}

/* === CEO / About specific === */
.ceo-cinematic {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #1A1A1A 0%, #2B2520 100%);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

.ceo-cinematic-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 32vw;
    color: rgba(212, 162, 76, 0.08);
    line-height: 0.85;
    letter-spacing: -0.05em;
    pointer-events: none;
}

.ceo-cinematic-inner {
    position: relative;
    z-index: 2;
}

.ceo-cinematic .eyebrow { color: var(--gold-bright); }
.ceo-cinematic .eyebrow::before { background: var(--gold-bright); }

.ceo-cinematic h1 {
    font-family: var(--f-sans);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 92px);
    line-height: 1.08;
    color: var(--paper);
    letter-spacing: -0.025em;
    margin: 32px 0 48px;
    max-width: 1100px;
    word-break: keep-all;
}

.ceo-cinematic h1 em {
    font-style: normal;
    color: var(--gold-bright);
    position: relative;
}

.ceo-tagline {
    font-family: var(--f-sans);
    font-size: clamp(17px, 1.5vw, 21px);
    color: rgba(252, 250, 246, 0.7);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 60px;
}

.ceo-cinematic-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: end;
    margin-top: 80px;
}

.ceo-portrait-large {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #2B2520 0%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.ceo-portrait-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ceo-portrait-large::before {
    content: '李 SEOJIN LEE';
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold-bright);
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

.ceo-portrait-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.ceo-stats-card {
    background: linear-gradient(180deg, #D4A24C 0%, #A87938 100%);
    color: var(--ink);
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.ceo-stats-card h3 {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 600;
    color: var(--ink);
}

.ceo-stats-list {
    list-style: none;
}

.ceo-stats-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.18);
    font-family: var(--f-sans);
    font-size: 14px;
    align-items: center;
    color: var(--ink);
    font-weight: 500;
}

.ceo-stats-list li:last-child { border-bottom: none; }

.ceo-stats-list .num {
    font-family: var(--f-sans);
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}

/* === Tabs === */
.tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--gray-line);
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.tabs button {
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
}

.tabs button:hover {
    color: var(--black);
}

.tabs button.active {
    color: var(--black);
    border-bottom-color: var(--gold);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s var(--ease);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.bio-card {
    background: var(--gray-soft);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.bio-list {
    list-style: none;
}

.bio-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-line);
    font-size: 15px;
    align-items: start;
}

.bio-list li:last-child { border-bottom: none; }

.bio-list strong {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    padding-top: 4px;
}

.bio-list span {
    color: var(--text);
    line-height: 1.6;
}

/* === Timeline === */
.timeline {
    padding: 120px 0;
    background: var(--white);
}

.timeline-list {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--gold) 90%, transparent);
}

.timeline-item {
    position: relative;
    padding: 24px 0 48px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 32px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 1px var(--gold);
}

.timeline-year {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-deep);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    background: var(--gold-soft);
    padding: 4px 12px;
    border-radius: 100px;
}

.timeline-item h3 {
    font-weight: 800;
    font-size: clamp(22px, 2vw, 28px);
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.timeline-item p {
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 15px;
}

/* === Team === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.team-card {
    background: var(--paper);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t-fast) var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.team-photo {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.team-photo .initial {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 120px;
    color: rgba(0, 0, 0, 0.2);
}

.team-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-role {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 12px;
    font-weight: 600;
}

.team-info h3 {
    font-weight: 800;
    font-size: 22px;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.team-info .edu {
    font-size: 13px;
    color: var(--gold-deep);
    margin-bottom: 16px;
    font-weight: 600;
}

.team-info p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
}

/* === Branch tabs (Lounge) === */
.branch-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.branch-tab {
    padding: 16px 28px;
    background: var(--white);
    border: 1.5px solid var(--gray-line);
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
}

.branch-tab small {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 500;
}

.branch-tab:hover { border-color: var(--gold); color: var(--black); }

.branch-tab.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.branch-tab.active small { color: var(--gold); }

.branch-display {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    background: var(--white);
    align-items: start;
}

.branch-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
}

.branch-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.branch-img-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(212, 162, 76, 0.95);
    color: var(--ink);
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 2;
    font-weight: 700;
}

.branch-img-loc {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: var(--white);
    z-index: 2;
}

.branch-img-loc h3 {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 4px;
}

.branch-img-loc small {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.branch-bg-1 {
    background: linear-gradient(135deg, #2B2520 0%, #4A4239 100%);
}
.branch-bg-2 {
    background: linear-gradient(135deg, #D4A24C 0%, #A87938 100%);
}
.branch-bg-3 {
    background: linear-gradient(135deg, #2B2520 0%, #D4A24C 100%);
}

.branch-content {
    padding-top: 16px;
}

.branch-content > .eyebrow {
    margin-bottom: 16px;
}

.branch-content h2 {
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.branch-tagline {
    font-size: 16px;
    color: var(--gold-deep);
    margin-bottom: 32px;
    font-weight: 600;
}

.branch-meta {
    list-style: none;
    margin-bottom: 32px;
    border-top: 1px solid var(--gray-line);
}

.branch-meta li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-line);
    font-size: 14px;
    align-items: start;
}

.branch-meta strong {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    padding-top: 2px;
}

.branch-meta span {
    color: var(--text);
    line-height: 1.6;
}

.branch-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 32px;
}

.feature-item {
    background: var(--gray-soft);
    padding: 14px 8px;
    text-align: center;
    border-radius: var(--radius);
    font-size: 12.5px;
    color: var(--text);
    line-height: 1.4;
    border: 1px solid var(--gray-line);
}

/* === Contact Branch Cards (3 mini lounge cards) === */
.branch-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.branch-mini-card {
    background: var(--paper);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--t-fast) var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.branch-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
    border-color: var(--gold-line);
}

.branch-thumb {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-sans);
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 16px;
}

.branch-thumb-1 {
    background: linear-gradient(135deg, #2B2520, #4A4239);
    color: var(--gold-bright);
}

.branch-thumb-2 {
    background: linear-gradient(135deg, #D4A24C, #A87938);
    color: var(--ink);
}

.branch-thumb-3 {
    background: linear-gradient(135deg, #2B2520, #D4A24C);
    color: var(--paper);
}

.branch-tag {
    margin-bottom: 12px;
    display: inline-block;
    align-self: center;
}

.branch-mini-card h4 {
    font-family: var(--f-sans);
    font-weight: 800;
    font-size: 22px;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.branch-mini-card p {
    font-family: var(--f-sans);
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 22px;
    flex: 1;
}

.branch-cta {
    align-self: center;
    margin-top: auto;
    font-size: 13px;
    padding: 12px 22px;
    min-height: 42px;
}

@media (max-width: 1024px) {
    .branch-cards { grid-template-columns: 1fr 1fr; }
    .branch-cards > .branch-mini-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 480px;
        justify-self: center;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .branch-cards { grid-template-columns: 1fr; gap: 14px; }
    .branch-mini-card { padding: 24px 22px; }
    .branch-cards > .branch-mini-card:last-child:nth-child(odd) {
        max-width: none;
    }
}

/* === Lounge Stats === */
.lounge-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 16px;
}

.lounge-stat {
    padding: 40px 24px;
    background: var(--paper);
    text-align: center;
}

.lounge-stat .num {
    font-family: var(--f-sans);
    font-weight: 800;
    font-size: clamp(34px, 4.2vw, 56px);
    color: var(--gold-deep);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.lounge-stat .num sup {
    font-size: 0.45em;
    color: var(--gold-deep);
    margin-left: 2px;
}

.lounge-stat .lbl {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

@media (max-width: 1024px) {
    .lounge-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .lounge-stat { padding: 32px 18px; }
    .lounge-stat .num { font-size: 32px; }
}

/* === Lounge Booking Process === */
.lounge-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--paper);
    align-items: stretch;
}

.lounge-process-card {
    padding: 36px 28px;
    border-right: 1px solid var(--gray-line);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: background var(--t-fast) var(--ease);
}

.lounge-process-card:last-child {
    border-right: none;
}

.lounge-process-card .step-num {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--gold-deep);
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.lounge-process-card h3 {
    font-family: var(--f-sans);
    font-weight: 800;
    font-size: 22px;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
    line-height: 1.25;
    word-break: keep-all;
}

.lounge-process-card p {
    font-family: var(--f-sans);
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
    word-break: keep-all;
}

.lounge-process-card--featured {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
}

.lounge-process-card--featured .step-num,
.lounge-process-card--featured h3,
.lounge-process-card--featured p {
    color: var(--ink);
}

@media (max-width: 1024px) {
    .lounge-process {
        grid-template-columns: 1fr 1fr;
    }
    .lounge-process-card {
        border-right: none;
        border-bottom: 1px solid var(--gray-line);
    }
    .lounge-process-card:nth-child(2n) { border-right: none; }
    .lounge-process-card:nth-child(odd) { border-right: 1px solid var(--gray-line); }
    .lounge-process-card:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 600px) {
    .lounge-process {
        grid-template-columns: 1fr;
    }
    .lounge-process-card {
        border-right: none !important;
        border-bottom: 1px solid var(--gray-line) !important;
        padding: 28px 24px;
    }
    .lounge-process-card:last-child { border-bottom: none !important; }
    .lounge-process-card h3 { font-size: 19px; }
}

/* === Endorsements Grid (about page) === */
.endorse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
    align-items: stretch;
}

.endorse-card {
    background: var(--paper);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.endorse-card blockquote {
    flex: 1;
}

@media (max-width: 768px) {
    .endorse-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .endorse-card {
        padding: 28px 24px;
    }
}

/* === Connect Grid (YouTube + IG) === */
.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* === Achievement Cards (about page) === */
.ach-grid {
    align-items: stretch;
}

.ach-card {
    height: 100%;
    transition: transform var(--t-fast) var(--ease);
}

.ach-card:hover {
    transform: translateY(-4px);
}

.ach-card h3 {
    flex: 1;
}

@media (max-width: 1024px) {
    .ach-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 600px) {
    .ach-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
    .ach-card { padding: 28px 24px !important; }
    .ach-card h3 { font-size: 20px !important; }
}

/* === Use Cases === */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.uc-card {
    background: var(--paper);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--t-fast) var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.uc-card:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-8px);
}

.uc-card:hover h3 { color: var(--gold); }
.uc-card:hover p { color: rgba(255, 255, 255, 0.7); }
.uc-card:hover .uc-tag {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.uc-icon {
    font-size: 36px;
    margin-bottom: 24px;
}

.uc-card h3 {
    font-weight: 800;
    font-size: 22px;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    transition: color var(--t-fast) var(--ease);
}

.uc-card p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: color var(--t-fast) var(--ease);
    flex: 1;  /* push tag to bottom */
}

.uc-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gold-deep);
    border: 1px solid var(--gold);
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--gold-soft);
    transition: all var(--t-fast) var(--ease);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: auto;
}

/* === Service detail (Publishing/Artists) === */
.svc-detail {
    padding: 120px 0;
}

.svc-detail:nth-child(even) {
    background: var(--gray-soft);
}

.svc-detail-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.svc-detail-row.reverse > div:first-child { order: 2; }

.svc-visual {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.svc-content > .eyebrow { margin-bottom: 24px; }

.svc-content h2 {
    font-weight: 800;
    font-size: clamp(30px, 3.8vw, 52px);
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.svc-content h2 em {
    font-style: normal;
    color: var(--gold-deep);
}

.svc-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
}

.svc-content strong {
    color: var(--black);
    font-weight: 800;
    background: linear-gradient(180deg, transparent 65%, var(--gold-soft) 65%);
}

.svc-list {
    list-style: none;
    margin-bottom: 32px;
}

.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--gray-line);
    font-size: 15px;
    line-height: 1.6;
}

.svc-list li::before {
    content: '✓';
    color: var(--gold-deep);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.4;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.chip {
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-line);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text);
    font-weight: 500;
}

.chip.dark {
    background: var(--black);
    color: var(--gold);
    border-color: var(--black);
}

/* === Portfolio Grid === */
.portfolio-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.portfolio-filter button {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-line);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-soft);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    font-weight: 500;
}

.portfolio-filter button:hover {
    border-color: var(--black);
    color: var(--black);
}

.portfolio-filter button.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

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

.portfolio-grid .item {
    cursor: pointer;
}

.port-cover {
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
    transition: transform var(--t) var(--ease);
}

.portfolio-grid .item:hover .port-cover {
    transform: scale(1.02);
}

.port-cover .num {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    z-index: 2;
}

.port-cover.spread { aspect-ratio: 3/2; }
.port-cover.feature { grid-column: span 2; aspect-ratio: 3/2; }

.port-meta .tag {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 4px;
}

.port-meta h4 {
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 4px;
}

.port-meta small {
    font-size: 12px;
    color: var(--gray);
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 80px;
    padding: 120px 0;
    align-items: start;
}

.info-card {
    background: linear-gradient(180deg, #2B2520 0%, #1A1A1A 100%);
    color: var(--paper);
    padding: 44px;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    font-family: var(--f-sans);
    font-weight: 800;
    font-size: 30px;
    color: var(--gold-bright);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.info-card p {
    font-family: var(--f-sans);
    font-size: 14px;
    color: rgba(252, 250, 246, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 162, 76, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

.info-list small {
    display: block;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-list strong {
    display: block;
    font-size: 15px;
    color: var(--white);
    word-break: break-all;
}

.contact-form {
    background: var(--white);
    padding: 56px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-line);
}

.contact-form h2 {
    font-weight: 800;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.contact-form .sub {
    color: var(--text-soft);
    margin-bottom: 40px;
    font-size: 14px;
}

.form-group { margin-bottom: 24px; }
.form-group.full { grid-column: 1 / -1; }

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group label .req { color: var(--gold-deep); }

.form-input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-line);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 15px;
    color: var(--ink);
    transition: all var(--t-fast) var(--ease);
    font-family: inherit;
}

.form-input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.18);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.svc-checks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.svc-check input { display: none; }

.svc-check label {
    display: block;
    padding: 14px 12px;
    border: 1.5px solid var(--gray-line);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--text);
    transition: all var(--t-fast) var(--ease);
    font-weight: 500;
    font-family: inherit;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

.svc-check input:checked + label {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 700;
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    margin-top: 12px;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--black);
}

.check-line {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-family: inherit !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    color: var(--text) !important;
}

.check-line input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

/* === FAQ === */
.faq-list {
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    transition: all var(--t-fast) var(--ease);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--gold);
    background: var(--gold-soft);
}

.faq-item summary {
    padding: 24px 32px;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 28px;
    color: var(--gold-deep);
    transition: transform var(--t-fast) var(--ease);
    font-weight: 300;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .answer {
    padding: 0 32px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .ceo-cinematic-grid,
    .branch-display,
    .svc-detail-row,
    .contact-grid,
    .section-head-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc-detail-row.reverse > div:first-child { order: 0; }

    .info-card { position: static; }

    .team-grid,
    .usecase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-grid { grid-template-columns: 1fr 1fr; }

    .branch-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 56px;
    }
    .page-title { font-size: clamp(32px, 8vw, 48px); }
    .page-lead { font-size: 15px; }
    .page-meta { gap: 24px; margin-top: 32px; padding-top: 24px; }

    .ceo-cinematic { padding: 130px 0 60px; }
    .ceo-cinematic h1 { font-size: clamp(32px, 9vw, 56px); margin: 24px 0 32px; }
    .ceo-tagline { font-size: 15px; margin-bottom: 40px; }
    .ceo-cinematic-grid { gap: 32px; margin-top: 48px; }
    .ceo-stats-card { padding: 32px 28px; }
    .ceo-stats-list .num { font-size: 18px; }

    .content-section { padding: 80px 0; }

    .branch-tabs { gap: 8px; }
    .branch-tab { padding: 12px 18px; font-size: 13px; }

    .timeline {
        padding: 80px 0;
    }
    .timeline-list { padding-left: 28px; max-width: 100%; }
    .timeline-item { padding: 16px 0 36px; }
    .timeline-item h3 { font-size: 19px; }
    .timeline-year { font-size: 12px; }

    .section-head-grid { gap: 24px; margin-bottom: 40px; }
    .section-head-grid h2 { font-size: clamp(28px, 7vw, 44px); }
    .section-head-grid p { font-size: 15px; }
}

@media (max-width: 600px) {
    .page-hero { padding: 120px 0 48px; }
    .team-grid, .usecase-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-grid-2, .svc-checks {
        grid-template-columns: 1fr;
    }
    .contact-form, .info-card, .bio-card { padding: 28px 22px; }
    .branch-meta li { grid-template-columns: 60px 1fr; gap: 12px; }
    .timeline-list { padding-left: 28px; }
}
