/* ── iHeartNola — site styles ─────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f3efe7;
    --ink: #17140f;
    --muted: #6b6560;
    --pill-border: #17140f;
    --tan: #d2b48c;
    --cream: #ece6da;
    --accent: #f47727;
    --accent-dark: #d8611a;
    --font-display: "Newsreader", "Georgia", serif;
    --font-title: "Newsreader", "Georgia", serif;
    --font-body: "Georgia", serif;
    --font-ui: "DM Sans", system-ui, sans-serif;
    /* Display optical sizing (max = most display-like cut) */
    --wonk: "opsz" 72;
    /* Per-channel signature colors — the site's editorial color system */
    --cat: #2b2622;            /* fallback / general */
    --cat-ink: #ffffff;
}

/* Channel color coding — applied via data-cat on cards, headers, post pages */
[data-cat="food-drink"] { --cat: #c1533f; --cat-ink: #fff4ee; }
[data-cat="people"]     { --cat: #2f6f63; --cat-ink: #f0f7f4; }
[data-cat="places"]     { --cat: #2f5d8a; --cat-ink: #eef4fa; }
[data-cat="music"]      { --cat: #6a4a93; --cat-ink: #f4eefb; }
[data-cat="stay"]       { --cat: #b9852b; --cat-ink: #fdf6e9; }
[data-cat="tourist"]    { --cat: #c25d92; --cat-ink: #fdeef6; }
[data-cat="general"]    { --cat: #3b352f; --cat-ink: #f3efe7; }

/* Paper grain overlay — a tactile, authored texture */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

html {
    background-color: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
}

body {
    min-height: 100dvh;
    background-color: var(--bg);
}

a {
    text-decoration: none;
}

/* ── TWO-COLUMN SHELL ─────────────────────────────────────── */
.app-shell {
    display: flex;
    min-height: 100dvh;
}

/* ── HOME THREE-COLUMN ────────────────────────────────────── */
.app-shell--home {
    display: grid;
    grid-template-columns: 20% 1fr 220px;
}

.app-shell--home .sidebar {
    width: auto;
}

.app-shell--home .content-panel {
    min-width: 0;
}

.right-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
    position: sticky;
    top: 0;
    height: 100dvh;
    overflow-y: auto;
}

.right-panel-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.right-panel-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.right-panel-links a {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    text-decoration: none;
    padding: 0.4rem 0;
    border-bottom: 1px dotted rgba(0,0,0,0.15);
    transition: opacity 0.15s;
}

.right-panel-links a:hover {
    opacity: 0.5;
}

.right-panel-link-desc {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--muted);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 0.1rem;
}

/* ── THREE-COLUMN (post pages) ────────────────────────────── */
.app-shell--three-col .sidebar {
    width: 25%;
}

.app-shell--three-col .content-panel {
    margin: 0;
}

.app-shell--three-col .post-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
    padding-right: 0;
}

.app-shell--three-col .post-excerpt {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    position: sticky;
    top: 0;
    align-self: stretch;
}

.app-shell--three-col .post-content {
    padding: 0 clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.app-shell--three-col .post-single {
    padding: 0;
}

.app-shell--three-col .post-single-header {
    padding: 0;
    margin-bottom: 1.5rem;
}

/* ── SIDEBAR ──────────────────────────────────────────────── */
.sidebar {
    width: 25%;
    flex-shrink: 0;
    background-color: #16403a;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
    position: sticky;
    top: 0;
    height: 100dvh;
    overflow-y: auto;
    border-top-right-radius: 30px;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}

.sidebar-logo-img {
    width: 100%;
    max-width: 110px;
    height: auto;
    display: block;
}

.sidebar-tagline {
    font-family: "DM Sans", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.4;
    margin-left: 0.75rem;
}

.sidebar-logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1;
}

.sidebar-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-desc {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

.sidebar-location {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ── SIDEBAR NAV ──────────────────────────────────────────── */
.sidebar-nav {
    margin-top: 0.75rem;
}

.nav-heading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted #000000;
}

.nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0.4rem;
}

.nav-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    margin-right: 0.45rem;
    flex-shrink: 0;
    opacity: 0.85;
}

.nav-links a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(0.75rem, 2.4cqi, 1.35rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: #f3efe7;
    text-decoration: none;
    padding: 0.2rem 0;
    transition: color 0.15s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--accent);
}

.nav-count {
    float: right;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: rgba(243, 239, 231, 0.55);
    font-weight: 500;
    letter-spacing: 0;
    font-style: normal;
}

/* ── SIDEBAR PROMO AD ─────────────────────────────────────── */
.sidebar-promo {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.sidebar-promo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    transition: box-shadow 0.2s ease;
}

.sidebar-promo:hover {
    transform: translateY(-2px);
}

.sidebar-promo:hover img {
    box-shadow: 0 10px 24px rgba(216, 97, 26, 0.30);
}

/* ── SIDEBAR SHOP ─────────────────────────────────────────── */
.shop-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.shop-item-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--ink);
    transition: opacity 0.15s;
}

