/* ===== VARIABLES ===== */
:root {
    --bg:          #FAF9F6;
    --bg-alt:      #F2EDE5;
    --bg-dark:     #1A1A1A;
    --text:        #1C1C1C;
    --text-muted:  #7A6F6A;
    --accent:      #C17F74;
    --accent-dark: #A86558;
    --white:       #FFFFFF;
    --border:      #E5DDD4;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    --max-w:      1140px;
    --radius:     12px;
    --section-v:  96px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== LAYOUT HELPERS ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-v) 0; }
.section-alt { background: var(--bg-alt); }

.section-header { margin-bottom: 48px; }
.section-header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

header nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

header nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.01em;
    transition: color 0.2s, background 0.2s;
}

header nav a:hover { color: var(--text); background: var(--bg-alt); }
header nav a.active { color: var(--accent); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: opacity 0.2s;
}

/* ===== HERO ===== */
.hero {
    max-width: var(--max-w);
    margin: 72px auto 0;
    padding: 0 24px 80px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 72px;
    align-items: center;
}

.hero-photo-wrap {
    flex-shrink: 0;
    position: relative;
    padding-bottom: 14px;
    padding-right: 14px;
}

.hero-photo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border: 1.5px solid var(--accent);
    border-radius: 4px;
    opacity: 0.35;
}

.hero-photo,
.hero-photo-placeholder {
    width: 300px;
    height: 380px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.hero-photo { object-fit: cover; }

.hero-photo-placeholder {
    background: linear-gradient(145deg, var(--bg-alt) 0%, #ede4e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-initials {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.4;
    letter-spacing: 0.15em;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--accent);
    font-style: italic;
    font-family: var(--font-display);
    margin-bottom: 20px;
    padding-left: 14px;
    border-left: 2px solid var(--accent);
}

.hero-bio {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(193, 127, 116, 0.06);
}

/* ===== BLOG GRID ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.blog-card-img-placeholder {
    width: 100%;
    height: 210px;
    background: var(--bg-alt);
}

.blog-card-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card-category {
    background: var(--bg-alt);
    color: var(--accent);
    padding: 2px 9px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.blog-card-source {
    color: var(--text-light);
    font-size: 0.68rem;
    font-style: italic;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.2s;
}
.blog-card-title:hover { color: var(--accent); }

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== PRESS (basinda sayfası listesi) ===== */
.press-list { display: flex; flex-direction: column; gap: 16px; }

.press-item {
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    transition: box-shadow 0.2s;
}
.press-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.press-item-body { flex: 1; min-width: 0; }

.press-source {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 6px;
}

.press-headline {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.press-headline:hover { color: var(--accent); }
.press-arrow { opacity: 0.4; flex-shrink: 0; }
.press-headline:hover .press-arrow { opacity: 1; }

.press-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== PRESS CARDS (ana sayfa) ===== */
.press-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.press-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    text-decoration: none;
    color: inherit;
}
.press-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.press-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}
.press-card-img-placeholder {
    width: 100%;
    height: 190px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}
.press-card-img-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.press-card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.press-card-source {
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.press-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    flex: 1;
}

.press-card-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    border: none;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; }

.btn-outline {
    display: inline-block;
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--bg-alt);
    padding: 64px 0 48px;
    border-bottom: 1px solid var(--border);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-top: 4px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 56px;
}
.pagination-btn {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.pagination-btn:hover { color: var(--accent); }
.pagination-info { font-size: 0.85rem; color: var(--text-muted); }

/* ===== ARTICLE ===== */
.article-hero { max-height: 480px; overflow: hidden; }
.article-hero-img { width: 100%; height: 480px; object-fit: cover; }

.article-header {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 0 40px;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 16px 0 20px;
    color: var(--text);
}

.article-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 48px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
}

.article-body p { margin-bottom: 1.4em; }
.article-body h2 { font-family: var(--font-display); font-size: 1.6rem; margin: 2em 0 0.6em; }
.article-body h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 1.6em 0 0.5em; }
.article-body a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; }
.article-body blockquote {
    border-left: 3px solid var(--accent);
    margin: 2em 0;
    padding: 12px 24px;
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-muted);
}
.article-body ul, .article-body ol { padding-left: 1.6em; margin-bottom: 1.4em; }
.article-body li { margin-bottom: 0.4em; }
.article-body figure { margin: 2em 0 2.4em; }
.article-body figure img { width: 100%; height: auto; border-radius: 4px; display: block; }
.article-body figure figcaption { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5em; text-align: center; }

