/* =========================================
   DEVI CREATES
   Creative Studio
========================================= */


/* ---------- Base ---------- */

:root {
    --paper: #f4f0e8;
    --paper-light: #faf8f3;
    --charcoal: #252622;
    --muted: #696a61;
    --green: #52634d;
    --green-light: #dfe5d8;
    --brown: #8a715d;
    --brown-light: #e7ddd2;
    --line: #d8d3c9;

    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}


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


html {
    scroll-behavior: smooth;
}


body {
    background: var(--paper);
    color: var(--charcoal);
    font-family: var(--sans);
    line-height: 1.6;
}


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


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

/* =========================================
   GLOBAL CONTAINER
========================================= */

.container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================
   HEADER / NAVIGATION
========================================= */

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo {
    flex-shrink: 0;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.main-nav a {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--charcoal);
}

.main-nav a.active {
    color: var(--charcoal);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--green);
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 900px) {

    .nav-container {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 20px;
    }
}

@media (max-width: 600px) {

    .container {
        width: min(100% - 40px, 1180px);
    }

    .main-nav {
        gap: 8px 16px;
    }

    .main-nav a {
        font-size: 0.72rem;
    }
}

/* ---------- Hero ---------- */

.hero {
    max-width: 1300px;
    margin: 0 auto;

    padding: 130px 40px 150px;
}


.hero-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 30px;

    color: var(--green);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);
}