.shop-item-link:hover {
    opacity: 0.6;
}

.shop-item-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
}

.shop-item-img-empty {
    background: rgba(0, 0, 0, 0.06);
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
}

.shop-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.shop-item-name {
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

.shop-item-price {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--muted);
}

/* ── SIDEBAR FOOTER ───────────────────────────────────────── */
.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 1.25rem;
}

/* ── CONTENT PANEL ────────────────────────────────────────── */
.content-panel {
    flex: 1;
    padding: 0;
    margin: 2rem;
    min-width: 0;
    background-color: var(--bg);
}

.content-panel:has(.archive-header) {
    margin-top: 0;
}

/* ── TAGLINE BAR ──────────────────────────────────────────── */
.tagline-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.6rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #d2b48c;
}

.tagline-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    padding: 2rem;
}

.tagline-ad {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 1rem;
    margin: 1rem;
    background-color: #333333;
    border-radius: 12px;
    overflow: hidden;
}

.tagline-ad .ad-img {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* ── FEATURED STRIP ───────────────────────────────────────── */
.featured {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 0;
}

.featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-placeholder {
    width: 100%;
    height: 300px;
    background: #4a4040;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── SITE MASTHEAD ────────────────────────────────────────── */
.site-masthead {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 6px solid var(--ink);
    margin-bottom: 1.5rem;
    container-type: inline-size;
}

.masthead-center {
    text-align: center;
    min-width: 0;
}

.masthead-logo {
    font-family: var(--font-title);
    font-variation-settings: "opsz" 72;
    font-size: clamp(1.5rem, 7cqi, 4.5rem);
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
}

.masthead-logo:hover {
    opacity: 0.75;
}

.masthead-side {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-family: var(--font-ui);
    font-size: clamp(0.58rem, 1.1cqi, 0.72rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.5;
    color: var(--accent);
}

.masthead-kicker {
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.masthead-left {
    align-items: flex-start;
    text-align: left;
}

.masthead-right {
    align-items: flex-end;
    text-align: right;
}

/* Utility links row across the top of the masthead */
.masthead-utility {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 0.7rem;
    margin-bottom: 0.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    align-items: center;
}

.masthead-utility a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.masthead-utility a:hover {
    color: var(--accent);
}

/* ── Topics dropdown ──────────────────────────────────────── */
.masthead-tags-dropdown {
    position: relative;
}

.masthead-tags-trigger {
    background: none;
    border: 1px solid var(--accent);
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    padding: 0.28em 0.65em;
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    transition: color 0.15s, border-color 0.15s;
}

.masthead-tags-arrow {
    width: 8px;
    height: 5px;
    flex-shrink: 0;
    transition: transform 0.15s;
}

.masthead-tags-trigger[aria-expanded="true"] .masthead-tags-arrow {
    transform: rotate(180deg);
}

.masthead-tags-trigger:hover {
    color: var(--accent-dark);
}

.masthead-tags-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    background: var(--ink);
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    columns: 2;
    column-gap: 0;
}

.masthead-tags-menu.is-open {
    display: block;
}

.masthead-tags-item {
    display: block;
    break-inside: avoid;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(243, 239, 231, 0.7);
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    white-space: nowrap;
    transition: color 0.12s, background 0.12s;
}

.masthead-tags-item:hover {
    color: var(--cream);
    background: rgba(255,255,255,0.08);
}

/* Full-width variant — post pages */
.site-masthead--full {
    container-type: normal;
    padding: 1rem 2rem;
    border-top-width: 10px;
    border-top-color: var(--cat);
}

.site-masthead--full .masthead-logo {
    font-size: clamp(2rem, 6vw, 6rem);
}

.site-masthead--full .masthead-side {
    font-size: clamp(0.6rem, 0.95vw, 0.78rem);
}

/* ── HOME SHOP HERO ───────────────────────────────────────── */
.home-hero {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    align-items: center;
    margin: 0 0 1rem;
    min-height: 320px;
    background-color: var(--post-bg, var(--cream));
    color: var(--ink);
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

/* Image panel — fills the full left grid column */
.home-hero-img {
    width: 100%;
    align-self: stretch;
    overflow: hidden;
    position: relative;
    background: #fff;
    min-height: 280px;
}

.home-hero-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    padding: 1rem;
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.home-hero-placeholder-bg {
    position: absolute;
    inset: 0;
}

.home-hero:hover .home-hero-img img {
    transform: scale(1.04);
}

.home-hero-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    padding: clamp(1.5rem, 3.5vw, 3rem);
}

.home-hero-kicker {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
}

.home-hero-title {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 600;
    text-transform: none;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-wrap: balance;
    margin: 0;
    color: #f5f0e8;
}

.home-hero-readmore {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-top: 0.4rem;
    width: max-content;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 3px;
}

@media (max-width: 700px) {
    .home-hero {
        grid-template-columns: 1fr;
    }
    .home-hero-img {
        min-height: 260px;
        max-height: 300px;
    }
}

/* ── SHOP HERO PLACEHOLDER ────────────────────────────────── */
.home-hero-placeholder-bg {
    background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 10px,
        transparent 10px,
        transparent 20px
    ), #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-placeholder-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.25);
}

/* ── CHANNEL SECTIONS ─────────────────────────────────────── */
.channel-section {
    margin-bottom: 0px;
}

.channel-header {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 1.6rem 1.1rem 1rem;
    align-items: flex-end;
    gap: 0.75rem;
    background-color: var(--cat);
    color: var(--cat-ink);
    justify-content: space-between;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.channel-title {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 600;
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    line-height: 1;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--cat-ink);
    margin: 0;
    text-wrap: balance;
}

.channel-more {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: color-mix(in srgb, var(--cat-ink) 72%, transparent);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}

.channel-more:hover {
    color: var(--cat-ink);
}

/* ── POST LIST — Card grid ────────────────────────────────── */
.post-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
}

/* ── Card — rounded tile, custom/cream background ─────────── */
.post-item {
    background-color: var(--post-bg, var(--cream));
    color: var(--ink);
    border-radius: 0;
    overflow: hidden;
    container-type: inline-size;
    display: flex;
    flex-direction: column;
    aspect-ratio: 3 / 4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.post-item-link {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    text-decoration: none;
    color: var(--ink);
    height: 100%;
    min-height: 0;
    overflow: hidden;
    text-align: left;
}

/* ── Category label — top of card ────────────────────────── */
.post-item-cat {
    display: block;
    width: 100%;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #000000;
    text-align: center;
    text-decoration: none;
    padding: 1.25rem 1rem 0;
    line-height: 1;
    transition: opacity 0.15s;
}

.post-item-cat:hover {
    opacity: 0.6;
}

/* ── Thumbnail — square, full card width ──────────────────── */
.post-item-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    overflow: hidden;
}

.post-item-thumb {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.post-item:hover .post-item-thumb {
    transform: scale(1.05);
}

.post-item-no-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    background-color: var(--tan);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.12) 0px,
        rgba(255,255,255,0.12) 1px,
        transparent 1px,
        transparent 8px
    );
}

