/* ============================================================
   PORTFOLIO — style.css
   Shared stylesheet for all pages.
   Aesthetic: refined minimal / editorial with sharp accents.
   ============================================================ */

/* ---------- GOOGLE FONTS IMPORT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
    --clr-bg:         #f7f6f3;
    --clr-bg-alt:     #eceae5;
    --clr-surface:    #ffffff;
    --clr-text:       #1e1e1e;
    --clr-text-mid:   #5a5a5a;
    --clr-text-light: #8a8a8a;
    --clr-accent:     #c94c4c;        /* warm red accent */
    --clr-accent-dim: rgba(201,76,76,0.12);
    --clr-border:     #ddd9d2;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Work Sans', system-ui, sans-serif;

    --nav-h:        68px;
    --radius:       10px;
    --radius-sm:    6px;
    --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:    0 6px 28px rgba(0,0,0,0.10);
    --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
    --transition:   0.3s cubic-bezier(.4,0,.2,1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

.accent { color: var(--clr-accent); }

/* ---------- CONTAINER ---------- */
.container {
    width: 90%;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(247,246,243,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--clr-border);
    z-index: 900;
    transition: background var(--transition);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.45rem;
    color: var(--clr-text);
    letter-spacing: -1px;
}

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

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--clr-text-mid);
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--clr-accent);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-accent);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hamburger (mobile) */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO (index.html only)
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('assets/images/ground.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* subtle geometric lines bg - REMOVED, using image instead */
/* .hero-bg-lines {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.03) 60px,
            rgba(255,255,255,0.03) 61px
        );
    pointer-events: none;
} */

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    animation: heroFade 0.9s ease-out both;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@keyframes heroFade {
    from { opacity:0; transform:translateY(24px); }
    to   { opacity:1; transform:translateY(0); }
}

.hero-eyebrow {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-accent);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 0.8rem;
    letter-spacing: -2px;
}

.hero-title {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.4rem;
}

.hero-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

.hero-scroll-hint {
    margin-top: 2rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(8px); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding-top: var(--nav-h);
    padding-bottom: 3rem;
    padding-left: 2rem;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                      var(--page-hero-img, url('assets/images/ground.png'));
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.page-hero-content {
    max-width: 640px;
    margin: 0 auto;
    padding-top: 3rem;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 5rem 0;
}
.section--alt {
    background: var(--clr-bg-alt);
}

.section-label {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-text);
}

.section-desc {
    color: var(--clr-text-light);
    font-size: 0.93rem;
    margin-bottom: 2.5rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-text);
    color: var(--clr-text);
}
.btn--outline:hover {
    background: var(--clr-text);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn--download {
    background: var(--clr-accent);
    color: #fff;
    font-size: 1rem;
    padding: 1rem 2.2rem;
    box-shadow: var(--shadow-sm);
}
.btn--download:hover {
    background: #b34343;
    box-shadow: var(--shadow-md);
}

.btn--submit {
    background: var(--clr-accent);
    color: #fff;
    font-size: 0.92rem;
    padding: 0.85rem 2rem;
    box-shadow: var(--shadow-sm);
    width: 100%;
    justify-content: center;
}
.btn--submit:hover {
    background: #b34343;
    box-shadow: var(--shadow-md);
}

/* ============================================================
   INDEX — SUMMARY / STRENGTHS-WEAKNESSES
   ============================================================ */
.summary-text {
    max-width: 720px;
    color: var(--clr-text-mid);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Journey bar */
.journey-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}
.journey-bar::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 1px;
    background: var(--clr-border);
    z-index: 0;
}
.journey-node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 100px;
}
.journey-icon {
    width: 32px; 
    height: 32px;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 2px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.journey-node--active .journey-icon {
    border-color: var(--clr-accent);
    background: var(--clr-accent);
}
.journey-node span:last-child {
    font-size: 0.72rem;
    color: var(--clr-text-light);
    font-weight: 500;
}
.journey-node--active span:last-child {
    color: var(--clr-accent);
    font-weight: 600;
}

/* Strengths / Weaknesses grid */
.sw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.sw-card {
    background: transparent;  /* No background box */
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border-left: 2px solid transparent;
    padding-left: 1.5rem;
}
.sw-card--strengths { 
    border-left-color: #3a9d5d;
}
.sw-card--weaknesses { 
    border-left-color: #d4a034;
}

.sw-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text);
}
.sw-card--strengths .sw-icon { color: #3a9d5d; font-size: 0.8rem; }
.sw-card--weaknesses .sw-icon { color: #d4a034; font-size: 0.8rem; }

.sw-card ul li {
    padding: 0.6rem 0;
    border-bottom: none;
    color: var(--clr-text-mid);
    font-size: 0.92rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.2rem;
}
.sw-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--clr-text-light);
}
.sw-card ul li:last-child { padding-bottom: 0; }
/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
    position: relative;
    padding-left: 0;  /* Remove left padding */
    max-width: 720px;
}
.timeline::before {
    display: none;  /* Remove the line */
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--clr-border);
}
.timeline-item:last-child {
    border-bottom: none;
}