.hero h1 {
    max-width: 1000px;

    font-family: var(--serif);
    font-size: clamp(50px, 7vw, 96px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}


.hero h1 em {
    color: var(--green);
    font-style: italic;
}


.hero-description {
    max-width: 520px;

    margin-top: 38px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.7;
}


.hero-actions {
    display: flex;
    gap: 12px;

    margin-top: 42px;
}


.button {
    display: inline-block;

    padding: 13px 21px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.button-dark {
    background: var(--charcoal);
    color: var(--paper);
}


.button-dark:hover {
    background: var(--green);
}


.button-outline {
    border: 1px solid var(--charcoal);
}


.button-outline:hover {
    background: var(--charcoal);
    color: var(--paper);
}


/* ---------- Sections ---------- */

.section {
    max-width: 1300px;
    margin: 0 auto;

    padding: 90px 40px;

    border-top: 1px solid var(--line);
}


.section-heading {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 50px;
}


.section-number {
    color: var(--green);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}


.section-heading h2 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
}


.section-link {
    margin-left: auto;

    color: var(--muted);

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.section-link:hover {
    color: var(--green);
}


/* ---------- Currently ---------- */

.currently-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


.current-item {
    min-height: 260px;

    padding: 35px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


.current-item:nth-child(2) {
    background: var(--green-light);
}


.current-item:nth-child(3) {
    background: var(--brown-light);
}


.current-icon {
    display: block;

    margin-bottom: 45px;

    color: var(--green);

    font-size: 18px;
}


.current-item h3 {
    margin-bottom: 12px;

    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
}


.current-item p {
    max-width: 400px;

    color: var(--muted);

    font-size: 14px;
}


.current-item a {
    display: inline-block;

    margin-top: 28px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


.current-item a:hover {
    color: var(--green);
}


/* ---------- Statement ---------- */

.statement {
    display: grid;

    grid-template-columns: 140px 1fr;

    padding-top: 130px;
    padding-bottom: 130px;
}


.statement-mark {
    font-family: var(--serif);
    font-size: 100px;
    line-height: 0.7;

    color: var(--brown);
}


.statement-content {
    max-width: 850px;
}


.statement-text {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}


.statement-small {
    max-width: 570px;

    margin-top: 35px;

    color: var(--muted);

    font-size: 15px;
}


/* ---------- Recent ---------- */

.recent-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    border-left: 1px solid var(--line);
}


.recent-post {
    min-height: 330px;

    padding: 30px;

    border-right: 1px solid var(--line);
}


.post-date {
    display: block;

    margin-bottom: 65px;

    color: var(--green);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.recent-post h3 {
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;
}


.recent-post p {
    margin-top: 20px;

    color: var(--muted);

    font-size: 13px;
}


.recent-post a {
    display: inline-block;

    margin-top: 25px;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


.recent-post a:hover {
    color: var(--green);
}


/* ---------- Now ---------- */

.now-preview {
    padding-top: 70px;
    padding-bottom: 120px;
}


.now-card {
    padding: 45px;

    background: var(--charcoal);
    color: var(--paper);
}


.now-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.now-card .section-number {
    color: #a7b59f;
}


.updated {
    color: #aaa99f;

    font-size: 9px;
    letter-spacing: 0.12em;
}


.now-card h2 {
    max-width: 700px;

    margin-top: 80px;

    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 400;
    line-height: 1;
}


.now-card h2 em {
    color: #a7b59f;
    font-style: italic;
}


.now-card p {
    max-width: 620px;

    margin-top: 30px;

    color: #c4c2b9;

    font-size: 15px;
}


.text-link {
    display: inline-block;

    margin-top: 35px;

    color: var(--paper);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.text-link:hover {
    color: #a7b59f;
}


/* ---------- Footer ---------- */

.site-footer {
    padding: 55px 40px;

    border-top: 1px solid var(--line);

    text-align: center;
}


.footer-brand {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
}


.site-footer p {
    margin-top: 12px;

    color: var(--muted);

    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
}


.footer-bottom {
    max-width: 1300px;
    margin: 50px auto 0;

    padding-top: 20px;

    border-top: 1px solid var(--line);

    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .hero {
        padding-top: 90px;
        padding-bottom: 100px;
    }


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


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


    .recent-post {
        min-height: auto;
    }


    .statement {
        grid-template-columns: 70px 1fr;
    }


    .statement-mark {
        font-size: 70px;
    }
}


@media (max-width: 600px) {

    .navbar,
    .hero,
    .section {
        padding-left: 22px;
        padding-right: 22px;
    }


    .site-header {
        overflow: hidden;
    }

    .hero h1 {
        font-size: 48px;
    }


    .hero-description {
        font-size: 15px;
    }


    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }


    .section-heading {
        align-items: flex-start;
        flex-wrap: wrap;
    }


    .section-heading h2 {
        font-size: 32px;
    }


    .section-link {
        width: 100%;
        margin-left: 29px;
    }


    .current-item {
        padding: 28px;
    }


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


    .statement-mark {
        margin-bottom: 35px;
    }


    .statement-text {
        font-size: 35px;
    }


    .now-card {
        padding: 30px;
    }


    .now-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }


    .now-card h2 {
        margin-top: 55px;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}
/* =========================================
   ABOUT PAGE
========================================= */


/* ---------- About Hero ---------- */

.about-hero {
    max-width: 1300px;
    margin: 0 auto;

    padding: 110px 40px 120px;
}


.about-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 35px;

    color: var(--green);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.about-hero h1 {
    font-family: var(--serif);

    font-size: clamp(65px, 9vw, 125px);
    font-weight: 400;
    line-height: 0.9;

    letter-spacing: -0.05em;
}


.about-hero h1 em {
    color: var(--green);
    font-style: italic;
}


.about-intro {
    max-width: 650px;

    margin-top: 45px;

    color: var(--muted);

    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.45;
}


/* ---------- Introduction ---------- */

.about-introduction {
    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 80px;
}


.about-side-label {
    padding-top: 10px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.about-side-label span {
    display: block;

    margin-bottom: 10px;

    color: var(--green);
}


.about-main-text {
    max-width: 760px;
}


.large-text {
    margin-bottom: 45px;

    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;

    letter-spacing: -0.03em;
}


.about-main-text p:not(.large-text) {
    max-width: 650px;

    margin-bottom: 25px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


/* ---------- Statement ---------- */

.about-statement {
    padding-top: 50px;
    padding-bottom: 100px;
}


.statement-box {
    padding: 70px;

    background: var(--green-light);
}


.statement-label {
    display: block;

    color: var(--green);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}


.statement-box h2 {
    max-width: 850px;

    margin-top: 45px;

    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 400;
    line-height: 1.02;

    letter-spacing: -0.04em;
}


.statement-box p {
    margin-top: 35px;

    color: var(--muted);

    font-size: 15px;
}


/* ---------- About Cards ---------- */

.about-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}


.about-card {
    min-height: 330px;

    padding: 35px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.about-card:hover {
    background: var(--paper-light);

    transform: translateY(-3px);
}


.card-number {
    display: block;

    margin-bottom: 75px;

    color: var(--green);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}


.about-card h3 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
}


.about-card p {
    max-width: 440px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 14px;
}


.card-link {
    display: inline-block;

    margin-top: 25px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


.about-card:hover .card-link {
    color: var(--green);
}


/* ---------- Current Chapter ---------- */

.about-current {
    padding-top: 120px;
    padding-bottom: 120px;
}


.current-chapter {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


.current-chapter h2 {
    margin-top: 40px;

    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 85px);
    font-weight: 400;
    line-height: 0.95;

    letter-spacing: -0.04em;
}


.current-chapter h2 em {
    color: var(--green);
    font-style: italic;
}


.current-chapter p {
    max-width: 650px;

    margin: 35px auto 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}


/* ---------- Closing ---------- */

.about-closing {
    text-align: center;

    padding-top: 120px;
    padding-bottom: 150px;
}


.closing-text {
    max-width: 850px;

    margin: 0 auto;

    font-family: var(--serif);
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1.05;

    letter-spacing: -0.04em;
}


.closing-small {
    margin-top: 30px;

    color: var(--green);

    font-family: var(--serif);
    font-size: 21px;
    font-style: italic;
}


/* ---------- About Responsive ---------- */

@media (max-width: 800px) {

    .about-hero {
        padding-top: 80px;
        padding-bottom: 90px;
    }


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

        gap: 35px;
    }


    .about-side-label {
        padding-top: 0;
    }


    .statement-box {
        padding: 40px 30px;
    }


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


    .about-card {
        min-height: 280px;
    }

}


@media (max-width: 600px) {

    .about-hero {
        padding-left: 22px;
        padding-right: 22px;
    }


    .about-hero h1 {
        font-size: 62px;
    }


    .about-intro {
        font-size: 20px;
    }


    .statement-box h2 {
        font-size: 40px;
    }


    .current-chapter h2 {
        font-size: 50px;
    }

}
/* =========================================
   LEARNING PAGE
========================================= */

.learning-hero {
    padding: 110px 0 100px;
    border-bottom: 1px solid var(--line);
}

.learning-label,
.section-label,
.learning-status,
.skill-status {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

.learning-hero h1 {
    max-width: 900px;
    margin: 22px 0 30px;
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 6.8rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.learning-intro {
    max-width: 620px;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--muted);
}


/* =========================================
   LEARNING INTRODUCTION
========================================= */

.learning-introduction {
    padding: 110px 0;
}

.learning-intro-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
    max-width: 1100px;
}

.learning-side-label {
    padding-top: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
}

.learning-main-text {
    max-width: 850px;
}

.learning-main-text .large-text {
    margin-top: 0;
    margin-bottom: 35px;
}

.learning-main-text p:not(.large-text) {
    max-width: 720px;
    margin-bottom: 22px;
    color: var(--muted);
    line-height: 1.8;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.learning-section {
    padding: 100px 0;
    background: var(--paper-light);
    border-top: 1px solid var(--line);
}

.learning-section-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.learning-section-heading h2 {
    max-width: 650px;
    margin: 15px 0 0;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.learning-section-heading > p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}


/* =========================================
   LANGUAGE CARDS
========================================= */

.language-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.language-card {
    min-height: 390px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.25s ease;
}

.language-card:hover {
    background: var(--green-light);
}

.language-featured {
    background: var(--paper);
}

.language-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.75rem;
}

.learning-status {
    padding: 6px 9px;
    border: 1px solid var(--line);
    color: var(--muted);
}

.language-content {
    margin-top: 85px;
}

.language-symbol {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: var(--green);
}

.language-content h3 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 400;
}

.language-content p:not(.language-symbol) {
    max-width: 440px;
    margin-bottom: 28px;
    color: var(--muted);
    line-height: 1.7;
}

.language-note {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--green);
}


/* =========================================
   OTHER SKILLS
========================================= */

.learning-skills {
    padding: 120px 0;
}

.skill-list {
    border-top: 1px solid var(--line);
}

.skill-item {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 35px;
    align-items: center;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
    transition: padding 0.25s ease;
}

.skill-item:hover {
    padding-left: 15px;
    padding-right: 15px;
}

.skill-number {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--brown);
}

.skill-info {
    max-width: 760px;
}

.skill-status {
    margin: 0 0 10px;
}

.skill-info h3 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
}

.skill-info p:not(.skill-status) {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.skill-arrow {
    font-size: 1.5rem;
    color: var(--green);
    text-align: right;
}


/* =========================================
   LEARNING STATEMENT
========================================= */

.learning-statement {
    padding: 100px 0 130px;
}

.learning-statement-box {
    max-width: 1050px;
    margin: 0 auto;
    padding: 70px;
    background: var(--brown-light);
}

.learning-statement-box .statement-label {
    margin-bottom: 25px;
}

.learning-statement-box h2 {
    max-width: 850px;
    margin: 0 0 25px;
    font-family: var(--serif);
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.learning-statement-box p:last-child {
    margin: 0;
    color: var(--muted);
}


/* =========================================
   LEARNING PAGE — MOBILE
========================================= */

@media (max-width: 800px) {

    .learning-hero {
        padding: 80px 0 70px;
    }

    .learning-hero h1 {
        font-size: clamp(2.8rem, 13vw, 5rem);
    }

    .learning-introduction {
        padding: 75px 0;
    }

    .learning-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .learning-section,
    .learning-skills {
        padding: 75px 0;
    }

    .learning-section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .learning-section-heading h2 {
        font-size: 3rem;
    }

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

    .language-card {
        min-height: 330px;
    }

    .language-content {
        margin-top: 60px;
    }

    .skill-item {
        grid-template-columns: 45px 1fr 30px;
        gap: 15px;
        padding: 30px 0;
    }

    .skill-info h3 {
        font-size: 1.9rem;
    }

    .skill-item:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .learning-statement {
        padding: 70px 0 90px;
    }

    .learning-statement-box {
        padding: 40px 25px;
    }

    .learning-statement-box h2 {
        font-size: 2.5rem;
    }
}
/* =========================================
   CREATE PAGE
========================================= */

.create-hero {
    padding: 115px 0 90px;
    border-bottom: 1px solid var(--line);
}

.create-label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

.create-hero h1 {
    max-width: 950px;
    margin: 25px 0 65px;
    font-family: var(--serif);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.create-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    max-width: 1050px;
}

.create-hero-bottom p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.create-scroll-note {
    flex-shrink: 0;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown);
}


/* =========================================
   FEATURED VISUAL
========================================= */

.create-feature {
    padding: 90px 0 120px;
}

.create-feature-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
}

.create-feature-caption {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.create-feature-caption > div {
    display: flex;
    gap: 18px;
    align-items: center;
}

.caption-number {
    font-family: var(--serif);
    color: var(--brown);
}

.caption-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.create-feature-caption p {
    max-width: 400px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}


/* =========================================
   CREATIVE AREAS
========================================= */

.create-areas {
    padding: 110px 0 130px;
    background: var(--paper-light);
    border-top: 1px solid var(--line);
}

.create-section-heading {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 70px;
    margin-bottom: 65px;
}

.create-section-heading h2 {
    max-width: 750px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.create-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
}

.create-card {
    min-width: 0;
}

.create-card-large {
    grid-column: span 2;
}

.create-card-image {
    overflow: hidden;
}

.create-card-image .image-placeholder {
    min-height: 650px;
}

.create-card-image-short .image-placeholder {
    min-height: 430px;
}

.create-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.create-card-number {
    display: block;
    margin-bottom: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--brown);
}

.create-card-info h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 400;
}

.create-card-info p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}


