/* ==========================================
   대치코드 학습관리 프로그램 — 소개 페이지
   ========================================== */

:root {
    --primary: #D4722A;
    --primary-dark: #B85E1F;
    --primary-light: #F5E6D8;
    --primary-soft: #FBF4ED;
    --accent: #2F6B3A;
    --ink: #1A1A1A;
    --ink-2: #3A3A3A;
    --text: #2A2A2A;
    --text-secondary: #5C5C5C;
    --text-light: #8A8A8A;
    --bg: #FAFAF7;
    --bg-soft: #F4F1EC;
    --white: #FFFFFF;
    --border: #E8E4DD;
    --border-strong: #D4CEC4;
    --danger: #C2451E;
    --shadow-sm: 0 1px 3px rgba(20,15,5,.05), 0 1px 2px rgba(20,15,5,.04);
    --shadow: 0 4px 16px rgba(20,15,5,.06);
    --shadow-lg: 0 12px 40px rgba(20,15,5,.10);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --max: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo',
        'Segoe UI', 'Malgun Gothic', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    font-feature-settings: "ss10";
    -webkit-font-smoothing: antialiased;
    word-break: keep-all;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; }

.container {
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Header
   ========================================== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 32px; width: auto; }
.brand-divider { width: 1px; height: 18px; background: var(--border-strong); }
.brand-sub {
    font-size: 14px; font-weight: 600; color: var(--text-secondary);
    letter-spacing: -.2px;
}
.site-nav {
    display: flex; align-items: center; gap: 28px;
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
}
.site-nav a { transition: color .15s; }
.site-nav a:hover { color: var(--primary); }
.nav-cta {
    padding: 8px 16px;
    background: var(--ink);
    color: var(--white) !important;
    border-radius: 999px;
    font-weight: 600;
}
.nav-cta:hover { background: var(--primary) !important; }

@media (max-width: 720px) {
    .site-nav { gap: 14px; font-size: 13px; }
    .site-nav a:not(.nav-cta) { display: none; }
    .brand-sub { display: none; }
}

/* ==========================================
   Hero
   ========================================== */
.hero {
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--white) 100%);
    padding: 96px 0 80px;
    text-align: center;
}
.hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--primary-light);
    color: var(--primary-dark);
    border-radius: 999px;
    font-size: 13px; font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -.2px;
}
.hero-title {
    font-size: clamp(32px, 5.4vw, 54px);
    line-height: 1.25;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1.2px;
    margin-bottom: 28px;
}
.hero-title em {
    background: linear-gradient(180deg, transparent 60%, rgba(212,114,42,.22) 60%);
    padding: 0 4px;
}
.hero-desc {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 40px;
}
.hero-desc strong { color: var(--ink); font-weight: 700; }
.hero-meta {
    display: inline-flex;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 28px;
    box-shadow: var(--shadow-sm);
    gap: 28px;
}
.meta-item {
    display: flex; flex-direction: column; gap: 4px;
    text-align: center; min-width: 80px;
}
.meta-label {
    font-size: 12px; color: var(--text-light); font-weight: 600;
    letter-spacing: .3px;
}
.meta-value {
    font-size: 18px; font-weight: 800; color: var(--ink);
    letter-spacing: -.3px;
}
.meta-divider { width: 1px; background: var(--border); }

@media (max-width: 640px) {
    .hero { padding: 64px 0 56px; }
    .hero-meta {
        display: grid; grid-template-columns: 1fr 1fr;
        padding: 16px 18px; gap: 14px;
        text-align: center;
    }
    .meta-divider { display: none; }
}

/* ==========================================
   Section base
   ========================================== */
.section { padding: 96px 0; }
.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 13px; font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(24px, 3.2vw, 36px);
    line-height: 1.4;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.7px;
    margin-bottom: 20px;
}
.section-title strong { color: var(--primary-dark); }
.section-lead {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 760px;
    margin-bottom: 48px;
}
.section-lead strong { color: var(--ink); font-weight: 700; }

@media (max-width: 720px) {
    .section { padding: 64px 0; }
}

/* ==========================================
   Pain section
   ========================================== */
.section-pain { background: var(--bg); }
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 36px;
}
.pain-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px 28px;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.pain-quote-mark {
    position: absolute;
    top: 4px; right: 18px;
    font-size: 56px;
    color: var(--primary-light);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}
.pain-item p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    position: relative;
}
.pain-item p strong {
    color: var(--primary-dark);
    font-weight: 700;
}
.pain-bridge {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.85;
    background: var(--white);
    padding: 22px 28px;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
}