/* ── Title — Fraunces, in-card below the image ────────────── */
.post-item-title {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 600;
    text-transform: none;
    font-size: clamp(1.5rem, 8cqi, 2.3rem);
    color: var(--cream);
    line-height: 1.0;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 1.1rem 1.2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.85);
    white-space: normal;
    text-wrap: balance;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ── Read more — channel-color underline sweeps in on hover ── */
.post-item-readmore {
    position: relative;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(243, 239, 231, 0.65);
    display: inline-block;
    width: max-content;
    margin-top: auto;
    padding: 0.6rem 1rem 1rem;
}

.post-item-readmore::after {
    content: "";
    position: absolute;
    left: 1rem; right: 1rem;
    bottom: 0.85rem;
    height: 2px;
    background: rgba(243, 239, 231, 0.65);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}

.post-item:hover .post-item-readmore::after { transform: scaleX(1); }

/* ── Intro / meta hidden ──────────────────────────────────── */
.post-item-intro,
.post-item-meta,
.post-item-date {
    display: none;
}

/* ── Row tags ─────────────────────────────────────────────── */
.post-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0 1rem 0.9rem calc(110px + 1rem + 2rem);
}

.post-item-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--ink);
    background: transparent;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    padding: 0.2em 0.75em;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.post-item-tag:hover {
    background: var(--ink);
    color: var(--cream);
}

