/*
Theme Name: Holestine
Theme URI: https://holestine.com
Author: Dan Holestine
Author URI: https://holestine.com
Description: A bold, split-personality personal branding theme for holestine.com. Navy and linen alternating sections, duotone photography, editorial typography.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Tags: personal, blog, photography, custom-colors, full-width-template, two-columns
Text Domain: holestine
*/

/* ─────────────────────────────────────────
   PALETTE & DESIGN TOKENS
───────────────────────────────────────── */
:root {
    --navy:       #020035;
    --linen:      #F5F3ED;
    --silver:     #CCD1D7;
    --olive:      #6E724D;
    --earth:      #292100;
    --periwinkle: #ADABD1;

    --text-on-navy:  #CCD1D7;
    --text-on-linen: #020035;
    --dim-navy:      #4A4E6A;
    --dim-linen:     #8A8880;
    --card-linen:    #EAE7DF;

    --display: 'Bebas Neue', sans-serif;
    --sans:    'DM Sans', sans-serif;
    --mono:    'DM Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    background: var(--linen);
    color: var(--text-on-linen);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ─────────────────────────────────────────
   PALETTE SIGNATURE BAR
───────────────────────────────────────── */
.sig-bar {
    height: 5px;
    display: flex;
    position: relative;
    z-index: 200;
}
.sig-bar span { flex: 1; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 5px;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 56px;
}

.nav-left {
    background: var(--navy);
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 48px;
}

.nav-tagline {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dim-navy);
}

.nav-center {
    background: var(--olive);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    z-index: 2;
}

.site-logo {
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--linen);
    white-space: nowrap;
    text-decoration: none;
}

.nav-right {
    background: var(--linen);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 48px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim-linen);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--navy);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--navy);
    transition: all 0.3s;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 61px;
}

.hero-left {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 64px 56px 72px 48px;
    position: relative;
}

.hero-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--olive) 30%, var(--periwinkle) 70%, transparent);
}

.hero-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 20px;
    animation: fadeUp 0.7s ease forwards 0.3s;
    opacity: 0;
}

.hero-title {
    font-family: var(--display);
    font-size: clamp(72px, 9vw, 128px);
    line-height: 0.9;
    color: var(--silver);
    animation: fadeUp 0.8s ease forwards 0.5s;
    opacity: 0;
}

.hero-title .name-last {
    color: var(--periwinkle);
    display: block;
}

.hero-divider {
    width: 48px;
    height: 2px;
    background: var(--olive);
    margin: 28px 0;
    animation: fadeUp 0.8s ease forwards 0.65s;
    opacity: 0;
}

.hero-sub {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dim-navy);
    max-width: 360px;
    animation: fadeUp 0.8s ease forwards 0.75s;
    opacity: 0;
}

.hero-cta {
    margin-top: 44px;
    display: flex;
    gap: 16px;
    align-items: center;
    animation: fadeUp 0.8s ease forwards 0.9s;
    opacity: 0;
}

.btn-primary {
    background: var(--olive);
    color: var(--linen);
    border: none;
    padding: 13px 28px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    transition: background 0.2s, transform 0.15s, color 0.2s;
}

.btn-primary:hover {
    background: var(--periwinkle);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-ghost {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--dim-navy);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

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

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeIn 1s ease forwards 1.4s;
    opacity: 0;
}

.scroll-hint span {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--dim-navy);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--dim-navy), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite 1.6s;
}

.hero-right {
    background: var(--card-linen);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    animation: fadeIn 1.2s ease forwards 0.2s;
    opacity: 0;
}

.hero-right::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at bottom right, rgba(173,171,209,0.25), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* When a featured image is set, make it fill the panel */
.hero-right .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.4s;
    z-index: 0;
}

.hero-right:hover .hero-image {
    filter: grayscale(0%) contrast(1);
}

.hero-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 2;
    position: relative;
}

.placeholder-ring {
    width: 80px;
    height: 80px;
    border: 1px solid var(--dim-linen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim-linen);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.photo-caption-text {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim-navy);
}