@media (max-width: 640px) {
    .pain-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Cycle section
   ========================================== */
.cycle-wrap {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 12px;
    align-items: stretch;
    margin-top: 16px;
}
.cycle-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 28px;
    box-shadow: var(--shadow-sm);
}
.cycle-bad {
    background: linear-gradient(180deg, #FAF2EE 0%, var(--white) 100%);
    border-color: #E8C5B5;
}
.cycle-good {
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--white) 100%);
    border-color: var(--primary-light);
    border-width: 2px;
}
.cycle-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.cycle-tag {
    font-size: 11px; font-weight: 800;
    color: var(--danger);
    background: rgba(194,69,30,.10);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .5px;
}
.cycle-tag-good {
    color: var(--primary-dark);
    background: var(--primary-light);
}
.cycle-head h3 {
    font-size: 17px; font-weight: 800; color: var(--ink);
    letter-spacing: -.3px;
}
.cycle-steps {
    list-style: none;
    counter-reset: step;
}
.cycle-steps li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.65;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}
.cycle-steps li:last-child { border-bottom: none; }
.cycle-steps li span {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800;
    margin-top: 1px;
}
.cycle-good .cycle-steps li span {
    background: var(--primary);
    color: var(--white);
}
.cycle-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    color: var(--text-light);
    font-weight: 300;
}

@media (max-width: 760px) {
    .cycle-wrap { grid-template-columns: 1fr; gap: 16px; }
    .cycle-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* ==========================================
   Goals
   ========================================== */
.goal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}
.goal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: transform .2s, box-shadow .2s;
}
.goal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.goal-card-primary {
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--white) 100%);
    border-color: var(--primary-light);
    position: relative;
}
.goal-card-primary::before {
    content: "핵심";
    position: absolute;
    top: -10px; right: 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px; font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .5px;
}
.goal-num {
    font-size: 13px; font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.goal-title {
    font-size: 22px; font-weight: 800;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: -.4px;
    margin-bottom: 14px;
}
.goal-desc {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.85;
}
.goal-desc strong { color: var(--ink); font-weight: 700; }

@media (max-width: 760px) {
    .goal-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Session (학부모 30분 + 학생 30분)
   ========================================== */
.section-session { background: var(--bg); }
.session-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}
.session-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
}
.session-time {
    display: inline-block;
    font-size: 12px; font-weight: 800;
    color: var(--white);
    background: var(--ink);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: .5px;
}
.session-card h3 {
    font-size: 22px; font-weight: 800;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -.4px;
}
.session-card ul { list-style: none; }
.session-card ul li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 12px;
}
.session-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}
.session-card ul li strong { color: var(--primary-dark); font-weight: 700; }

@media (max-width: 720px) {
    .session-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   Curriculum / Timeline
   ========================================== */
.timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}
.timeline-item {
    display: flex;
    gap: 16px;
    align-items: stretch;
}
.timeline-dot {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800;
    margin-top: 4px;
}
.timeline-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
}
.timeline-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    gap: 10px;
}
.timeline-head h3 {
    font-size: 17px; font-weight: 800; color: var(--ink);
    letter-spacing: -.3px;
}
.timeline-time {
    flex-shrink: 0;
    font-size: 12px; font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 10px; border-radius: 999px;
}
.timeline-summary {
    font-size: 14px; color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}
.timeline-tags {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 6px;
}
.timeline-tags li {
    font-size: 12px; font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: 999px;
}
.timeline-tags li.tag-must { background: var(--ink); color: var(--white); }
.timeline-tags li.tag-place { background: var(--primary); color: var(--white); }

@media (max-width: 720px) {
    .timeline { grid-template-columns: 1fr; }
}

/* ==========================================
   Workbook preview
   ========================================== */
.section-workbook { background: var(--bg); }
.workbook-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.preview-thumb {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
    cursor: zoom-in;
}
.preview-thumb:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.preview-thumb img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    background: var(--bg-soft);
}
.preview-thumb span {
    display: block;
    padding: 12px 14px;
    font-size: 13px; font-weight: 700;
    color: var(--text);
    border-top: 1px solid var(--border);
    text-align: center;
}

.workbook-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 24px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.workbook-levels {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.level-badge {
    font-size: 12.5px; font-weight: 700;
    color: var(--text-secondary);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 999px;
}
.btn-download {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ink);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px; font-weight: 700;
    transition: background .2s, transform .2s;
}
.btn-download:hover { background: var(--primary); transform: translateY(-1px); }

.case-mini {
    background: var(--white);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
}
.case-mini-tag {
    font-size: 11px; font-weight: 800;
    color: var(--primary-dark);
    background: var(--primary-light);
    display: inline-block;
    padding: 4px 10px; border-radius: 999px;
    letter-spacing: .5px;
    margin-bottom: 12px;
}
.case-mini > p:last-child {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.85;
}
.case-mini p strong { color: var(--ink); font-weight: 700; }
.case-mini p em {
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 600;
}