/* =========================================
   VISUAL DIARY
========================================= */

.create-diary {
    padding: 120px 0;
}

.diary-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.diary-heading h2 {
    max-width: 650px;
    margin: 15px 0 0;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.diary-heading > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.diary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 280px;
    gap: 15px;
}

.diary-item {
    overflow: hidden;
}

.diary-item .image-placeholder {
    min-height: 100%;
}

.diary-tall {
    grid-row: span 2;
}

.diary-wide {
    grid-column: span 2;
}


/* =========================================
   AI NOTE
========================================= */

.create-ai {
    padding: 100px 0;
    background: var(--charcoal);
}

.create-ai-box {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 80px;
    max-width: 1050px;
    margin: 0 auto;
}

.ai-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    color: #aaa;
}

.create-ai-box h2 {
    max-width: 800px;
    margin: 0 0 30px;
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.create-ai-box p {
    max-width: 650px;
    margin: 0 0 18px;
    color: #b8b8b1;
    line-height: 1.8;
}

.create-ai-box p:last-child {
    margin-bottom: 0;
    color: var(--paper);
}


/* =========================================
   CREATE CLOSING
========================================= */

.create-closing {
    padding: 130px 0;
    text-align: center;
}

.create-closing .closing-small {
    margin-bottom: 25px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--green);
}

