/* ===== YOUTUBE EMBED ===== */
.youtube-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== TOKENS ===== */
:root {
    --deep-purple: #6e4c8b;
    --deep-purple-light: #7f5e9c;
    --lavender: #a47bc7;
    --lavender-tint: #f1e9f8;
    --lavender-soft: #f7f2fa;
    --cream: #faf9f7;
    --gold: #c9a464;
    --gold-deep: #a6824a;
    --ink: #2b2230;
    --ink-soft: #6b6275;
    --border-soft: rgba(110, 76, 139, 0.15);
    --placeholder-bg: #e4e1e6;
    --placeholder-icon: #9c97a3;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
    body {
        background: #211a2b;
        color: #ede8f2;
    }
    .site-header {
        background: #211a2b;
        border-bottom-color: rgba(164, 123, 199, 0.2);
    }
    .nav-link {
        color: #ede8f2;
    }
    .nav-search {
        border-color: rgba(164, 123, 199, 0.3);
        color: #c7bfd4;
    }
    .nav-toggle {
        border-color: rgba(164, 123, 199, 0.3);
        color: #ede8f2;
    }
    .nav-links-open {
        background: #211a2b;
        border-color: rgba(164, 123, 199, 0.2);
    }
    .hero,
    .about-hero,
    .page-head {
        background: #2a2236;
    }
    .hero p.lede,
    .about-hero p.lede,
    .page-head p {
        color: #c7bfd4;
    }
    .eyebrow {
        color: #c9a464;
    }
    .about-section {
        background: #2a2236;
    }
    .post-card,
    .sidebar-block,
    .philosophy-card {
        background: #2a2236;
        border-color: rgba(164, 123, 199, 0.2);
    }
    .post-card h3 {
        color: #ede8f2;
    }
    .post-card p {
        color: #c7bfd4;
    }
    .post-meta {
        color: #9b8fae;
    }
    .category-tag {
        background: rgba(164, 123, 199, 0.22);
        color: #d9c2ee;
    }
    .tag-pill {
        background: rgba(164, 123, 199, 0.18);
        color: #d9c2ee;
    }
    .filter-bar {
        background: #211a2b;
        border-color: rgba(164, 123, 199, 0.2);
    }
    .filter-chip {
        border-color: rgba(164, 123, 199, 0.3);
        color: #c7bfd4;
    }
    .filter-chip.active {
        background: var(--lavender);
        color: #2b2230;
        border-color: var(--lavender);
    }
    .search-input {
        background: #2a2236;
        border-color: rgba(164, 123, 199, 0.3);
        color: #ede8f2;
    }
    .sidebar-block h4 {
        color: #ede8f2;
    }
    .about-block p,
    .sidebar-block p.plain {
        color: #c7bfd4;
    }
    .journey-section {
        background: #211a2b;
    }
    .journey-section h2,
    .philosophy-section h2 {
        color: #d9c2ee;
    }
    .timeline-item h3 {
        color: #ede8f2;
    }
    .timeline-item p {
        color: #c7bfd4;
    }
    .timeline-year {
        color: #9b8fae;
    }
    .timeline-line {
        background: rgba(164, 123, 199, 0.3);
    }
    .timeline-dot {
        background: #2a2236;
        border-color: var(--lavender);
    }
    .philosophy-section {
        background: #2a2236;
    }
    .philosophy-card h3 {
        color: #ede8f2;
    }
    .philosophy-card p {
        color: #c7bfd4;
    }
    .cta-section {
        background: #211a2b;
    }
    .cta-section p {
        color: #c7bfd4;
    }
    .cta-btn.secondary {
        border-color: var(--lavender);
        color: #d9c2ee;
    }
    .closing-cta {
        background: #2a2236;
    }
    .closing-cta-body h2 {
        color: #d9c2ee;
    }
    .closing-cta-body p {
        color: #c7bfd4;
    }
    .site-footer {
        background: #1a1421;
    }
    .photo-placeholder {
        color: #6b6470;
    }
    .hero-photo,
    .avatar,
    .action-banner,
    .closing-cta-photo,
    .about-hero-photo,
    .studio-banner,
    .about-photo {
        background: #38323f;
    }
    .page-btn {
        border-color: rgba(164, 123, 199, 0.3);
        color: #c7bfd4;
    }
}