.photo-caption-loc {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--olive);
}

/* ─────────────────────────────────────────
   SECTION UTILITIES
───────────────────────────────────────── */
.section-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #DDDBD4;
}

.section-label.on-navy::after {
    background: #0A0A4A;
}

/* ─────────────────────────────────────────
   ABOUT SECTION — linen
───────────────────────────────────────── */
.about-section {
    background: var(--linen);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #DDDBD4;
}

.about-left {
    background: var(--linen);
    padding: 80px 56px 80px 48px;
    border-right: 1px solid #DDDBD4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right {
    padding: 80px 48px 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-number {
    font-family: var(--display);
    font-size: 96px;
    line-height: 1;
    color: #DDDBD4;
    margin-bottom: -16px;
}

.section-heading {
    font-family: var(--display);
    font-size: 56px;
    line-height: 0.95;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.body-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--dim-linen);
}

.body-text strong {
    color: var(--olive);
    font-weight: 500;
}

.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #DDDBD4;
}

.stat-num {
    font-family: var(--display);
    font-size: 40px;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim-linen);
    margin-top: 4px;
}

/* ─────────────────────────────────────────
   CONTENT GRID — navy
───────────────────────────────────────── */
.content-section {
    background: var(--navy);
    padding: 72px 48px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
}

.card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.015);
    z-index: 2;
}

.card-featured { grid-row: span 2; background: var(--earth); }
.card:nth-child(2) { background: #070760; }
.card:nth-child(3) { background: var(--card-linen); }
.card:nth-child(4) { background: var(--card-linen); }
.card:nth-child(5) { background: #070760; }

.card-inner {
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    position: relative;
}

.card-featured .card-inner { min-height: 460px; }

.card-overlay {
    position: absolute;
    inset: 0;
}

.card-featured        .card-overlay { background: linear-gradient(180deg, transparent 20%, rgba(41,33,0,0.92) 100%); }
.card:nth-child(2)    .card-overlay { background: linear-gradient(180deg, transparent 30%, rgba(7,7,96,0.9) 100%); }
.card:nth-child(3)    .card-overlay { background: linear-gradient(180deg, transparent 30%, rgba(245,243,237,0.9) 100%); }
.card:nth-child(4)    .card-overlay { background: linear-gradient(180deg, transparent 30%, rgba(245,243,237,0.9) 100%); }
.card:nth-child(5)    .card-overlay { background: linear-gradient(180deg, transparent 30%, rgba(7,7,96,0.9) 100%); }

/* Post thumbnail fills card when present */
.card .card-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.card-tag {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.card-featured        .card-tag { color: var(--olive); }
.card:nth-child(2)    .card-tag { color: var(--periwinkle); }
.card:nth-child(3)    .card-tag { color: var(--olive); }
.card:nth-child(4)    .card-tag { color: var(--olive); }
.card:nth-child(5)    .card-tag { color: var(--periwinkle); }

.card-title {
    font-family: var(--display);
    font-size: 26px;
    line-height: 1.05;
    position: relative;
    z-index: 2;
}

.card-featured        .card-title { font-size: 40px; color: var(--silver); }
.card:nth-child(2)    .card-title { color: var(--silver); }
.card:nth-child(3)    .card-title { color: var(--navy); }
.card:nth-child(4)    .card-title { color: var(--navy); }
.card:nth-child(5)    .card-title { color: var(--silver); }

.card-meta {
    font-family: var(--mono);
    font-size: 9px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
    color: var(--dim-linen);
}

.card-featured        .card-meta { color: var(--dim-navy); }
.card:nth-child(2)    .card-meta { color: var(--dim-navy); }

.card-featured::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--olive), var(--periwinkle));
    z-index: 3;
}

/* ─────────────────────────────────────────
   PHOTO GALLERY — linen
───────────────────────────────────────── */
.gallery-section {
    background: var(--linen);
    padding: 72px 48px;
}

.photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.photo-cell {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.photo-cell:hover { transform: scale(1.02); z-index: 2; }

.photo-cell:nth-child(1) { background: #0A0A4A; }
.photo-cell:nth-child(2) { background: var(--card-linen); }
.photo-cell:nth-child(3) { background: #1A1C0A; }
.photo-cell:nth-child(4) { background: var(--earth); }

.photo-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(173,171,209,0.12);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.photo-cell:hover::after { opacity: 1; }

.photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s;
    z-index: 1;
    position: relative;
}

.photo-cell:hover img { filter: grayscale(0%); }

.photo-cell-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.photo-num {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--display);
    font-size: 48px;
    line-height: 1;
    opacity: 0.12;
    z-index: 3;
}

.photo-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────
   WRITING LIST — navy
───────────────────────────────────────── */
.writing-section {
    background: var(--navy);
    padding: 72px 48px;
}

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

.writing-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid #0A0A4A;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.writing-item::before {
    content: '';
    position: absolute;
    left: -48px; right: -48px;
    top: 0; bottom: 0;
    background: rgba(173,171,209,0.04);
    opacity: 0;
    transition: opacity 0.2s;
}

.writing-item:hover::before { opacity: 1; }

.writing-num {
    font-family: var(--display);
    font-size: 32px;
    color: #0A0A4A;
    line-height: 1;
}

.writing-title {
    font-family: var(--display);
    font-size: 28px;
    color: var(--silver);
    line-height: 1.05;
}

.writing-title span {
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim-navy);
    font-weight: 400;
    margin-top: 6px;
}

.writing-tag {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--olive);
    padding: 5px 12px;
    border: 1px solid var(--olive);
    white-space: nowrap;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer { background: var(--navy); }

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer-left {
    background: var(--navy);
    padding: 48px 56px 48px 48px;
    border-right: 1px solid #0A0A4A;
}

.footer-logo {
    font-family: var(--display);
    font-size: 48px;
    letter-spacing: 0.05em;
    color: var(--silver);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
}

.footer-tagline {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--olive);
}

.footer-right {
    background: var(--linen);
    padding: 48px 48px 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-links-heading {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--dim-linen);
    margin-bottom: 16px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-on-linen);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--olive); }

.footer-copy {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--dim-linen);
    margin-top: 32px;
}

.footer-bottom {
    background: var(--earth);
    padding: 14px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim-linen);
    opacity: 0.6;
}

/* ─────────────────────────────────────────
   SINGLE POST / PAGE
───────────────────────────────────────── */
.post-header {
    background: var(--navy);
    padding: 120px 48px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
}

.post-category {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 16px;
}

.post-title {
    font-family: var(--display);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.92;
    color: var(--silver);
}

.post-meta-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: end;
}

.post-meta-item {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim-navy);
}

.post-meta-item strong {
    color: var(--periwinkle);
    font-weight: 500;
}

.post-featured-image {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
    filter: grayscale(20%);
}

.post-content-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 48px;
}

.post-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-on-linen);
}

.post-content h2 {
    font-family: var(--display);
    font-size: 40px;
    color: var(--navy);
    margin: 48px 0 20px;
    line-height: 1;
}

.post-content h3 {
    font-family: var(--display);
    font-size: 28px;
    color: var(--navy);
    margin: 36px 0 16px;
}

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

.post-content a {
    color: var(--olive);
    border-bottom: 1px solid var(--olive);
    transition: color 0.2s, border-color 0.2s;
}

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

.post-content blockquote {
    border-left: 3px solid var(--periwinkle);
    padding: 4px 0 4px 28px;
    margin: 32px 0;
    font-style: italic;
    color: var(--dim-linen);
}

.post-content img {
    width: 100%;
    margin: 32px 0;
}

/* ─────────────────────────────────────────
   BLOG INDEX
───────────────────────────────────────── */
.blog-header {
    background: var(--navy);
    padding: 120px 48px 64px;
}