.create-closing h2 {
    max-width: 850px;
    margin: 0 auto 20px;
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.create-closing p:last-child {
    margin: 0;
    color: var(--muted);
}


/* =========================================
   CREATE PAGE — MOBILE
========================================= */

@media (max-width: 800px) {

    .create-hero {
        padding: 80px 0 70px;
    }

    .create-hero h1 {
        margin-bottom: 45px;
        font-size: clamp(3rem, 13vw, 5rem);
    }

    .create-hero-bottom {
        display: block;
    }

    .create-scroll-note {
        display: block;
        margin-top: 30px;
    }

    .create-feature {
        padding: 60px 0 80px;
    }

    .image-placeholder {
        min-height: 380px;
    }

    .create-feature-caption {
        display: block;
    }

    .create-feature-caption p {
        margin-top: 15px;
    }

    .create-areas {
        padding: 75px 0 90px;
    }

    .create-section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 45px;
    }

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

    .create-card-large {
        grid-column: auto;
    }

    .create-card-image .image-placeholder,
    .create-card-image-short .image-placeholder {
        min-height: 380px;
    }

    .create-card-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .create-diary {
        padding: 80px 0;
    }

    .diary-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .diary-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

    .diary-tall {
        grid-row: span 2;
    }

    .diary-wide {
        grid-column: span 2;
    }

    .create-ai {
        padding: 75px 0;
    }

    .create-ai-box {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .create-closing {
        padding: 90px 0;
    }
}
/* =========================================
   PROJECTS PAGE
========================================= */

.projects-hero {
    padding: 115px 0 100px;
    border-bottom: 1px solid var(--line);
}

.projects-label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

.projects-hero h1 {
    max-width: 950px;
    margin: 25px 0 35px;
    font-family: var(--serif);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.projects-intro {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}


/* =========================================
   PROJECT INTRODUCTION
========================================= */

.projects-introduction {
    padding: 120px 0;
}

.projects-intro-grid {
    display: grid;
    grid-template-columns: 170px minmax(0, 780px);
    gap: 85px;
    max-width: 1050px;
    margin-left: 55px;
}

.projects-side-label {
    padding-top: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
}

.projects-main-text {
    max-width: 780px;
}

.projects-main-text .large-text {
    margin-top: 0;
    margin-bottom: 35px;
}

.projects-main-text p:not(.large-text) {
    max-width: 700px;
    margin-bottom: 22px;
    color: var(--muted);
    line-height: 1.8;
}


/* =========================================
   FEATURED PROJECT
========================================= */

.featured-project {
    padding: 100px 0 120px;
    background: var(--paper-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.project-feature-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.project-browser {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 50px rgba(37, 38, 34, 0.08);
}

.browser-bar {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
}

.browser-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--line);
}

.project-screen {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
}

.project-feature-info {
    max-width: 450px;
}

.project-type,
.project-category {
    margin: 0 0 14px;
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--green);
}

.project-feature-info h2 {
    margin: 0 0 25px;
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.project-feature-info > p:not(.project-type) {
    margin: 0 0 35px;
    color: var(--muted);
    line-height: 1.8;
}

.project-meta {
    border-top: 1px solid var(--line);
}

.project-meta div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.project-meta span {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.project-meta strong {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--charcoal);
}

.project-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 4px;
    font-size: 0.82rem;
}

.project-link:hover {
    color: var(--green);
    border-color: var(--green);
}


/* =========================================
   PROJECT LIST
========================================= */

.project-list-section {
    padding: 120px 0;
}

.project-list-heading {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.project-list-heading h2 {
    max-width: 700px;
    margin: 15px 0 0;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.project-list-heading > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.project-list {
    border-top: 1px solid var(--line);
}

.project-row {
    display: grid;
    grid-template-columns: 90px 1fr 120px;
    gap: 35px;
    align-items: start;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
    transition: padding 0.25s ease;
}

.project-row:hover {
    padding-left: 15px;
    padding-right: 15px;
    background: var(--paper-light);
}

.project-number {
    padding-top: 5px;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--brown);
}

.project-row-main h3 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
}

.project-row-main p:not(.project-category) {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.project-row-status {
    padding-top: 5px;
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-align: right;
}


/* =========================================
   PROJECT PROCESS
========================================= */

.project-process {
    padding: 110px 0 130px;
    background: var(--green-light);
}

.process-heading {
    max-width: 850px;
    margin-bottom: 65px;
}

.process-heading h2 {
    margin: 15px 0 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(82, 99, 77, 0.35);
    border-left: 1px solid rgba(82, 99, 77, 0.35);
}

.process-step {
    min-height: 270px;
    padding: 28px;
    border-right: 1px solid rgba(82, 99, 77, 0.35);
    border-bottom: 1px solid rgba(82, 99, 77, 0.35);
}

.process-step > span {
    display: block;
    margin-bottom: 55px;
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--brown);
}

.process-step h3 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
}