/* ===== HEADER ===== */
.site-header {
    background: var(--cream);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-logo-row {
    display: flex;
    justify-content: center;
    padding: 1.5rem 2rem 0.75rem;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.75rem 2rem 1.25rem;
    max-width: 1080px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
}
.brand-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
    grid-column: 2;
    justify-self: center;
}
.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding-bottom: 4px;
}
.nav-link.active {
    color: var(--deep-purple);
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--gold);
}
.nav-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    background: transparent;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    grid-column: 3;
    justify-self: end;
}
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid var(--border-soft);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}
.nav-toggle svg {
    width: 18px;
    height: 18px;
}

/* ===== SHARED PHOTO PLACEHOLDER ===== */
.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--placeholder-icon);
}
.photo-placeholder svg {
    width: 32px;
    height: 32px;
    opacity: 0.85;
}
.photo-placeholder span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    padding: 0 1rem;
}

/* ===== HERO (homepage) ===== */
.hero {
    position: relative;
    background: var(--lavender-tint);
    overflow: hidden;
    padding: 4.5rem 0;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}
.hero-text {
    max-width: 480px;
}
.eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1rem;
    display: block;
}
.hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.18;
    color: var(--deep-purple);
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}
.hero p.lede {
    font-size: 1.05rem;
    color: var(--ink-soft);
    margin-bottom: 0;
}
.hero-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: var(--placeholder-bg);
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== ABOUT STRIP (homepage) ===== */
.about-section {
    background: var(--cream);
    padding: 3.5rem 0;
}
.about-inner {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: center;
}
.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--placeholder-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.avatar .photo-placeholder span {
    font-size: 0.6rem;
    padding: 0 0.5rem;
}
.avatar .photo-placeholder svg {
    width: 22px;
    height: 22px;
}
.about-inner h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--deep-purple);
    margin-bottom: 0.4rem;
}
.about-inner p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    max-width: 600px;
}

/* ===== IN-ACTION BANNER (homepage) ===== */
.action-banner-section {
    padding: 0 0 4rem;
}
.action-banner {
    position: relative;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--placeholder-bg);
}
.action-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}
.action-banner .photo-placeholder span {
    font-size: 0.85rem;
}
.action-caption {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    background: rgba(43, 34, 48, 0.55);
    color: white;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    z-index: 3;
}

/* ===== RECENT POSTS / POST GRID (homepage) ===== */
.posts-section {
    padding: 4rem 0 5rem;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2.25rem;
}
.section-head h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--deep-purple);
}
.section-head a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gold-deep);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.post-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 1.75rem;
    transition: border-color 0.15s ease;
    display: block;
}
.post-card:hover {
    border-color: var(--deep-purple-light);
}
.category-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: var(--lavender-tint);
    color: var(--deep-purple);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.9rem;
}
.post-card h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 0.6rem;
}
.post-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}
.post-meta {
    font-size: 0.8rem;
    color: #9b8fae;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.post-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c9bfd8;
}

/* Blog listing page uses a slightly larger post-card title for the list layout */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.posts-list .post-card h3 {
    font-size: 1.3rem;
}
.posts-list .post-card p {
    max-width: 640px;
}

/* ===== CLOSING CTA (homepage + about) ===== */
.closing-cta-section {
    padding: 0 0 4.5rem;
}
.closing-cta {
    background: var(--lavender-tint);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
}
.closing-cta-photo {
    position: relative;
    min-height: 280px;
    background: var(--placeholder-bg);
}
.closing-cta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.closing-cta-body {
    padding: 2.75rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.closing-cta-body h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--deep-purple);
    margin-bottom: 0.7rem;
    line-height: 1.25;
}
.closing-cta-body p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    max-width: 420px;
}
.closing-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-btn {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.65rem 1.4rem;
    border-radius: 6px;
    display: inline-block;
}
.cta-btn.primary {
    background: var(--deep-purple);
    color: white;
}
.cta-btn.secondary {
    border: 1px solid var(--deep-purple);
    color: var(--deep-purple);
}

/* ===== PAGE HEAD (blog listing) ===== */
.page-head {
    background: var(--lavender-tint);
    padding: 3rem 0 2.5rem;
}
.page-head .eyebrow {
    margin-bottom: 0.6rem;
}
.page-head h1 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2.1rem;
    color: var(--deep-purple);
    margin-bottom: 0.6rem;
}
.page-head p {
    color: var(--ink-soft);
    max-width: 560px;
    font-size: 1rem;
}