.blog-header .section-heading { color: var(--silver); font-size: clamp(60px, 8vw, 100px); }
.blog-header .section-label.on-navy { margin-bottom: 24px; }

.blog-grid {
    padding: 64px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.blog-card {
    background: var(--card-linen);
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.blog-card:hover { transform: translateY(-4px); }

.blog-card:nth-child(3n+2) { background: var(--navy); }

.blog-card-inner { padding: 32px; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; }

.blog-card .card-tag  { margin-bottom: 10px; }
.blog-card:nth-child(3n+2) .card-tag  { color: var(--periwinkle); }
.blog-card:not(:nth-child(3n+2)) .card-tag  { color: var(--olive); }

.blog-card .card-title { margin-bottom: 12px; }
.blog-card:nth-child(3n+2) .card-title { color: var(--silver); }
.blog-card:not(:nth-child(3n+2)) .card-title { color: var(--navy); }

.blog-card:nth-child(3n+2) .card-meta { color: var(--dim-navy); }
.blog-card:not(:nth-child(3n+2)) .card-meta { color: var(--dim-linen); }

.blog-card-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s;
}
.blog-card:hover .blog-card-thumb { filter: grayscale(0%); }

/* ─────────────────────────────────────────
   COMMENTS
───────────────────────────────────────── */
.comments-section {
    background: var(--linen);
    padding: 0 48px 72px;
    max-width: 720px;
    margin: 0 auto;
}

.comments-section h2 {
    font-family: var(--display);
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 32px;
}

.comment-list { list-style: none; padding: 0; }

.comment {
    padding: 24px 0;
    border-bottom: 1px solid #DDDBD4;
}

.comment-author-name {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 4px;
}

.comment-date {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--dim-linen);
    margin-bottom: 12px;
}

.comment-content { font-size: 15px; line-height: 1.7; color: var(--dim-linen); }

.comment-form-wrap {
    margin-top: 48px;
    padding: 36px;
    background: var(--card-linen);
}

.comment-form-wrap h3 {
    font-family: var(--display);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 24px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--linen);
    border: 1px solid #DDDBD4;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--periwinkle);
}

.comment-form textarea { min-height: 120px; resize: vertical; }

.comment-form .submit { background: var(--olive); }

/* ─────────────────────────────────────────
   WIDGETS & SIDEBAR
───────────────────────────────────────── */
.widget-title {
    font-family: var(--display);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 16px;
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50%       { opacity: 1;   transform: scaleX(1); }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .card-featured { grid-column: span 2; }
}

@media (max-width: 768px) {
    .site-nav {
        grid-template-columns: 1fr auto;
    }

    .nav-left { display: none; }

    .nav-right {
        display: none;
        position: absolute;
        top: 61px;
        left: 0;
        right: 0;
        background: var(--linen);
        padding: 24px 32px;
        flex-direction: column;
        align-items: flex-start;
        border-top: 1px solid #DDDBD4;
    }

    .nav-right.open { display: flex; }

    .nav-menu { flex-direction: column; gap: 16px; }

    .menu-toggle { display: flex; }

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

    .hero-right { min-height: 50vh; }

    .hero-left {
        padding: 80px 32px 48px;
    }

    .about-section { grid-template-columns: 1fr; }
    .about-left { border-right: none; border-bottom: 1px solid #DDDBD4; padding-bottom: 40px; }
    .about-right { padding-top: 40px; }

    .content-grid { grid-template-columns: 1fr; }
    .card-featured { grid-column: span 1; }

    .photo-strip { grid-template-columns: 1fr 1fr; }

    .writing-item { grid-template-columns: 48px 1fr; }
    .writing-tag { display: none; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-left { border-right: none; border-bottom: 1px solid #0A0A4A; }

    .post-header { grid-template-columns: 1fr; padding: 100px 32px 48px; }

    .blog-grid { grid-template-columns: 1fr; padding: 32px; }

    .content-section,
    .gallery-section,
    .writing-section { padding: 48px 32px; }

    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
