/* ===================================================
   LUMEN BIO SKIN | 김관현 (James Kim) CEO 포트폴리오
   High-End & Sustainable Bio-Cosmetics Trend Design
=================================================== */

:root {
    /* Color Palette - Warm Botanical Clean Luxury (Light Mode) */
    --primary: #2D543E;                /* Deep Botanical Forest Sage */
    --primary-hover: #1E3B2B;
    --primary-light: rgba(45, 84, 62, 0.08);
    --primary-gradient: linear-gradient(135deg, #2D543E 0%, #4D7C5F 50%, #C2A478 100%);
    
    --accent-gold: #C2A478;            /* Champagne Gold */
    --accent-gold-light: rgba(194, 164, 120, 0.15);
    --accent-rose: #D9A595;            /* Soft Rose Quartz */
    --accent-sage: #5B8C70;            /* Herbal Sage */
    
    --bg-main: #FAF8F5;                /* Warm Linen Sand */
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #FFFFFF;
    --bg-glass: rgba(250, 248, 245, 0.88);
    
    --text-main: #1A1E1B;              /* Soft Espresso Charcoal */
    --text-muted: #57635A;             /* Herb Gray */
    --text-light: #8A968D;
    
    --border-color: #E6E1D8;           /* Soft Sand Border */
    --border-light: #F2EFE9;
    
    --shadow-sm: 0 2px 8px rgba(35, 45, 38, 0.04);
    --shadow-md: 0 8px 24px -4px rgba(35, 45, 38, 0.07), 0 2px 6px -2px rgba(35, 45, 38, 0.04);
    --shadow-lg: 0 16px 36px -6px rgba(35, 45, 38, 0.1), 0 4px 12px -2px rgba(35, 45, 38, 0.05);
    --shadow-glow: 0 0 35px rgba(45, 84, 62, 0.18);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    /* Color Palette - Luxury Bio-Botanical Night (Dark Mode) */
    --primary: #7EA98F;
    --primary-hover: #96BEA6;
    --primary-light: rgba(126, 169, 143, 0.14);
    --primary-gradient: linear-gradient(135deg, #7EA98F 0%, #A2C4B0 50%, #D4BB94 100%);
    
    --accent-gold: #D4BB94;
    --accent-gold-light: rgba(212, 187, 148, 0.15);
    --accent-rose: #E5B4A5;
    --accent-sage: #8CB89D;
    
    --bg-main: #111613;                /* Deep Organic Charcoal */
    --bg-surface: #171E1A;
    --bg-surface-elevated: #1F2823;
    --bg-glass: rgba(23, 30, 26, 0.88);
    
    --text-main: #F3F5F3;
    --text-muted: #9BA8A0;
    --text-light: #6E7C73;
    
    --border-color: #27342C;
    --border-light: #1E2922;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 36px -6px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 35px rgba(126, 169, 143, 0.22);
}

/* ===================================================
   Global Resets & Base Styles
=================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 110px 0;
    position: relative;
}

/* ===================================================
   Typography & Reusable Utilities
=================================================== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid rgba(45, 84, 62, 0.12);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

[data-theme="dark"] .section-tag {
    border-color: rgba(126, 169, 143, 0.25);
}

.section-title {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-main);
    margin-bottom: 14px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.serif-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.86rem;
    border-radius: var(--radius-full);
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(45, 84, 62, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 84, 62, 0.35);
}

[data-theme="dark"] .btn-primary {
    background: var(--primary);
    color: #111613;
    box-shadow: 0 6px 20px rgba(126, 169, 143, 0.3);
}

[data-theme="dark"] .btn-primary:hover {
    background: var(--primary-hover);
    color: #111613;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-surface-elevated);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ===================================================
   Header & Navbar
=================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-serif {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo-sub {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
}

.nav-list {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle-btn {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: rotate(20deg);
}

.sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-btn span {
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===================================================
   Hero Section
=================================================== */
.hero-section {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 70px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(194, 164, 120, 0.12) 0%, rgba(45, 84, 62, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #5B8C70;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(91, 140, 112, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(91, 140, 112, 0.6);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 9px rgba(91, 140, 112, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(91, 140, 112, 0);
    }
}

.hero-title {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.hero-description {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 34px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-right: 4px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Profile Card in Hero */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-card {
    position: relative;
    width: 100%;
    max-width: 430px;
}

.profile-glow {
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, rgba(45, 84, 62, 0.15) 0%, rgba(194, 164, 120, 0.2) 100%);
    border-radius: 32px;
    filter: blur(24px);
    opacity: 0.7;
    z-index: 0;
}

.profile-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 34px 28px;
    box-shadow: var(--shadow-lg);
}

.profile-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar-img-wrapper {
    width: 116px;
    height: 116px;
    border-radius: var(--radius-full);
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary) 100%);
    box-shadow: 0 8px 24px rgba(45, 84, 62, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.avatar-img-wrapper:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(45, 84, 62, 0.3);
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
    object-position: center 15%;
    display: block;
    border: 3px solid var(--bg-surface);
}

.profile-info {
    text-align: center;
    margin-bottom: 24px;
}

.profile-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-name .en-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-left: 4px;
}