.article-footer {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 80px;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.about-photo,
.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
}

.about-photo { object-fit: cover; }
.about-photo-placeholder {
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.2em;
}

.about-contact-hint { margin-top: 32px; }

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 40px;
    max-width: 680px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 0;
    width: 1.5px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -46px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--bg);
}

.section-alt .timeline-dot { box-shadow: 0 0 0 3px var(--bg-alt); }

.timeline-year {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.timeline-role {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.timeline-place {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-info-desc {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-channels { display: flex; flex-direction: column; gap: 12px; }

.contact-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}
.contact-channel:hover { border-color: var(--accent); background: rgba(193,127,116,0.04); }

.contact-channel-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(193, 127, 116, 0.12);
}

.form-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #15803d;
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* ===== ERROR PAGE ===== */
.error-page {
    text-align: center;
    padding: 120px 24px;
}

.error-code {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 700;
    color: var(--bg-alt);
    line-height: 1;
    margin-bottom: 8px;
}

.error-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.error-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    color: var(--text-muted);
    text-align: center;
    padding: 48px 0;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 48px 0;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.footer-social-link:hover { color: var(--white); }

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-grid { grid-template-columns: 220px 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --section-v: 64px; }

    .hero {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 40px;
        padding-bottom: 56px;
    }

    .hero-photo-wrap { display: flex; justify-content: center; padding: 0; }
    .hero-photo-wrap::after { display: none; }

    .hero-photo,
    .hero-photo-placeholder {
        width: 200px;
        height: 250px;
    }

    .hero-name { font-size: 2.5rem; }
    .hero-bio { max-width: 100%; }

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

    header nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(250, 249, 246, 0.98);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px;
        gap: 2px;
    }

    header nav.open { display: flex; }
    header nav a { border-radius: var(--radius); padding: 10px 16px; }

    .nav-toggle { display: flex; }

    .about-grid { grid-template-columns: 1fr; }
    .about-photo-wrap { max-width: 200px; }

    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-social { justify-content: center; }

    .contact-grid { gap: 40px; }

    .press-item { flex-direction: column; gap: 8px; }
    .press-date { align-self: flex-start; }

    .press-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section-header--row { flex-direction: column; align-items: flex-start; }
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

/* ===== FEATURED BLOG CARD ===== */
.blog-card--featured {
    flex-direction: row;
    margin-bottom: 24px;
    max-height: 440px;
}

.blog-card--featured .blog-card-img,
.blog-card--featured .blog-card-img-placeholder {
    width: 100%;
    flex-shrink: 0;
    min-height: 320px;
    max-height: 440px;
}

.blog-card--featured .blog-card-img {
    height: 100%;
    object-fit: cover;
}

.blog-card--featured .blog-card-body {
    padding: 32px 36px;
    justify-content: center;
}

.blog-card--featured .blog-card-title {
    font-size: 1.55rem;
    margin-bottom: 14px;
}

.blog-card--featured .blog-card-excerpt {
    -webkit-line-clamp: 4;
}

/* ===== READ MORE LINK ===== */
.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    padding-top: 18px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}
.blog-card-read-more:hover { gap: 9px; color: var(--accent-dark); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE — featured card ===== */
@media (max-width: 860px) {
    .blog-card--featured {
        flex-direction: column;
        max-height: none;
    }
    .blog-card--featured .blog-card-img,
    .blog-card--featured .blog-card-img-placeholder {
        width: 100%;
        min-height: 240px;
        max-height: 280px;
        height: 280px;
    }
    .blog-card--featured .blog-card-body {
        padding: 22px 24px 24px;
    }
    .blog-card--featured .blog-card-title {
        font-size: 1.3rem;
    }

    .press-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ===== BOOK SPOTLIGHT (home) ===== */
.book-spotlight {
    background: var(--bg-dark);
    padding: 80px 0;
}

.book-spotlight-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}

.book-spotlight-cover {
    width: 180px;
    flex-shrink: 0;
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.book-spotlight-text { flex: 1; }

.book-spotlight-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.book-spotlight-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.book-spotlight-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

/* ===== BOOK PAGE ===== */
.book-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.book-cover {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.book-buy-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.book-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--text);
}

.book-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-display);
    margin-bottom: 40px;
    line-height: 1.5;
}