/* ===== FILTER BAR (blog) ===== */
.filter-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border-soft);
    padding: 1.25rem 0;
    position: sticky;
    top: 73px;
    z-index: 9;
}
.filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.search-input-wrap {
    position: relative;
    flex-shrink: 0;
}
.search-input {
    width: 220px;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 0.5rem 0.75rem 0.5rem 2.2rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    background: white;
    color: var(--ink);
}
.search-input:focus {
    outline: 2px solid var(--lavender);
    outline-offset: 1px;
}
.search-icon {
    position: absolute;
    left: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--ink-soft);
}
.filter-chips {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.filter-chip {
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 0.35rem 0.9rem;
    color: var(--ink-soft);
    cursor: pointer;
    background: transparent;
    font-family: "Montserrat", sans-serif;
}
.filter-chip.active {
    background: var(--deep-purple);
    color: white;
    border-color: var(--deep-purple);
}
.filter-divider {
    width: 1px;
    height: 20px;
    background: var(--border-soft);
}

/* ===== CONTENT LAYOUT: MAIN + SIDEBAR (blog) ===== */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 3rem;
    padding: 3rem 0 5rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.page-btn {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--ink-soft);
}
.page-btn.active {
    background: var(--deep-purple);
    color: white;
    border-color: var(--deep-purple);
}

/* ===== SIDEBAR ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sidebar-block {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 1.25rem;
}
.sidebar-block h4 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--deep-purple);
    margin-bottom: 0.9rem;
}
.sidebar-block p.plain {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.about-block {
    text-align: center;
}
.about-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 0.9rem;
    background: var(--placeholder-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.about-photo .photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--placeholder-icon);
}
.about-photo .photo-placeholder svg {
    width: 18px;
    height: 18px;
    opacity: 0.85;
}
.about-photo .photo-placeholder span {
    font-size: 0.55rem;
    font-weight: 500;
    padding: 0 0.3rem;
}
.about-block h4 {
    margin-bottom: 0.3rem;
}
.about-block p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 0.9rem;
}
.about-block a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold-deep);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.category-list li a {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--ink-soft);
}
.category-list li a:hover {
    color: var(--deep-purple);
}
.category-list li a span:last-child {
    color: #9b8fae;
    font-size: 0.8rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tag-pill {
    font-size: 0.78rem;
    background: var(--lavender-tint);
    color: var(--deep-purple);
    padding: 0.3rem 0.7rem;
    border-radius: 14px;
    display: inline-block;
}

/* ===== ABOUT PAGE: HERO ===== */
.about-hero {
    background: var(--lavender-tint);
    padding: 4rem 0;
}
.about-hero-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: center;
}
.about-hero-photo {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: var(--placeholder-bg);
}
.about-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-hero h1 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2.3rem;
    color: var(--deep-purple);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.about-hero p.lede {
    font-size: 1.05rem;
    color: var(--ink-soft);
    margin-bottom: 0.9rem;
}
.about-hero p.lede:last-child {
    margin-bottom: 0;
}

/* ===== ABOUT PAGE: JOURNEY TIMELINE ===== */
.journey-section {
    padding: 4.5rem 0;
    background: var(--cream);
}
.section-intro {
    max-width: 560px;
    margin-bottom: 3rem;
}
.journey-section h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--deep-purple);
    margin-bottom: 0.6rem;
}
.section-intro p {
    color: var(--ink-soft);
    font-size: 1rem;
}
.timeline {
    position: relative;
    max-width: 640px;
}
.timeline-line {
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border-soft);
}
.timeline-item {
    position: relative;
    padding-left: 2.25rem;
    padding-bottom: 2.5rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--deep-purple);
}
.timeline-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-deep);
    letter-spacing: 0.03em;
    margin-bottom: 0.3rem;
    display: block;
}
.timeline-item h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.timeline-item p {
    color: var(--ink-soft);
    font-size: 0.94rem;
    max-width: 540px;
}

/* ===== ABOUT PAGE: STUDIO BANNER ===== */
.studio-banner-section {
    padding: 0 0 4.5rem;
    background: var(--cream);
}
.studio-banner {
    height: 430px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--placeholder-bg);
    position: relative;
}
.studio-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.studio-caption {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    background: rgba(43, 34, 48, 0.55);
    color: white;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
}