@media (max-width: 760px) {
    .workbook-preview { grid-template-columns: 1fr 1fr; }
    .workbook-meta { flex-direction: column; align-items: stretch; text-align: center; }
    .workbook-meta .btn-download { justify-content: center; }
}

/* ==========================================
   Consultant
   ========================================== */
.consultant-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
}
.consultant-photo {
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--bg-soft) 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
}
.consultant-photo img {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}
.consultant-info { padding: 44px 40px; }
.consultant-name {
    display: flex; align-items: baseline; gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.consultant-name h3 {
    font-size: 30px; font-weight: 800; color: var(--ink);
    letter-spacing: -.6px;
}
.consultant-name span {
    font-size: 14px; font-weight: 600;
    color: var(--primary);
}
.consultant-tagline {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.85;
    padding: 16px 18px;
    background: var(--primary-soft);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    margin-bottom: 24px;
}
.consultant-section { margin-bottom: 22px; }
.consultant-section:last-child { margin-bottom: 0; }
.consultant-section h4 {
    font-size: 12px; font-weight: 800;
    color: var(--primary);
    letter-spacing: .8px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.consultant-section ul { list-style: none; }
.consultant-section ul li {
    position: relative;
    padding-left: 14px;
    font-size: 14.5px; color: var(--text);
    line-height: 1.85;
}
.consultant-section ul li::before {
    content: "•";
    position: absolute; left: 0;
    color: var(--primary);
    font-weight: 800;
}
.result-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.result-tags span {
    font-size: 13px; font-weight: 600;
    color: var(--ink-2);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 999px;
}

@media (max-width: 820px) {
    .consultant-card { grid-template-columns: 1fr; }
    .consultant-photo { padding: 32px; }
    .consultant-photo img { max-width: 180px; }
    .consultant-info { padding: 30px 24px; }
    .consultant-name h3 { font-size: 26px; }
}

/* ==========================================
   Pricing
   ========================================== */
.section-pricing { background: var(--bg); }
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    box-shadow: var(--shadow);
}
.pricing-row {
    display: grid;
    grid-template-columns: 1fr 60px 1.4fr;
    align-items: center;
    gap: 16px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px dashed var(--border-strong);
}
.pricing-info {
    text-align: center;
    padding: 18px;
}
.pricing-info.pricing-highlight {
    background: var(--primary-soft);
    border-radius: var(--radius);
    border: 2px solid var(--primary-light);
}
.pricing-label {
    font-size: 12px; font-weight: 700;
    color: var(--text-light);
    letter-spacing: .3px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.pricing-highlight .pricing-label { color: var(--primary-dark); }
.pricing-strike {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 600;
}
.pricing-final {
    font-size: 16px; color: var(--text);
    font-weight: 600;
}
.pricing-final strong {
    font-size: 32px;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -.8px;
    margin-left: 4px;
}
.pricing-discount {
    font-size: 12.5px; font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}
.pricing-arrow {
    text-align: center;
    font-size: 28px;
    color: var(--text-light);
    font-weight: 300;
}
.pricing-includes {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}
.pricing-includes li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
}
.pricing-includes li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 720px) {
    .pricing-card { padding: 28px 22px; }
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pricing-arrow { transform: rotate(90deg); }
    .pricing-includes { grid-template-columns: 1fr; }
}

/* ==========================================
   CTA
   ========================================== */
.section-cta { padding: 80px 0 120px; }
.cta-card {
    background: linear-gradient(135deg, var(--ink) 0%, #2A2218 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: "";
    position: absolute;
    top: -40%; right: -20%;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(212,114,42,.35) 0%, transparent 70%);
    pointer-events: none;
}
.cta-card h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 16px;
    letter-spacing: -.5px;
    position: relative;
}
.cta-card p {
    font-size: 15px;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto; margin-right: auto;
    position: relative;
}
.cta-card p strong { color: var(--white); }
.cta-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: relative;
}
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 15px; font-weight: 800;
    transition: background .2s, transform .2s;
    letter-spacing: -.2px;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-ghost {
    display: inline-block;
    color: var(--white);
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 15px; font-weight: 700;
    border: 1.5px solid rgba(255,255,255,.25);
    transition: background .2s, border-color .2s;
}
.btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
}

@media (max-width: 540px) {
    .cta-card { padding: 44px 24px; }
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 48px 0 56px;
}
.footer-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.footer-brand img { height: 28px; opacity: .85; }
.footer-info {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.85;
}
.footer-info p strong { color: var(--ink); font-weight: 700; }
.footer-copy {
    margin-top: 12px !important;
    font-size: 12px;
    color: var(--text-light);
}

@media (max-width: 600px) {
    .footer-inner { flex-direction: column; gap: 20px; }
}