.book-excerpt {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
}

.book-excerpt p { margin-bottom: 1.4em; }

.book-excerpt blockquote {
    border-left: 3px solid var(--accent);
    margin: 0 0 1.8em;
    padding: 18px 28px;
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 1.08rem;
    line-height: 1.7;
}

.book-whisper {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 2em !important;
}

@media (max-width: 768px) {
    .book-spotlight-inner {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .book-spotlight-cover { width: 140px; }
    .book-spotlight-desc { margin: 0 auto 28px; }

    .book-layout { grid-template-columns: 1fr; gap: 40px; }
    .book-cover-wrap { max-width: 260px; margin: 0 auto; }
}

/* ===== PRESS CARDS (basinda page) ===== */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pc {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.pc:hover, .pc:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}
.pc:focus-visible { box-shadow: 0 0 0 3px rgba(193, 127, 116, 0.35); }

.pc-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--bg-alt);
}
.pc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.32s ease;
}
.pc:hover .pc-thumb img { transform: scale(1.05); }

.pc-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pc-thumb-placeholder span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.35;
}

.pc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 28, 28, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.22s ease;
}
.pc:hover .pc-overlay,
.pc:focus-visible .pc-overlay { opacity: 1; }

.pc-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pc-source {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--accent);
    margin-bottom: 6px;
}

.pc-title {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-date {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ===== LIGHTBOX ===== */
.lb-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.lb-backdrop.is-open { opacity: 1; pointer-events: auto; }

.lb {
    position: fixed;
    inset: 0;
    z-index: 201;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.lb.is-open { opacity: 1; transform: scale(1); pointer-events: auto; }

.lb-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 202;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }

.lb-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    z-index: 203;
}
.lb-img-wrap { position: relative; }
.lb-img-wrap:hover .lb-zoom { opacity: 1; }
.lb-zoom:hover { background: rgba(0,0,0,0.75); }

/* Zoomed state */
.lb.is-zoomed { align-items: flex-start; padding: 72px 0 0; }
.lb.is-zoomed .lb-inner {
    max-width: 100%;
    max-height: calc(100vh - 72px);
    overflow: auto;
    gap: 0;
    padding: 0 24px 24px;
    justify-content: center;
}
.lb.is-zoomed .lb-info { display: none; }
.lb.is-zoomed .lb-img-wrap {
    max-width: none;
    max-height: none;
    overflow: visible;
    flex: none;
}
.lb.is-zoomed .lb-img-wrap img {
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    min-width: min(100%, 900px);
    cursor: zoom-out;
}
.lb.is-zoomed .lb-zoom {
    position: fixed;
    bottom: auto;
    right: 68px;
    top: 20px;
    opacity: 1;
}

.lb-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 960px;
    width: 100%;
    max-height: calc(100vh - 80px);
}

.lb-img-wrap {
    flex: 0 0 auto;
    max-width: 560px;
    max-height: calc(100vh - 80px);
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.lb-img-wrap img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: contain;
    border-radius: var(--radius);
}

.lb-info {
    flex: 1;
    min-width: 0;
    color: var(--white);
    padding-top: 8px;
}

.lb-source {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--accent);
    margin-bottom: 12px;
}

.lb-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--white);
    margin-bottom: 10px;
}

.lb-date {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
}

.lb-link {
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
    display: inline-flex;
    align-items: center;
}
.lb-link:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 700px) {
    .press-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 440px) {
    .press-grid { grid-template-columns: 1fr; }
    .pc-thumb { height: 200px; }
}

@media (max-width: 700px) {
    .lb-inner { flex-direction: column; gap: 20px; overflow-y: auto; }
    .lb-img-wrap { max-width: 100%; }
    .lb { align-items: flex-start; padding: 56px 16px 24px; }
}