.timeline-dot {
    display: none;  /* Remove dots */
}

.timeline-card {
    background: transparent;  /* No card background */
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: none;
}
.timeline-card:hover {
    box-shadow: none;
    transform: none;
}

.timeline-date {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--clr-text);
}
.timeline-company {
    font-size: 0.88rem;
    color: var(--clr-text-light);
    margin-bottom: 0.8rem;
    font-weight: 400;
}
.timeline-card p {
    font-size: 0.92rem;
    color: var(--clr-text-mid);
    line-height: 1.7;
    max-width: 650px;
}

/* Detailed timeline cards */
.timeline-card--detailed {
    padding: 0;
}
.timeline-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}
.timeline-badge {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--clr-accent-dim);
    color: var(--clr-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-weight: 600;
}
.timeline-card-body p {
    margin-bottom: 0.8rem;
}
.timeline-card-img-wrap {
    margin-top: 1.2rem;
    border-radius: 4px;
    overflow: hidden;
    max-height: 200px;
}
.timeline-card-img-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Company badges (experience.html) */
.company-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 1rem;
}
.company-badge {
    padding: 0.5rem 1.2rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text-mid);
    transition: background var(--transition), color var(--transition);
}
.company-badge:hover {
    background: var(--clr-accent);
    color: #fff;
    border-color: var(--clr-accent);
}

/* ============================================================
   PROJECT GRID & CARDS
   ============================================================ */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.project-card {
    background: var(--clr-surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    display: block;
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.project-card-img {
    position: relative;
    height: 200px;
    background: var(--clr-bg-alt);
    overflow: hidden;
}
.project-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover .project-card-img img {
    transform: scale(1.06);
}

/* Placeholder shown when no image */
.project-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--clr-bg-alt) 0%, #ddd9d2 100%);
    z-index: 0;
}

.project-card-img img {
    position: relative;
    z-index: 1;
}

/* Hide placeholder when image is successfully loaded */
.project-card-img img:not([style*="display: none"]) ~ .project-card-placeholder {
    display: none;
}

.project-card-info {
    padding: 1.1rem 1.3rem;
}
.project-card-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.project-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--clr-accent-dim);
    color: var(--clr-accent);
    padding: 0.22rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
}

.acc-gallery-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    background: var(--clr-bg-alt);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}
.acc-gallery-thumb:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.project-card--coming-soon {
    cursor: default;
    opacity: 0.5;
    pointer-events: none;
}
.project-card--coming-soon .project-card-placeholder {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--clr-text-light);
}

/* ============================================================
   PROJECT DETAIL MODAL (projects.html)
   Fixed overlay — always centered, scroll-locked, consistent size
   ============================================================ */

/* Full-screen backdrop */
.project-detail {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.25s ease;
}
.project-detail--hidden {
    opacity: 0;
    pointer-events: none;
}

/* The white modal card */
.project-modal-card {
    background: var(--clr-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 660px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 2rem 2.2rem 2.2rem;
}

.project-detail-close {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    color: var(--clr-text-mid);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: color var(--transition);
}
.project-detail-close:hover { color: var(--clr-accent); }

.project-detail-inner { width: 100%; }

.project-detail-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
    margin-bottom: 1.5rem;
    background: var(--clr-bg-alt);
    position: relative;
}
.project-detail-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.project-detail-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--clr-bg-alt) 0%, #ddd9d2 100%);
}

.project-detail h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

#detailTag { margin-bottom: 1rem; display: inline-block; }