.profile-role {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.profile-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    margin-bottom: 22px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 28px;
    background: var(--border-color);
}

/* High-End Bio-Lab Certificate Card */
.bio-cert-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);
    font-size: 0.82rem;
}

.cert-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.cert-stamp {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 1px;
}

.cert-code {
    font-family: 'Consolas', monospace;
    font-size: 0.72rem;
    color: var(--text-light);
}

.cert-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cert-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.78rem;
}

.c-val {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.82rem;
}

.c-val.highlight {
    color: var(--primary);
    font-weight: 700;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    animation: bounce 2.2s infinite;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -8px); }
    60% { transform: translate(-50%, -4px); }
}

/* ===================================================
   About Me & Brand Philosophy Section
=================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: stretch;
}

.about-card-large {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: var(--accent-gold);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.about-text-content h3 {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-main);
    line-height: 1.45;
}

.about-text-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.8;
}

.personal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-desc {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.info-desc.highlight {
    color: var(--primary);
    font-weight: 700;
}

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

.value-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.value-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--border-color);
}

.value-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.value-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================================
   Skills & R&D Section
=================================================== */
.skill-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.skill-tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.skill-tab-btn:hover, .skill-tab-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(45, 84, 62, 0.25);
}

[data-theme="dark"] .skill-tab-btn.active {
    color: #111613;
}

.skills-wrapper {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.skill-category {
    transition: var(--transition);
}

.skill-category.hidden {
    display: none;
}

.category-title {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.skill-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}

.skill-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.skill-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.skill-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.skill-meta {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.skill-level {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

.skill-bar-bg {
    width: 100%;
    height: 6px;
    background: var(--border-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 12px;
}

.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-gold) 100%);
    border-radius: var(--radius-full);
    transition: width 1s ease-in-out;
}

.skill-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ===================================================
   Projects Section (High-End Editorial Look)
=================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.project-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #FFFFFF;
    transition: transform 0.6s ease;
}

.project-card:hover .project-mockup {
    transform: scale(1.05);
}