/* ── ARCHIVE HEADER — color-flooded channel band ──────────── */
.archive-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 4vw, 3rem) 1.25rem clamp(0.75rem, 2vw, 1.25rem);
    margin: 0 0 0.8rem;
    background-color: var(--cat);
    color: var(--cat-ink);
    border-top-left-radius: 30px;
}

.archive-title {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 600;
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    line-height: 0.95;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--cat-ink);
    margin-bottom: 0.1em;
    text-wrap: balance;
}

.archive-count {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--cat-ink) 72%, transparent);
}

/* ── SINGLE POST ──────────────────────────────────────────── */
.post-hero-wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 0;
}

.post-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-single {
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2.5rem);
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
}

.post-breadcrumb a {
    color: var(--ink);
    text-decoration: none;
    transition: opacity 0.15s;
    opacity: 0.55;
}

.post-breadcrumb a:hover {
    opacity: 1;
}

.post-breadcrumb-arrow {
    font-size: 0.6rem;
    opacity: 0.4;
}

.post-breadcrumb span:last-child {
    color: var(--ink);
}

.post-single-header {
    margin-bottom: 2rem;
}

.post-single-title {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 600;
    font-size: clamp(1.8rem, 5.5vw, 3.4rem);
    line-height: 0.98;
    text-transform: none;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin-bottom: 0.35rem;
    text-wrap: balance;
}

.post-single-meta a { color: var(--cat); font-weight: 700; }

.post-single-meta {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.post-single-meta a:hover {
    color: var(--accent);
}

.post-see-also {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(23, 20, 15, 0.15);
}

.post-see-also-label {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink);
    margin-bottom: 0.6rem;
}

.post-single-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.post-tag {
    display: inline-block;
    padding: 0.3em 0.85em;
    border: 1px solid rgba(243, 239, 231, 0.35);
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.post-tag:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

/* ── Two-column post body ─────────────────────────────────── */
.post-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 5vw, 1.5rem);
    padding-right: 5rem;
    align-items: start;
}

.post-content {
    font-size: 1rem;
    line-height: 2;
    color: var(--ink);
}

.post-content h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    margin: 2rem 0 0.5rem;
    line-height: 1;
}

.post-content h3 {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    margin: 1.5rem 0 0.4rem;
    line-height: 1;
}

.post-content p {
    margin-bottom: 1.25rem;
}
.post-content img {
    max-width: 100%;
    display: block;
    margin: 1.5rem 0;
}
.post-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}
.post-content a:hover {
    color: var(--accent-dark);
}
.post-content blockquote {
    border-left: 4px solid var(--ink);
    padding-left: 1rem;
    color: var(--muted);
    margin: 1.5rem 0;
    font-style: italic;
}
.post-content ul,
.post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.post-content li {
    margin-bottom: 0.4rem;
}
.post-content code {
    background: rgba(0, 0, 0, 0.07);
    padding: 0.1em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}
.post-content pre {
    background: rgba(0, 0, 0, 0.07);
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1.25rem;
}
.post-content pre code {
    background: none;
    padding: 0;
}

.post-back {
    display: inline-block;
    padding: 0.35em 1.1em;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 500;
    margin-top: 2.5rem;
    transition:
        background 0.18s,
        color 0.18s;
}

.post-back:hover {
    background: var(--ink);
    color: var(--cream);
}

/* ── PAGER ────────────────────────────────────────────────── */
.pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem;
    background-color: var(--bg);
    border-top: 1px solid rgba(23, 20, 15, 0.2);
    margin-top: 0.5rem;
}

.pager-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
}

.pager-link:hover {
    opacity: 0.5;
}
.pager-info {
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--ink) 55%, transparent);
    font-family: var(--font-body);
}