.process-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}


/* =========================================
   PROJECTS CLOSING
========================================= */

.projects-closing {
    padding: 130px 0;
    text-align: center;
}

.projects-closing .closing-small {
    margin-bottom: 25px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--green);
}

.projects-closing h2 {
    max-width: 850px;
    margin: 0 auto 20px;
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.projects-closing p:last-child {
    margin: 0;
    color: var(--muted);
}


/* =========================================
   PROJECTS PAGE — MOBILE
========================================= */

@media (max-width: 900px) {

    .projects-intro-grid {
        margin-left: 0;
    }

    .project-feature-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .project-list-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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


@media (max-width: 800px) {

    .projects-hero {
        padding: 80px 0 70px;
    }

    .projects-hero h1 {
        font-size: clamp(3rem, 13vw, 5rem);
    }

    .projects-introduction {
        padding: 75px 0;
    }

    .featured-project,
    .project-list-section {
        padding: 75px 0 90px;
    }

    .project-screen {
        min-height: 320px;
    }

    .project-row {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .project-row-status {
        grid-column: 2;
        padding-top: 0;
        text-align: left;
    }

    .project-row:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .project-process {
        padding: 75px 0 90px;
    }

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

    .process-step {
        min-height: auto;
    }

    .process-step > span {
        margin-bottom: 35px;
    }

    .projects-closing {
        padding: 90px 0;
    }
}
/* =========================================================
   EXPLORE
   ========================================================= */

.explore-hero {
    padding: 120px 0 110px;
    border-bottom: 1px solid var(--line);
}

.explore-label {
    display: block;
    margin-bottom: 28px;
    color: var(--green);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.explore-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.explore-hero-text {
    max-width: 580px;
    margin: 45px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* Introduction */

.explore-introduction {
    padding: 120px 0;
}

.explore-intro-grid {
    display: grid;
    grid-template-columns: 170px minmax(0, 780px);
    gap: 85px;
    max-width: 1050px;
    margin-left: 55px;
}

.explore-side-label {
    padding-top: 8px;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.explore-main-text {
    max-width: 780px;
}

.explore-main-text .large-text {
    margin: 0 0 35px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.explore-main-text p:not(.large-text) {
    max-width: 700px;
    margin-bottom: 22px;
    color: var(--muted);
    line-height: 1.8;
}


/* Section heading */

.explore-section {
    padding: 110px 0;
    background: var(--paper-light);
    border-top: 1px solid var(--line);
}

.explore-section-heading {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    align-items: start;
    margin-bottom: 65px;
}

.explore-number {
    padding-top: 8px;
    color: var(--brown);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.explore-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.explore-section-heading h2 {
    max-width: 700px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
}


/* Places */

.explore-places-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 55px 35px;
    margin-left: 80px;
}

.explore-place-large {
    grid-row: span 2;
}

.explore-placeholder {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    border: 1px solid var(--line);
    overflow: hidden;
}

.explore-place-large .explore-placeholder {
    min-height: 720px;
}

.explore-placeholder::before {
    content: "";
    position: absolute;
    width: 65%;
    height: 65%;
    border: 1px solid rgba(82, 99, 77, 0.25);
    border-radius: 50%;
}

.explore-placeholder span {
    position: relative;
    z-index: 1;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.explore-place-info {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
    padding: 25px 0 0;
}

.explore-place-number {
    padding-top: 4px;
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.explore-place-info h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;
}

.explore-place-info p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}


/* Experiences */

.explore-experiences {
    padding: 120px 0;
    border-top: 1px solid var(--line);
}

.experience-list {
    margin-left: 80px;
    border-top: 1px solid var(--line);
}

.experience-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 30px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.experience-number {
    padding-top: 5px;
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.experience-item h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
}

.experience-item p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}


/* Curiosity */

.explore-curiosity {
    padding: 110px 0;
    background: var(--brown-light);
}

.curiosity-box {
    max-width: 950px;
    margin: 0 auto;
    padding: 70px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.curiosity-label {
    display: block;
    margin-bottom: 30px;
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.curiosity-box h2 {
    max-width: 700px;
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.curiosity-box > p {
    max-width: 550px;
    margin-bottom: 45px;
    color: var(--muted);
    line-height: 1.7;
}

.curiosity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.curiosity-list span {
    padding: 10px 15px;
    border: 1px solid var(--line);
    background: var(--paper-light);
    color: var(--charcoal);
    font-size: 0.78rem;
}


/* Closing */

.explore-closing {
    padding: 130px 0;
    background: var(--charcoal);
    color: var(--paper);
}

.explore-closing-large {
    max-width: 850px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.explore-closing-small {
    margin: 35px 0 0;
    color: #b7b7ad;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}


/* Responsive */

@media (max-width: 900px) {

    .explore-hero {
        padding: 90px 0 80px;
    }

    .explore-intro-grid {
        margin-left: 0;
    }

    .explore-places-grid {
        margin-left: 0;
    }

    .experience-list {
        margin-left: 0;
    }

    .explore-place-large .explore-placeholder {
        min-height: 550px;
    }

    .curiosity-box {
        padding: 50px;
    }
}


@media (max-width: 700px) {

    .explore-hero {
        padding: 70px 0;
    }

    .explore-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
    }

    .explore-introduction {
        padding: 75px 0;
    }

    .explore-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .explore-section,
    .explore-experiences {
        padding: 75px 0;
    }

    .explore-section-heading {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        margin-bottom: 45px;
    }

    .explore-places-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .explore-place-large {
        grid-row: auto;
    }

    .explore-place-large .explore-placeholder {
        min-height: 420px;
    }

    .explore-placeholder {
        min-height: 280px;
    }

    .experience-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .curiosity-box {
        padding: 35px 25px;
    }

    .explore-curiosity {
        padding: 75px 0;
    }

    .explore-closing {
        padding: 90px 0;
    }

}
/* =========================================================
   NOW
   ========================================================= */

.now-hero {
    padding: 105px 0 110px;
    background: var(--charcoal);
    color: var(--paper);
}

.now-label {
    display: block;
    margin-bottom: 65px;
    color: #aaa99f;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.now-hero-grid {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 80px;
    align-items: end;
}

.now-hero h1 {
    max-width: 850px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 8vw, 7.2rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.now-date {
    padding-bottom: 8px;
    border-top: 1px solid #55564f;
    padding-top: 18px;
}

.now-date span {
    display: block;
    margin-bottom: 8px;
    color: #999990;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
}

.now-date strong {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--paper);
}


/* Current chapter */

.now-chapter {
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
}

.now-section-label {
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.now-chapter-content {
    max-width: 800px;
    margin: 55px 0 0 250px;
}

.now-chapter-content h2 {
    margin: 0 0 35px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.now-lead {
    max-width: 700px;
    margin-bottom: 35px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.45;
}

.now-chapter-content p:not(.now-lead) {
    max-width: 650px;
    margin-bottom: 20px;
    color: var(--muted);
    line-height: 1.8;
}


/* Currently */

.now-current {
    padding: 120px 0;
    background: var(--paper-light);
    border-bottom: 1px solid var(--line);
}

.now-section-heading {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    margin-bottom: 65px;
}

.now-section-heading > span {
    padding-top: 8px;
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.now-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.now-section-heading h2 {
    max-width: 700px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
}


/* Current list */

.now-list {
    margin-left: 115px;
    border-top: 1px solid var(--line);
}

.now-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 30px;
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
}

.now-item-number {
    padding-top: 4px;
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.now-item-content > span {
    display: block;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 0.65rem;
    letter-spacing: 0.13em;
}

.now-item-content h3 {
    max-width: 700px;
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 400;
}

.now-item-content p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}


/* Thinking */

.now-thinking {
    padding: 125px 0;
    background: var(--brown-light);
}

.now-thinking-grid {
    display: grid;
    grid-template-columns: 170px minmax(0, 750px);
    gap: 85px;
    max-width: 1050px;
    margin-left: 55px;
}

.now-thinking-grid h2 {
    max-width: 750px;
    margin: 0 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.now-thinking-grid p {
    max-width: 650px;
    margin-bottom: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.now-thinking-grid p:first-of-type {
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}


/* On my desk */

.now-stack {
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
}

.now-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 115px;
    border-top: 1px solid var(--line);
}

.now-stack-item {
    min-height: 220px;
    padding: 35px 35px 35px 0;
    border-bottom: 1px solid var(--line);
}

.now-stack-item:nth-child(odd) {
    padding-right: 45px;
    border-right: 1px solid var(--line);
}

.now-stack-item:nth-child(even) {
    padding-left: 45px;
}

.now-stack-item span {
    display: block;
    margin-bottom: 35px;
    color: var(--brown);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
}

.now-stack-item h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
}

.now-stack-item p {
    max-width: 400px;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* Closing */

.now-closing {
    padding: 140px 0;
    background: var(--charcoal);
    color: var(--paper);
}

.now-closing span {
    display: block;
    margin-bottom: 35px;
    color: #aaa99f;
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.now-closing h2 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.045em;
}

.now-closing p {
    margin: 40px 0 0;
    color: #aaa99f;
    font-size: 0.9rem;
}


/* Responsive */

@media (max-width: 900px) {

    .now-hero {
        padding: 80px 0 90px;
    }

    .now-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .now-chapter-content {
        margin-left: 0;
    }

    .now-list {
        margin-left: 0;
    }

    .now-thinking-grid {
        margin-left: 0;
    }

    .now-stack-grid {
        margin-left: 0;
    }

}


@media (max-width: 700px) {

    .now-hero {
        padding: 70px 0;
    }

    .now-label {
        margin-bottom: 45px;
    }

    .now-hero h1 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .now-chapter,
    .now-current,
    .now-thinking,
    .now-stack {
        padding: 75px 0;
    }

    .now-chapter-content {
        margin-top: 40px;
    }

    .now-section-heading {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        margin-bottom: 45px;
    }

    .now-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 35px 0;
    }

    .now-thinking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .now-stack-grid {
        grid-template-columns: 1fr;
    }

    .now-stack-item,
    .now-stack-item:nth-child(odd),
    .now-stack-item:nth-child(even) {
        padding: 30px 0;
        border-right: none;
    }

    .now-closing {
        padding: 90px 0;
    }

}
/* =========================================================
   BLOG
   ========================================================= */

.blog-hero {
    padding: 120px 0 110px;
    border-bottom: 1px solid var(--line);
}

.blog-label {
    display: block;
    margin-bottom: 28px;
    color: var(--green);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.blog-hero p {
    max-width: 570px;
    margin: 45px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* Introduction */

.blog-introduction {
    padding: 120px 0;
}

.blog-intro-grid {
    display: grid;
    grid-template-columns: 170px minmax(0, 780px);
    gap: 85px;
    max-width: 1050px;
    margin-left: 55px;
}

.blog-side-label {
    padding-top: 8px;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.blog-main-text {
    max-width: 780px;
}

.blog-main-text .large-text {
    margin: 0 0 35px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.blog-main-text p:not(.large-text) {
    max-width: 700px;
    margin-bottom: 22px;
    color: var(--muted);
    line-height: 1.8;
}


/* Featured */

.blog-featured {
    padding: 110px 0;
    background: var(--paper-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.blog-section-label {
    margin-bottom: 55px;
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.featured-post {
    display: grid;
    grid-template-columns: 80px minmax(0, 850px);
    gap: 35px;
    margin-left: 80px;
}

.featured-post-number {
    padding-top: 8px;
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.post-category {
    display: block;
    margin-bottom: 15px;
    color: var(--green);
    font-size: 0.68rem;
    letter-spacing: 0.13em;
}

.featured-post h2 {
    max-width: 850px;
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.featured-post p {
    max-width: 650px;
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.post-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 0.72rem;
}

.post-link {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 4px;
}

.post-link:hover {
    color: var(--green);
    border-color: var(--green);
}


/* Archive */

.blog-list-section {
    padding: 120px 0;
}

.blog-section-heading {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    margin-bottom: 65px;
}

.blog-section-heading > span {
    padding-top: 8px;
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.blog-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.blog-section-heading h2 {
    max-width: 750px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;
}


/* Post list */

.blog-post-list {
    margin-left: 115px;
    border-top: 1px solid var(--line);
}

.blog-post {
    display: grid;
    grid-template-columns: 70px minmax(0, 750px);
    gap: 30px;
    padding: 45px 0;
    border-bottom: 1px solid var(--line);
}

.blog-post-date {
    padding-top: 5px;
    color: var(--brown);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.blog-post-content h3 {
    max-width: 750px;
    margin: 0 0 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.15;
}

.blog-post-content p {
    max-width: 650px;
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.75;
}

.blog-post-content a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.78rem;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 3px;
}

.blog-post-content a:hover {
    color: var(--green);
    border-color: var(--green);
}


/* Medium */

.blog-medium {
    padding: 110px 0;
    background: var(--green-light);
}

.medium-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 65px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.medium-label {
    display: block;
    margin-bottom: 25px;
    color: var(--green);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.medium-box h2 {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.medium-box p {
    max-width: 570px;
    margin: 0 0 35px;
    color: var(--muted);
    line-height: 1.75;
}

.medium-link {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 4px;
}

.medium-link:hover {
    color: var(--green);
    border-color: var(--green);
}


/* Closing */

.blog-closing {
    padding: 140px 0;
    background: var(--charcoal);
    color: var(--paper);
}

.blog-closing p {
    margin: 0 0 35px;
    color: #aaa99f;
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.blog-closing h2 {
    max-width: 850px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.05em;
}


/* Responsive */

@media (max-width: 900px) {

    .blog-hero {
        padding: 90px 0;
    }

    .blog-intro-grid {
        margin-left: 0;
    }

    .featured-post {
        margin-left: 0;
    }

    .blog-post-list {
        margin-left: 0;
    }

}


@media (max-width: 700px) {

    .blog-hero {
        padding: 70px 0;
    }

    .blog-hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
    }

    .blog-introduction,
    .blog-featured,
    .blog-list-section {
        padding: 75px 0;
    }

    .blog-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .featured-post {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .blog-section-heading {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        margin-bottom: 45px;
    }

    .blog-post {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 35px 0;
    }

    .medium-box {
        padding: 40px 25px;
    }

    .blog-medium {
        padding: 75px 0;
    }

    .blog-closing {
        padding: 90px 0;
    }

}