/* ===== ABOUT PAGE: PHILOSOPHY ===== */
.philosophy-section {
    background: var(--lavender-tint);
    padding: 4.5rem 0;
}
.philosophy-section h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--deep-purple);
    margin-bottom: 0.6rem;
}
.philosophy-section .section-sub {
    color: var(--ink-soft);
    max-width: 560px;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.philosophy-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 1.5rem;
}
.philosophy-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--lavender-tint);
    color: var(--deep-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.philosophy-card-icon svg {
    width: 19px;
    height: 19px;
}
.philosophy-card h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.philosophy-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

/* ===== ABOUT PAGE: CTA (full-width style) ===== */
.cta-section {
    padding: 4rem 0;
    background: var(--cream);
    text-align: center;
}
.cta-section h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--deep-purple);
    margin-bottom: 0.7rem;
}
.cta-section p {
    color: var(--ink-soft);
    max-width: 440px;
    margin: 0 auto 1.5rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--deep-purple);
    color: rgba(255, 255, 255, 0.85);
    padding: 2.5rem 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.85);
}
.footer-links a:hover {
    color: var(--gold);
}

/* ===== SINGLE POST PAGE ===== */
.post-header {
    background: var(--lavender-tint);
    padding: 3rem 0 2.5rem;
}
.post-header .back-link {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}
.post-header .back-link:hover {
    color: var(--deep-purple);
}
.post-header .category-tag {
    background: white;
}
.post-header h1 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--deep-purple);
    margin: 0.8rem 0 0.7rem;
    line-height: 1.25;
    max-width: 720px;
}
.post-header .post-meta {
    color: var(--ink-soft);
}
.post-body {
    padding: 3rem 2rem 4rem;
    max-width: 720px;
    margin: 0 auto;
}
.post-body h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--deep-purple);
    margin: 2rem 0 0.8rem;
}
.post-body h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--deep-purple);
    margin: 1.75rem 0 0.7rem;
}
.post-body h4 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin: 1.5rem 0 0.6rem;
}
.post-body p {
    margin-bottom: 1.1rem;
    font-size: 1rem;
    color: var(--ink);
}
.post-body ol,
.post-body ul {
    margin: 0 0 1.1rem 1.25rem;
    padding-left: 0;
}
.post-body li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--ink);
}
.post-body em {
    color: var(--ink-soft);
}
.post-body a {
    color: var(--deep-purple);
    text-decoration: underline;
    text-decoration-color: var(--lavender);
    text-underline-offset: 2px;
}
.post-body a:hover {
    color: var(--deep-purple-light);
    text-decoration-color: var(--deep-purple-light);
}
.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
    .header-logo-row {
        padding: 1.1rem 1.5rem 0.5rem;
    }
    .brand-logo {
        width: calc(100% - 2rem);
        /*max-width: 240px;*/
    }
    .nav-search-shortcut {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--border-soft);
        padding: 0.5rem 2rem 1rem;
    }
    .nav-links.nav-links-open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 0;
    }
    .nav-link.active::after {
        display: none;
    }
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .about-inner {
        grid-template-columns: 72px 1fr;
    }
    .avatar {
        width: 72px;
        height: 72px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-photo {
        aspect-ratio: 16 / 10;
        order: -1;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .action-banner {
        height: 200px;
    }
    .closing-cta {
        grid-template-columns: 1fr;
    }
    .closing-cta-photo {
        min-height: 180px;
        order: -1;
    }
    .closing-cta-body {
        padding: 2rem;
    }
    .content-layout {
        grid-template-columns: 1fr;
    }
    .content-layout > * {
        min-width: 0;
    }
    .sidebar {
        flex-direction: row;
        overflow-x: auto;
        margin-top: 2.5rem;
    }
    .sidebar-block {
        min-width: 220px;
    }
    .page-head h1 {
        font-size: 1.7rem;
    }
    .filter-bar {
        top: 0;
        position: static;
    }
    .search-input {
        width: 100%;
    }
    .filter-bar-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-hero-photo {
        aspect-ratio: 16 / 10;
    }
    .about-hero h1 {
        font-size: 1.9rem;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .studio-banner {
        height: 220px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