/* ── 404 ──────────────────────────────────────────────────── */
.error-page {
    text-align: center;
    padding: 5rem 2rem;
}

.error-page h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(6rem, 20vw, 16rem);
    line-height: 1;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
}

.error-page p {
    color: #aaa;
    font-family: var(--font-body);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.error-back {
    display: inline-block;
    padding: 0.5em 1.5em;
    border: 1.5px solid #ffffff;
    border-radius: 999px;
    font-size: 0.88rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 500;
    transition:
        background 0.18s,
        color 0.18s;
}

.error-back:hover {
    background: #ffffff;
    color: var(--ink);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2.5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-socials a {
    display: inline-block;
    padding: 0.3em 0.9em;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.72rem;
    transition:
        background 0.15s,
        color 0.15s;
}

.footer-socials a:hover {
    background: var(--ink);
    color: #e3e3e3;
    border-color: var(--ink);
}

.footer-credit {
    font-size: 0.68rem;
    color: var(--muted);
    font-family: var(--font-body);
}

/* ── POST EXCERPT — left column ───────────────────────────── */
.post-excerpt {
    position: sticky;
    top: 2rem;
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.4;
    background-color: var(--post-bg, var(--cat));
    color: var(--cat-ink);
    font-style: normal;
    padding-right: clamp(1rem, 3vw, 1.5rem);
}
.post-excerpt p {
    display: none;
}
.post-excerpt p:has(img) {
    display: block;
    margin-bottom: 0.85rem;
}
.post-excerpt p:has(img):last-child {
    margin-bottom: 0;
}
.post-excerpt a {
    color: inherit;
    text-decoration: underline;
}
.post-excerpt img {
    max-width: 100%;
    border-radius: 4px;
    margin: 0.75rem 0;
}

/* ── INSTAGRAM EMBEDS (sidebar) ─────────────────────────────── */
.post-instagram-embeds {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.post-instagram-embed iframe,
.post-instagram-embed blockquote {
    width: 100% !important;
    max-width: 100% !important;
}

/* ── POST GALLERY (in description/excerpt sidebar) ──────────── */
.post-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.post-gallery p {
    margin: 0;
}
.post-gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ── POST CONTACT CARD ────────────────────────────────────── */
.contact-card {
    margin: 2.5rem 0 0;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-top: 4px solid var(--cat);
    border-radius: 6px;
    background: color-mix(in srgb, var(--cat) 5%, var(--bg));
}

.contact-card-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cat);
    margin: 0 0 0.3rem;
}

.contact-card-name {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin: 0 0 0.9rem;
}

.contact-card-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0.6rem;
    align-items: start;
    margin: 0 0 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--ink);
}

.contact-card-row > span:first-child {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding-top: 0.2rem;
}

.contact-card-val {
    word-break: break-word;
}

.contact-card-row a {
    color: var(--cat);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
    transition: color 0.15s;
}

.contact-card-row a:hover {
    color: var(--accent);
}