.mockup-beauty-1 {
    background: linear-gradient(135deg, #1C271F 0%, #355341 50%, #C2A478 100%);
}

.mockup-beauty-2 {
    background: linear-gradient(135deg, #2D3A31 0%, #4D6B5A 50%, #8FB399 100%);
}

.mockup-beauty-3 {
    background: linear-gradient(135deg, #2E2822 0%, #5E4E3F 50%, #D4BB94 100%);
}

.mockup-editorial-badge {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.mockup-icon {
    font-size: 3.2rem;
    opacity: 0.9;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.mockup-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    padding: 5px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(45, 84, 62, 0.1);
}

[data-theme="dark"] .tag {
    border-color: rgba(126, 169, 143, 0.2);
}

.project-title {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-main);
}

.project-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
}

.project-links {
    display: flex;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.btn-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--primary);
}

/* ===================================================
   Contact Section
=================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-lead {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 34px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.detail-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 2px;
}

.detail-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-social-box {
    padding-top: 26px;
    border-top: 1px solid var(--border-color);
}

.social-box-title {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.social-links-row {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group .required {
    color: #D96B6B;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-main);
    color: var(--text-main);
    font-size: 0.94rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 84, 62, 0.15);
    background: var(--bg-surface);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #D96B6B;
}

.error-message {
    font-size: 0.78rem;
    color: #D96B6B;
    margin-top: 6px;
    display: none;
}

.error-message.show {
    display: block;
}

/* ===================================================
   Footer
=================================================== */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 44px 0;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 4px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.back-to-top {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ===================================================
   Toast Notification
=================================================== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.toast-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.toast-msg {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================================
   Resume Modal
=================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 22, 19, 0.65);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    max-width: 580px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: scale(0.94);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', serif;
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.modal-close-btn {
    background: transparent;
    border: none;
    font-size: 1.7rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--text-main);
}

.modal-body {
    padding: 26px;
    max-height: 65vh;
    overflow-y: auto;
}

.resume-preview-section {
    margin-bottom: 22px;
}

.resume-preview-section:last-child {
    margin-bottom: 0;
}

.resume-preview-section h4 {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 4px;
}

.resume-preview-section ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.resume-preview-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 26px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-main);
}

/* ===================================================
   Responsive Breakpoints
=================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 44px;
    }

    .hero-description {
        margin: 0 auto 34px auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-socials {
        justify-content: center;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border-color);
        padding: 28px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .navbar .nav-menu.open {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav-contact-btn {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 75px 0;
    }

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

    .personal-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
    }
}

/* ===================================================
   Subpage Dedicated Styles & Components
=================================================== */

/* Sub-Hero Header */
.sub-hero {
    position: relative;
    padding: 140px 0 60px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.sub-hero-bg-accent {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(194, 164, 120, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.sub-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: var(--text-light);
    font-size: 0.75rem;
}

.sub-hero-title {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-main);
}

.sub-hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* Timeline Components (Brand History & CEO Career) */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent-gold), var(--border-color));
}

.timeline-item {
    position: relative;
    padding-left: 75px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 21px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--bg-surface);
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-light);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.2);
}

.timeline-year {
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.timeline-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.timeline-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Certifications & Badges Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.cert-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.cert-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cert-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cert-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Clinical Data & Metric Cards */
.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 35px 0;
}

.metric-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.metric-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.metric-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.metric-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Process Step Cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.process-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 26px 20px;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.process-step-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.process-icon {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.process-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Patent & Award Detail Cards */
.patent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 35px;
}

.patent-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.patent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.patent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.patent-badge {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
}

.patent-num {
    font-size: 0.82rem;
    color: var(--text-light);
    font-family: monospace;
}

.patent-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.patent-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.patent-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
}

/* Case Study Deep Dive Cards */
.case-study-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 45px;
    transition: var(--transition);
}

.case-study-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.case-study-header {
    background: var(--primary-light);
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.case-study-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
}

.case-study-body {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 900px) {
    .case-study-body {
        grid-template-columns: 1fr;
    }
}

.case-study-section h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-study-section p, .case-study-section ul {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.case-study-section ul {
    padding-left: 20px;
}

.case-study-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.case-stat-box {
    background: var(--bg-main);
    padding: 14px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.case-stat-box .val {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    display: block;
}

.case-stat-box .lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ Accordion Component */
.faq-list {
    max-width: 800px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* Section CTA Banner */
.section-cta-box {
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    box-shadow: var(--shadow-lg);
}

.section-cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-cta-box p {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 24px;
}

.section-cta-box .btn-cta {
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.section-cta-box .btn-cta:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-2px);
}

