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

:root {
    --bg: #fafaf9;
    --text: #1a1a1a;
    --muted: #6b7280;
    --accent: #3b82f6;
    --orange: #f9784d;
    --border: #e5e7eb;
    --card-bg: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* =====================
   Nav
   ===================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-name {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: var(--text);
    transition: color 0.2s;
}

.nav-name:hover {
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: hero-bounce 2s ease-in-out infinite;
    transition: color 0.2s;
}

.hero-scroll:hover {
    color: var(--accent);
}

@keyframes hero-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.hero-sites {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.hero-site-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--muted);
    transition: color 0.2s;
}

.hero-site-link:hover {
    color: var(--text);
}

.hero-site-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.hero-site-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.hero-site-link:hover .hero-site-name {
    color: var(--accent);
}

.hero-site-desc {
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-site-desc::before {
    content: '·';
    margin-right: 0.4rem;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--muted);
    transition: color 0.2s;
}

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

/* =====================
   About
   ===================== */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-inner {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    width: 100%;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.about-lead {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.about-text p:not(.about-lead) {
    font-size: 1rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-highlight {
    color: var(--accent);
    font-weight: 500;
}

.about-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
    background: var(--accent);
    color: #fff;
}

.btn-ghost {
    display: inline-block;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
}

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

.about-card {
    position: relative;
    flex-shrink: 0;
    width: 280px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-card:hover {
    transform: rotate(0deg) scale(1.03) translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.about-card-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(80%) contrast(1.1);
    opacity: 0.7;
    transition: filter 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}

.about-card:hover .about-card-img-wrap img {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
    transform: scale(1.05);
}

.about-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 60%, transparent 100%);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

.about-card:hover .about-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.about-card-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    color: var(--text);
}

/* =====================
   Expertise
   ===================== */
.expertise-section {
    padding: 6rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.expertise-section h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.expertise-block {
    margin-bottom: 3rem;
}

.expertise-block h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.software-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.software-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 72px;
}

.software-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.software-item span {
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.2;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-tag {
    display: inline-block;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--text);
    background: var(--card-bg);
}

.language-list {
    display: flex;
    gap: 2rem;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.language-item img {
    width: 28px;
    border-radius: 3px;
}

/* =====================
   Portfolio
   ===================== */
.portfolio-section {
    padding: 6rem 3rem 8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-section h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.portfolio-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.25s;
}

.portfolio-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.portfolio-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--border);
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.04);
}

.portfolio-card-body {
    padding: 1.5rem;
}

.portfolio-card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.portfolio-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.portfolio-card-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* =====================
   Project Pages
   ===================== */
.project-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 3rem 6rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--text);
}

.project-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.project-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.project-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 0;
}