#detailDesc {
    color: var(--clr-text-mid);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.project-detail-extra {
    font-size: 0.84rem;
    color: var(--clr-text-light);
    line-height: 1.9;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-photo-placeholder {
    position: relative;
    width: 220px; height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--clr-bg-alt);
}
.about-photo-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
    z-index: 1;  /* ADD THIS LINE */
}
.about-photo-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--clr-bg-alt) 0%, #ddd9d2 100%);
    z-index: 0;  /* ADD THIS LINE */
}

.about-intro-text h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-intro-text p {
    color: var(--clr-text-mid);
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
}

.about-block {
    margin-bottom: 2.5rem;
}
.about-block-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.about-block-body p {
    color: var(--clr-text-mid);
    font-size: 0.94rem;
    margin-bottom: 0.85rem;
    max-width: 700px;
}

/* Fact cards */
.about-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.fact-card {
    background: var(--clr-surface);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.fact-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--clr-accent);
}
.fact-label {
    font-size: 0.78rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ============================================================
   RESUME PAGE
   ============================================================ */
.resume-center {
    max-width: 1000px;  /* Match the embed width */
    margin: 0 auto;
    text-align: center;
}

.resume-preview {
    background: var(--clr-surface);
    border-radius: var(--radius);
    padding: 2.8rem 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.2rem;
}
.resume-preview-icon {
    color: var(--clr-accent);
    margin-bottom: 1rem;
}
.resume-preview h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.resume-preview-sub {
    font-size: 0.82rem;
    color: var(--clr-text-light);
    margin-bottom: 1rem;
}
.resume-preview-desc {
    font-size: 0.85rem;
    color: var(--clr-text-mid);
    line-height: 1.7;
}
.resume-preview-desc code {
    background: var(--clr-bg-alt);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--clr-accent);
}

.resume-note {
    margin-top: 1.2rem;
    font-size: 0.78rem;
    color: var(--clr-text-light);
}
.resume-embed {
    width: 100%;
    max-width: 1000px;  /* Bigger width */
    margin: 0 auto 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--clr-surface);
}

.resume-embed iframe {
    width: 100%;
    height: 1200px;  /* Much taller */
    border: none;
    display: block;
}
.resume-note code {
    background: var(--clr-bg-alt);
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
    font-size: 0.76rem;
    color: var(--clr-accent);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.contact-info > p {
    color: var(--clr-text-mid);
    font-size: 0.92rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.contact-info-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--clr-text-mid);
    font-size: 0.88rem;
}
.contact-info-item svg { color: var(--clr-accent); flex-shrink: 0; }
.contact-info-item a { color: var(--clr-accent); font-weight: 500; }

/* Form */
.contact-form {
    background: var(--clr-surface);
    border-radius: var(--radius);
    padding: 2.2rem;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.3rem;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--clr-text-mid);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--clr-text);
    background: var(--clr-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px var(--clr-accent-dim);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clr-text-light);
}

.form-status {
    display: block;
    font-size: 0.82rem;
    margin-top: 0.8rem;
    min-height: 1.2em;
    text-align: center;
    color: var(--clr-text-light);
}
.form-status--success { color: #3a9d5d; font-weight: 600; }
.form-status--error   { color: var(--clr-accent); font-weight: 600; }

/* ============================================================
   EXPERIENCE PAGE — Activity Cards
   ============================================================ */
.exp-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.exp-activity-card {
    background: var(--clr-surface);
    border-radius: var(--radius);
    padding: 1.5rem 1.2rem;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--clr-accent);
}

.exp-activity-icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.6rem;
}

.exp-activity-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--clr-text);
}

.exp-activity-card p {
    font-size: 0.82rem;
    color: var(--clr-text-light);
    line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    margin-top: auto;
    background: var(--clr-text);
    color: rgba(255,255,255,0.5);
    padding: 2rem 0;
}
.footer-inner {
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.8rem;
}
.footer-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 500;
    transition: color var(--transition);
}
.footer-link:hover { color: var(--clr-accent); }
.footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.28);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .navbar.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(247,246,243,0.97);
        backdrop-filter: blur(14px);
        padding: 1.5rem 2rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--clr-border);
    }

    .sw-grid { grid-template-columns: 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .about-photo-placeholder { width: 100%; height: 220px; }
    .about-facts { grid-template-columns: repeat(2, 1fr); }
    .contact-wrap { grid-template-columns: 1fr; }
    .journey-bar { gap: 0; }
    .project-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .project-grid { grid-template-columns: 1fr; }
    .about-facts { grid-template-columns: 1fr 1fr; }
}