:root {
    --navy: #0D1B2A;
    --navy-mid: #162638;
    --navy-light: #1E3248;
    --amber: #D4820A;
    --amber-light: #F0A030;
    --cream: #F5F0E8;
    --cream-dim: #C8C0B0;
    --white: #FAFAF8;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
    --mono: 'DM Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* NAV — solo la navbar principale */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 130, 10, 0.12);
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    isolation: isolate;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-brand-main {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-brand-sub {
    font-family: var(--serif);
    font-size: 12px;
    color: var(--amber);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--cream-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--amber-light);
}

.nav-cta {
    color: var(--navy) !important;
    background: var(--amber);
    padding: 10px 24px;
    border-radius: 2px;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--amber-light) !important;
}

/* NAV DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: -16px;
    padding-top: 12px;
    background: transparent;
    list-style: none;
    min-width: 140px;
    display: none;
    z-index: 10000;
}

.nav-submenu::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 38, 56, 0.98);
    border: 1px solid rgba(212, 130, 10, 0.18);
    backdrop-filter: blur(12px);
    border-radius: 2px;
    z-index: -1;
}

.nav-dropdown:hover .nav-submenu {
    display: block;
}

.nav-submenu li a {
    display: block;
    padding: 9px 18px;
    font-size: 12px;
    color: var(--cream-dim);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.15s, background 0.15s;
}

.nav-submenu li a:hover {
    color: var(--amber);
    background: rgba(212, 130, 10, 0.06);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 60px 80px;
    gap: 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 40%, rgba(212, 130, 10, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--amber);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: var(--amber-light);
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 300;
    color: var(--cream-dim);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* BUTTONS */
.btn-primary {
    background: var(--amber);
    color: var(--navy);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

.btn-ghost {
    color: var(--cream-dim);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-ghost::after {
    content: '→';
    transition: transform 0.2s;
}

.btn-ghost:hover::after {
    transform: translateX(4px);
}

/* STAT CARDS */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: var(--navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--amber);
    padding: 28px 32px;
    transition: border-color 0.2s, background 0.2s;
}

.stat-card:hover {
    background: var(--navy-light);
    border-left-color: var(--amber-light);
}

.stat-card-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.stat-number {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number span {
    color: var(--amber);
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--cream-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* DIVIDER */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 130, 10, 0.3), transparent);
    margin: 0 60px;
}

/* ABOUT */
.about-strip {
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.section-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    padding-top: 8px;
}

.about-text h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    color: var(--cream-dim);
    line-height: 1.9;
    max-width: 600px;
    margin-bottom: 20px;
}

.about-text p strong {
    color: var(--cream);
    font-weight: 500;
}

/* SERVICES */
.services {
    padding: 80px 60px 100px;
    background: var(--navy-mid);
}

.services-header {
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

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

.service-item {
    background: var(--navy);
    padding: 40px 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width 0.3s ease;
}

.service-item:hover::before {
    width: 100%;
}

.service-item:hover {
    background: var(--navy-light);
}

.service-icon {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    color: var(--cream-dim);
    line-height: 1.8;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 60px;
}

/* ARTICLE POST BODY */
.post-body h2 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 130, 10, 0.1);
}

.post-body h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin: 30px 0 12px;
}

.post-body p {
    margin-bottom: 20px;
    color: var(--cream);
}

.post-body ul,
.post-body ol {
    margin: 0 0 20px 24px;
    color: var(--cream);
}

.post-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.post-body strong {
    color: var(--white);
    font-weight: 500;
}

.post-body code {
    font-family: var(--mono);
    font-size: 13px;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 2px;
    color: var(--amber-light);
}

.post-body pre {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 24px;
}

.post-body blockquote {
    border-left: 3px solid var(--amber);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(212, 130, 10, 0.05);
    font-style: italic;
    color: var(--cream-dim);
}

.post-body a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* BLOG */
.blog-section {
    padding: 100px 60px;
}

.blog-section h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 60px;
}

.blog-section h2 span {
    color: var(--amber);
    font-style: italic;
}

.articles-list {
    display: flex;
    flex-direction: column;
}

.article-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: padding-left 0.2s, border-bottom-color 0.2s;
    cursor: pointer;
}

.article-row:hover {
    padding-left: 12px;
    border-bottom-color: rgba(212, 130, 10, 0.3);
}

.article-date {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s;
}