.project-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-dashboard {
    display: inline-block;
    background: var(--text);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.btn-dashboard:hover {
    opacity: 0.8;
}

.project-hero {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    display: block;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-section {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.project-section-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.project-section h2,
.project-h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.project-section h3,
.project-h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.challenge-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.project-section p,
.project-section li {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.project-section p:last-child {
    margin-bottom: 0;
}

.project-section ul {
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.project-section strong {
    color: var(--text);
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.project-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

.project-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
}

.project-card>strong:first-child {
    display: block;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.project-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.project-page blockquote {
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.75rem;
    margin: 0;
    background: var(--card-bg);
    border-radius: 0 10px 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.6;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.project-page hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

.project-page pre {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 1rem 0 0;
}

.project-page code {
    font-size: 0.88em;
    color: var(--accent);
}

.project-page pre code {
    color: #e0e0e0;
    font-size: inherit;
}

.project-page details {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.project-page summary {
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-page summary::-webkit-details-marker {
    display: none;
}

.project-page details[open] summary {
    border-bottom: 1px solid var(--border);
}

.project-page details>div {
    padding: 1.5rem;
}

.project-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.project-table th {
    padding: 0.85rem 1.25rem;
    text-align: left;
    font-weight: 700;
    color: var(--text);
    border-bottom: 2px solid var(--border);
    background: var(--bg);
}

.project-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.project-table tr:last-child td {
    border-bottom: none;
}

.tag-pill {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

.published-callout {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(37, 99, 235, 0.02));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.published-callout .callout-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.published-callout .callout-source {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.published-callout a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.img-tab-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.img-tab-btn {
    padding: 0.45rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--muted);
    font-family: 'Nunito', sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.img-tab-btn.active,
.img-tab-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.final-statement {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    text-align: center;
    padding: 1.5rem 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .project-page {
        padding: 6rem 1.5rem 4rem;
    }

    .project-grid,
    .project-grid-3 {
        grid-template-columns: 1fr;
    }

    .project-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================
   Footer
   ===================== */
.footer {
    padding: 3rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    flex-wrap: wrap;
}

.footer-location-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

.footer-location-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.footer-location-city {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.footer-location-sub {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.footer-location-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-location-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.footer-contact {
    text-align: center;
}

.footer-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.footer-email-label {
    font-size: 1.05rem;
    color: var(--muted);
}

.footer-email {
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s;
}

.footer-email:hover {
    color: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.footer-site-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
    transition: color 0.2s, background 0.2s;
    padding: 1rem 1.5rem;
    width: 100%;
    justify-content: center;
}

.footer-site-link:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.footer-site-link:hover {
    color: var(--text);
    background: rgba(236, 72, 153, 0.08);
}

.footer-site-link img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.footer-site-name {
    font-size: 1rem;
    font-weight: 900;
}

.footer-site-sep {
    color: var(--border);
    font-weight: 400;
    margin: 0 0.1rem;
}

.footer-site-desc {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
}

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

/* =====================
   Mobile
   ===================== */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .about-section {
        padding: 7rem 1.5rem 4rem;
        min-height: auto;
    }

    .about-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-card {
        width: 100%;
        height: auto;
        transform: none;
    }

    .about-card-img-wrap {
        height: auto;
    }

    .about-card-img-wrap img {
        object-fit: fill;
        height: auto;
    }

    .expertise-section {
        padding: 4rem 1.5rem;
    }

    .portfolio-section {
        padding: 4rem 1.5rem 6rem;
    }

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

    .about-links {
        justify-content: center;
    }

    .footer-location {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .footer-location-text {
        align-items: center;
    }

    .footer-location-meta {
        align-items: center;
    }
}

/* =====================
   Home Theme
   ===================== */
body.home {
    --bg: #ffffff;
    --text: #0f0f0f;
    --muted: #6b7280;
    --accent: #3b82f6;
    --border: #e5e7eb;
    --card-bg: #f9fafb;
    --orange: #f9784d;
}

body.home .nav {
    background: rgba(255, 255, 255, 0.88);
}

body.home .btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

body.home .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 7rem 4rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-greeting {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

.hero-name {
    display: flex;
    flex-direction: column;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(4rem, 9vw, 8.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 0;
}

.hero-first {
    color: var(--accent);
}

.hero-last {
    color: var(--orange);
}

.hero-title {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text);
    margin-top: 0.5rem;
}

.hero-sub {
    font-size: 0.95rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-top: 0.75rem;
}

.hero-contact {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s;
}

.hero-contact:hover {
    color: var(--text);
}

.hero-right {
    flex-shrink: 0;
    width: 400px;
}

.hero-photo-wrap {
    width: 100%;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border));
}

.section-divider::after {
    background: linear-gradient(to left, transparent, var(--border));
}

.section-divider-icon {
    font-size: 0.55rem;
    color: var(--accent);
    flex-shrink: 0;
}

/* Bio */
.bio-section {
    padding: 6rem 4rem;
}

.bio-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.bio-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 3rem;
}

.bio-display {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 0;
    font-weight: 400;
}

.bio-rule {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem auto;
    width: 60px;
}

.bio-blue {
    color: var(--accent);
    font-weight: 600;
}

.bio-orange {
    color: var(--orange);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 6rem 1.5rem 3rem;
        gap: 2.5rem;
        min-height: auto;
    }

    .hero-right {
        width: 100%;
    }

    .hero-photo-wrap {
        height: 400px;
    }

    .bio-section {
        padding: 3rem 1.5rem;
    }
}