
:root{
  --bg:#f6f0e8; --ink:#171717; --muted:#6f685f; --line:#ded3c5; --card:#fffaf3; --accent:#e85d2a; --accent2:#1f6f68;
  --shadow: 0 24px 80px rgba(23,23,23,.10);
}
*{box-sizing:border-box} html{scroll-behavior:smooth} body{margin:0;font-family:Inter,system-ui,sans-serif;background:var(--bg);color:var(--ink);overflow-x:hidden}
a{color:inherit;text-decoration:none} img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(.92) contrast(1.03)}
.cursor-glow{position:fixed;inset:auto;width:380px;height:380px;border-radius:999px;background:radial-gradient(circle,rgba(232,93,42,.18),transparent 62%);pointer-events:none;z-index:-1;transform:translate(-50%,-50%)}
.site-header{position:sticky;top:0;z-index:10;display:flex;justify-content:space-between;align-items:center;padding:18px clamp(18px,4vw,56px);backdrop-filter:blur(20px);background:rgba(110, 94, 82, 0.35);border-bottom:1px solid rgba(222,211,197,.35)}
.brand{display:grid;place-items:center;width:44px;height:44px;border:1px solid var(--ink);border-radius:50%;font-weight:800;letter-spacing:-.05em}.site-header nav{display:flex;gap:clamp(14px,3vw,32px);font-size:14px;text-transform:uppercase;letter-spacing:.08em}.site-header nav a{position:relative}.site-header nav a:after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:1px;background:var(--ink);transition:.3s}.site-header nav a:hover:after{width:100%}
.section-grid{display:grid;grid-template-columns:minmax(18px,1fr) minmax(0,1180px) minmax(18px,1fr)}.section-grid>*{grid-column:2}.hero{min-height:82vh;padding:54px 0 54px;align-content:center}.eyebrow,.section-kicker{font-size:18px;text-transform:uppercase;letter-spacing:.16em;color:var(--accent2);font-weight:800;margin-left:10px}.hero h1,.work h2,.about h2,.contact h2{font-family:'Playfair Display',serif;font-size:clamp(42px,10vw,68px);line-height:1.2;letter-spacing:-.05em;margin:22px 0;max-width:1260px}.hero h1{display:flex;flex-direction:column;gap:12px;line-height:0.9;margin-bottom:24px;letter-spacing:-.03em}.hero-title-break{display:block;height:12px}.hero-title-line{display:block;font-weight:400;font-family:'Playfair Display',serif;font-size:0.6em;letter-spacing:0em;color:#686159;white-space:nowrap}.hero-copy{max-width:760px;font-size:clamp(18px,2vw,25px);line-height:1.45;color:var(--muted)}.hero-actions,.hero-meta,.contact-links{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}.button{padding:14px 20px;border-radius:999px;border:1px solid var(--ink);font-weight:700}.button.primary{background:var(--ink);color:var(--bg)}.button.secondary:hover,.button.primary:hover{transform:translateY(-2px)}.hero-meta{color:var(--muted);font-size:14px}.hero-meta>*{padding-right:14px;border-right:1px solid var(--line)}.hero-meta>*:last-child{border-right:0}
.marquee{border-block:1px solid var(--line);overflow:hidden;background:#333131;color:#f6f0e8}.marquee-track{display:flex;width:max-content;animation:marquee 26s linear infinite}.marquee span{font-family:"Playfair Display",serif;font-size:clamp(36px,6vw,84px);padding:18px 30px;white-space:nowrap}.marquee-logo{height:clamp(72px,12vw,168px);width:auto;padding:18px 50px;object-fit:contain;filter:none}@keyframes marquee{to{transform:translateX(-50%)}}

.work {
    padding: 96px 0;
}

.work h2 {
    font-size: clamp(36px, 6vw, 80px);
    max-width: 930px;
}

.project {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    padding: 42px 0;
    border-top: 2px solid #8ab3a3;
}

.project.featured {
    padding-top: 56px;
}

.project:nth-of-type(even) .project-image {
    order: 2;
}

.project-image {
    aspect-ratio: 1.12 / 1;
    border-radius: 28px;
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow);
}

.project-content {
    padding: 8px;
}

.project-number {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.project h3 {
    font-size: clamp(34px, 5vw, 70px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin: 12px 0;
}

.project p,
.project li,
.about p,
.skills p {
    color: var(#57514a);
    font-size: 19px;
    line-height: 1.65;
}

.project ul {
    padding-left: 20px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tags span {
    border: 1px solid var(--line);
    background: rgba(255, 250, 243, 0.6);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 700;
}

.about {
    padding: 96px 50px;
    background: #f4e7da;
    border-radius: 32px;
    margin: 90px auto;
    max-width: 1300px;
}
eaf0e9
.skills,
.contact {
    padding: 96px 0;
}


.contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 30px;
}

.contact-button,
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 28px;
    font-weight: 500;
}

.contact-button {
    padding: 16px 24px;
    background: #fffaf3;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: 0.2s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.linkedin-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0077b5;
    color: white;

    border-radius: 3px;
    font-weight: 800;
    font-size: 20px;
    font-family: Arial, sans-serif;
}

.icon {
    font-size: 32px;
}


.about h2 {
    font-size: clamp(36px, 6vw, 80px);
    max-width: 930px;
    margin: 0 0 20px;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(500px, 750px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding: 42px 0;
    border-top: 2px solid #8ab3a3;
}

.about-me {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 24px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.about-me img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    image-rendering: auto;
    transform: translateZ(0);
}

.about-story-content {
    padding: 8px 0;
}

.about-story h3 {
    font-size: clamp(28px, 4vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin: 12px 0;
}

.about-story p,
.about-story li {
    color: #443f39;
    font-size: 24px;
    line-height: 1.65;
}

.about-story ul {
    padding-left: 20px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tags span {
    border: 1px solid var(--line);
    background: rgba(255, 250, 243, 0.6);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 700;
}


.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 820px) {
    .site-header nav {
        gap: 12px;
        font-size: 12px;
    }

    .project,
    .project:nth-of-type(even) .project-image {
        grid-template-columns: 1fr;
        order: initial;
    }

    .about-story {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .about-me {
        width: 100%;
        max-width: 240px;
        height: 320px;
    }

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

    .hero h1 {
        font-size: clamp(48px, 15vw, 76px);
    }

    .hero {
        min-height: auto;
    }

    footer {
        flex-direction: column;
        gap: 12px;
    }
}