.article-row:hover .article-title {
    color: var(--amber-light);
}

.article-category {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--amber);
    padding: 4px 12px;
    border-radius: 1px;
    white-space: nowrap;
}

/* BLOG TABS */
.blog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.blog-tab {
    padding: 8px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--cream-dim);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 1px;
}

.blog-tab:hover {
    color: var(--cream);
    border-color: rgba(212, 130, 10, 0.4);
}

.blog-tab.active {
    background: var(--amber);
    color: var(--navy);
    border-color: var(--amber);
    font-weight: 500;
}

/* CTA */
.cta-section {
    margin: 0 60px 100px;
    background: var(--navy-light);
    border: 1px solid rgba(212, 130, 10, 0.2);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 130, 10, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 38px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 15px;
    color: var(--cream-dim);
    max-width: 480px;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 32px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-main {
    font-size: 13px;
    font-weight: 500;
    color: var(--cream-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-brand-sub {
    font-family: var(--serif);
    font-size: 11px;
    color: var(--amber);
    font-style: italic;
}

.footer-info {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(200, 192, 176, 0.4);
    letter-spacing: 0.08em;
}

/* ARTICLE TEMPLATES */
.post-header {
    padding: 140px 60px 60px;
    max-width: 860px;
    margin: 0 auto;
}

.post-type-badge {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--amber);
    padding: 4px 12px;
    border-radius: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.post-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.post-meta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    gap: 24px;
}

.post-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 60px 100px;
    font-size: 17px;
    color: var(--cream-dim);
    line-height: 1.9;
}

.post-body h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin: 48px 0 20px;
}

.post-body p {
    margin-bottom: 24px;
}

.post-body strong {
    color: var(--cream);
    font-weight: 500;
}

.post-body a {
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 130, 10, 0.3);
    transition: border-color 0.2s;
}

.post-body a:hover {
    border-bottom-color: var(--amber);
}

/* FLOATING INDEX */
.floating-index {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    max-width: 200px;
    z-index: 50;
}

.floating-index ul {
    list-style: none;
    border-left: 2px solid rgba(212, 130, 10, 0.2);
    padding-left: 16px;
}

.floating-index li {
    margin-bottom: 12px;
}

.floating-index a {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--cream-dim);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s;
    line-height: 1.4;
    display: block;
}

.floating-index a:hover {
    color: var(--amber);
}

/* BACKOFFICE */
.bo-wrap {
    display: flex;
    min-height: 100vh;
    padding-top: 76px;
}

.bo-sidebar {
    width: 240px;
    background: var(--navy-mid);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 32px 0;
    position: fixed;
    top: 76px;
    bottom: 0;
}

.bo-sidebar a {
    display: block;
    padding: 12px 32px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.bo-sidebar a:hover,
.bo-sidebar a.active {
    color: var(--amber);
    background: rgba(212, 130, 10, 0.06);
    border-left: 2px solid var(--amber);
}

.bo-content {
    margin-left: 240px;
    flex: 1;
    padding: 48px 60px;
}

.bo-title {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.bo-subtitle {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.bo-table {
    width: 100%;
    border-collapse: collapse;
}

.bo-table th {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 130, 10, 0.2);
}

.bo-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--cream-dim);
    font-size: 14px;
    vertical-align: middle;
}

.bo-table tr:hover td {
    background: var(--navy-mid);
}

.status-draft {
    color: var(--cream-dim);
}

.status-published {
    color: #4CAF50;
}

.status-archived {
    color: #888;
}

/* CHATBOT UI */
.chat-wrap {
    max-width: 800px;
}