/* ── BOOKMARK CARDS ───────────────────────────────────────── */
.kg-bookmark-card {
    margin: 2rem 0;
}
.kg-bookmark-container {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.kg-bookmark-container:hover {
    border-color: var(--tan);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.kg-bookmark-content {
    flex: 1;
    min-width: 0;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.kg-bookmark-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--ink);
}
.kg-bookmark-description {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.kg-bookmark-metadata {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}
.kg-bookmark-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.kg-bookmark-publisher {
    font-size: 0.75rem;
    color: var(--muted);
}
.kg-bookmark-thumbnail {
    width: 160px;
    flex-shrink: 0;
}
.kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* Tablet — keep 35/65 split */
@media (max-width: 1024px) {
    .sidebar {
        width: 25%;
    }
    .app-shell--three-col .sidebar {
        width: 25%;
    }
}

/* Mobile — hamburger nav */
@media (max-width: 768px) {
    .app-shell,
    .app-shell--home,
    .app-shell--three-col {
        display: flex;
        flex-direction: column;
    }

    /* Sidebar becomes a compact top bar */
    .sidebar,
    .app-shell--three-col .sidebar,
    .app-shell--home .sidebar {
        width: 100%;
        height: auto;
        min-height: unset;
        position: relative;
        top: auto;
        padding: 0.75rem 1.25rem;
        gap: 0;
        border-radius: 0;
        margin: 0;
    }

    /* Logo + hamburger row */
    .sidebar-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .sidebar-logo {
        border-bottom: none;
        padding-bottom: 0;
    }

    .sidebar-logo-img {
        max-width: 60px;
    }

    /* Show hamburger on mobile */
    .hamburger-btn {
        display: flex;
    }

    /* Nav hidden until toggled */
    .sidebar-body {
        display: none;
        width: 100%;
        padding-top: 1rem;
        padding-bottom: 0.5rem;
        gap: 1rem;
        flex-direction: column;
    }

    .sidebar-body.is-open {
        display: flex;
    }

    /* Content fills full width */
    .content-panel {
        margin: 0.5rem;
    }

    /* Post body single column */
    .post-body,
    .app-shell--three-col .post-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-right: 0;
    }
    .post-excerpt,
    .app-shell--three-col .post-excerpt {
        position: static;
        border-bottom: 2px solid rgba(0, 0, 0, 0.08);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }
    .right-panel {
        position: static;
        height: auto;
        border-radius: 0;
    }
    .app-shell--three-col .content-panel {
        margin: 0.5rem;
    }
}

@media (max-width: 600px) {
    .post-item-link {
        grid-template-columns: 1fr;
    }
    .post-item-date {
        display: none;
    }

    .site-masthead {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.25rem;
        padding: 0.75rem 1rem;
        margin-bottom: 0.75rem;
    }

    .masthead-utility { justify-content: center; flex-wrap: wrap; gap: 0.5rem 1rem; }
    .masthead-side { display: none; }
}

@media (max-width: 420px) {
    .post-item-link {
        grid-template-columns: 1fr 70px;
        gap: 0.75rem;
        padding: 0.9rem 0.75rem;
    }
    .kg-bookmark-thumbnail {
        display: none;
    }
    .post-single {
        padding: 1.25rem 1rem;
    }
}

/* ── AD ZONES ─────────────────────────────────────────────── */
.ad-zone {
    padding: 1rem 1.25rem;
    text-align: center;
}

.ad-zone-sidebar {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ad-zone-banner {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--cream);
}

.ad-zone-in-feed {
    background-color: var(--bg);
    padding: 1.25rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ad-zone-post-listing {
    padding: 1rem 1.25rem;
    background-color: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ad-zone-post-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ad-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.ad-unit {
    display: block;
    text-decoration: none;
    margin: 0 auto;
}

.ad-img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.ad-embed {
    overflow: hidden;
}

/* ── Sidebar top bar + hamburger ──────────────────────────── */
.sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Hamburger hidden on desktop */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f3efe7;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
    transform-origin: center;
}

/* Sidebar body always visible on desktop */
.sidebar-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ── STATIC PAGES (About / Contact) ───────────────────────── */
.page {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem);
}

.page-title {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 600;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.page-lead {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 500;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.page-body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink);
}

.page-body p {
    margin-bottom: 1.1rem;
}

.page-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.page-body a:hover {
    color: var(--accent-dark);
}

.contact-list {
    list-style: none;
    margin: 1.75rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.contact-list a {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 600;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--ink);
    text-decoration: none;
    transition: color 0.15s;
}

.contact-list a:hover {
    color: var(--accent);
}

/* ── SHOP PAGE ────────────────────────────────────────────── */
.shop-header {
    max-width: 820px;
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2rem) 0.5rem;
}

.shop-grid {
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.shop-card {
    background-color: var(--cream);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.shop-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: var(--ink);
}

.shop-card-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.06);
}

.shop-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.shop-card:hover .shop-card-media img {
    transform: scale(1.05);
}

.shop-card-noimg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.06);
}

.shop-card-body {
    padding: 0.85rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.shop-card-name {
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-weight: 600;
    font-size: clamp(1.1rem, 4cqi, 1.4rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin: 0;
}

.shop-card-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
    margin: 0;
}

.shop-card-foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.4rem;
}

.shop-card-price {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}

.shop-card-cta {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    white-space: nowrap;
}

.shop-empty {
    padding: clamp(2rem, 6vw, 4rem) 1.5rem;
    font-family: var(--font-title);
    font-variation-settings: var(--wonk);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--muted);
}