.chat-messages {
    background: var(--navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-msg {
    padding: 14px 18px;
    border-radius: 2px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 85%;
}

.chat-msg.user {
    background: rgba(212, 130, 10, 0.1);
    border-left: 3px solid var(--amber);
    align-self: flex-end;
    color: var(--cream);
}

.chat-msg.assistant {
    background: var(--navy-light);
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    color: var(--cream-dim);
}

.chat-input-wrap {
    display: flex;
    gap: 12px;
}

.chat-input {
    flex: 1;
    background: var(--navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 14px;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--amber);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .site-nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 40px;
    }

    .hero-right {
        display: none;
    }

    .about-strip {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 24px;
    }

    .services {
        padding: 60px 24px;
    }

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

    .blog-section {
        padding: 60px 24px;
    }

    .article-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 24px 0;
    }

    .article-category {
        display: none;
    }

    .cta-section {
        margin: 0 24px 60px;
        padding: 40px 24px;
        grid-template-columns: 1fr;
    }

    footer {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .section-divider {
        margin: 0 24px;
    }

    .post-header {
        padding: 100px 24px 40px;
    }

    .post-body {
        padding: 0 24px 60px;
    }

    .floating-index {
        display: none;
    }

    .bo-sidebar {
        display: none;
    }

    .bo-content {
        margin-left: 0;
        padding: 24px;
    }
}

/* =========================================
   CHI SONO - PAGE
   ========================================= */
.about-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 60px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.about-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-title em {
    color: var(--amber);
    font-style: italic;
}

.about-bio {
    color: var(--cream-dim);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-bio p {
    margin-bottom: 16px;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

.about-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(212, 130, 10, .25);
    color: var(--cream-dim);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    transition: border-color .2s, color .2s;
}

.social-link:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.social-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat {
    background: var(--navy-mid);
    border: 1px solid rgba(212, 130, 10, .12);
    padding: 28px 24px;
}

.about-stat-number {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1.1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.about-stat-sub {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(168, 152, 128, .6);
    margin-top: 4px;
    letter-spacing: .05em;
}

.about-divider {
    height: 1px;
    background: rgba(212, 130, 10, .12);
    max-width: 1100px;
    margin: 0 auto;
}

.about-skills {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
}

.about-skills-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 40px;
}

.about-skills-title span {
    color: var(--amber);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.skill-card {
    background: var(--navy-mid);
    border: 1px solid rgba(212, 130, 10, .12);
    border-top: 2px solid var(--amber);
    padding: 28px 24px;
}

.skill-card-title {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.skill-card-items {
    list-style: none;
}

.skill-card-items li {
    font-size: 13px;
    color: var(--cream-dim);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.skill-card-items li:last-child {
    border-bottom: none;
}

@media(max-width:900px) {
    .about-hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 40px;
        gap: 40px;
    }

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

    .about-skills {
        padding: 40px 24px;
    }
}

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

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero-subtitle {
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero-right {
    animation: fadeUp 0.8s 0.4s ease both;
}

/* ===========================
   HAMBURGER MOBILE TOGGLE
   =========================== */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(212, 130, 10, 0.4);
    color: var(--cream);
    font-size: 20px;
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    border-radius: 2px;
    transition: background 0.2s;
}

.mobile-toggle:hover {
    background: rgba(212, 130, 10, 0.15);
}

/* ===========================
   RESPONSIVE MEDIA QUERIES
   =========================== */

/* — Tablet (max 1024px) — */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 120px 40px 60px;
        gap: 40px;
        min-height: auto;
    }

    .hero-right {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 120px;
    }

    .site-nav {
        padding: 14px 40px;
    }
}

/* — Mobile (max 768px) — */
@media (max-width: 768px) {
    .site-nav {
        padding: 12px 16px;
        flex-wrap: wrap;
        position: fixed;
        width: 100%;
    }

    /* Mostra il bottone hamburger */
    .mobile-toggle {
        display: block;
    }

    /* Menu links: nascosti di default, visibili se .active */
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-top: 10px;
        border-top: 1px solid rgba(212, 130, 10, 0.1);
        padding-top: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-cta {
        display: inline-block;
        margin-top: 8px;
        text-align: center;
    }

    /* Hero mobile */
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 48px);
    }

    .hero-right {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .stat-card {
        width: 100%;
        padding: 20px;
    }

    /* Blog section mobile */
    .blog-section {
        padding: 40px 20px;
    }

    .article-row {
        flex-direction: column;
        gap: 4px;
        padding: 14px 0;
    }

    .article-date {
        font-size: 11px;
    }

    .article-category {
        display: none;
    }

    /* Container padding */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Article 2-col layout → single col */
    .container[style*="grid-template-columns: 1fr 280px"] {
        display: block !important;
    }

    aside[style*="sticky"] {
        display: none;
    }

    /* Backoffice sidebar */
    .bo-sidebar {
        display: none;
    }

    .bo-content {
        margin-left: 0;
        padding: 16px;
    }

    .bo-header {
        padding: 0 16px !important;
    }

    /* Footer */
    footer {
        padding: 30px 20px !important;
        flex-direction: column;
        text-align: center;
    }
}