/*
Theme Name: LeatherCraftHaven
Theme URI: http://leathercrafthaven.com
Author: LeatherCraft Haven
Author URI: http://leathercrafthaven.com
Description: Honest guides, real techniques, and project tutorials for makers who want to do it right. Custom theme converted from React/Vite source.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leathercrafthaven
Tags: blog, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* =============================================================================
   CSS VARIABLES - Brand Tokens (extracted from index.css @theme block)
   ============================================================================= */
:root {
    --font-serif-heading: "Lora", serif;
    --font-serif-body: "Crimson Text", serif;
    --font-sans: "Inter", sans-serif;

    --color-brand-primary: #6B3410;
    --color-brand-secondary: #2A1810;
    --color-brand-accent: #C8581C;
    --color-brand-background: #F4EDE0;
    --color-brand-surface: #FFFFFF;
    --color-brand-muted: #8B7355;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-brand-background);
    color: var(--color-brand-secondary);
    font-family: var(--font-serif-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection,
*::selection {
    background-color: rgba(200, 88, 28, 0.2);
    color: var(--color-brand-secondary);
}

img, picture, video, svg {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease-out;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select, button {
    font: inherit;
}

ul, ol {
    list-style: none;
}

/* =============================================================================
   LAYOUT WRAPPERS
   ============================================================================= */
.lch-app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.lch-main {
    flex-grow: 1;
}

.lch-container {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .lch-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.lch-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* =============================================================================
   TEXT UTILITIES
   ============================================================================= */
.text-balance { text-wrap: balance; }

.font-serif-heading { font-family: var(--font-serif-heading); }
.font-serif-body   { font-family: var(--font-serif-body); }
.font-sans         { font-family: var(--font-sans); }

/* =============================================================================
   LINK UNDERLINE EFFECT (from index.css)
   ============================================================================= */
.link-underline {
    position: relative;
    display: inline-block;
}
.link-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-brand-accent);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
}
.link-underline:hover::after {
    transform: scaleX(1);
}

/* =============================================================================
   HEADER / NAV
   ============================================================================= */
.lch-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease-in-out;
    padding: 1.5rem 1.5rem;
    background-color: transparent;
}

@media (min-width: 768px) {
    .lch-header { padding-left: 3rem; padding-right: 3rem; }
}

.lch-header.is-scrolled {
    background-color: rgba(244, 237, 224, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.lch-header__inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lch-logo {
    font-family: var(--font-serif-heading);
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    color: var(--color-brand-primary);
    z-index: 50;
    transition: color 0.25s ease;
}
.lch-logo:hover { color: var(--color-brand-accent); }
.lch-logo__suffix { color: var(--color-brand-secondary); }

.lch-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lch-nav { display: flex; }
}

.lch-nav__link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-brand-secondary);
    position: relative;
    display: inline-block;
    transition: color 0.25s ease-out;
}
.lch-nav__link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-brand-accent);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
}
.lch-nav__link:hover::after { transform: scaleX(1); }
.lch-nav__link:hover { color: var(--color-brand-primary); }
.lch-nav__link.is-active { color: var(--color-brand-accent); }

.lch-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-secondary);
    z-index: 50;
    width: 28px;
    height: 28px;
}
.lch-nav-toggle:hover { color: var(--color-brand-primary); }

@media (min-width: 768px) {
    .lch-nav-toggle { display: none; }
}

.lch-mobile-nav {
    position: fixed;
    inset: 0;
    background-color: var(--color-brand-background);
    z-index: 40;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 6rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lch-mobile-nav { display: none; }
}

.lch-mobile-nav.is-open { transform: translateX(0); }

.lch-mobile-nav__link {
    font-family: var(--font-serif-heading);
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
}
.lch-mobile-nav__link.is-active { color: var(--color-brand-accent); }

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.lch-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brand-secondary);
    overflow: hidden;
}

.lch-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lch-hero__bg img {
    position: absolute;
    top: -10%;
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.4;
    transform: scale(1.05);
    will-change: transform;
}

.lch-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-brand-secondary) 0%, transparent 50%, rgba(42,24,16,0.3) 100%);
}

.lch-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .lch-hero__content { margin-top: 6rem; }
}

.lch-hero__title {
    font-family: var(--font-serif-heading);
    font-weight: 600;
    color: var(--color-brand-surface);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    text-wrap: balance;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
}

.lch-hero__subtitle {
    font-family: var(--font-serif-body);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: rgba(244, 237, 224, 0.9);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
    line-height: 1.6;
}

.lch-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-brand-primary);
    color: var(--color-brand-surface);
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: background-color 0.3s, transform 0.3s;
}
.lch-btn:hover {
    background-color: var(--color-brand-accent);
    transform: translateY(-2px);
}

.lch-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}
.lch-hero__scroll span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-brand-surface);
    font-weight: 500;
}
.lch-hero__scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--color-brand-surface), transparent);
}

/* =============================================================================
   SECTION HEADERS
   ============================================================================= */
.lch-section-head {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.3);
    padding-bottom: 1rem;
}
.lch-section-head--center { text-align: center; }
.lch-section-head--row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 768px) {
    .lch-section-head--row {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.lch-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brand-muted);
}

.lch-section-title {
    font-family: var(--font-serif-heading);
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    line-height: 1.2;
}

.lch-view-all {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    padding-bottom: 0.25rem;
    transition: color 0.25s;
}
.lch-view-all:hover { color: var(--color-brand-primary); }

/* =============================================================================
   GRIDS - Featured / Recent / Categories
   ============================================================================= */
.lch-section-white {
    background-color: #FFFFFF;
}

.lch-grid-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .lch-grid-featured {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

.lch-grid-articles {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 3rem;
}
@media (min-width: 768px) {
    .lch-grid-articles { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .lch-grid-articles { grid-template-columns: repeat(3, 1fr); }
}

.lch-grid-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .lch-grid-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .lch-grid-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .lch-grid-categories .lch-cat-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
}

/* =============================================================================
   FEATURE CARD (homepage featured guides)
   ============================================================================= */
.lch-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s;
}
.lch-feature-card:hover { transform: translateY(-4px); }

.lch-feature-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: rgba(139, 115, 85, 0.2);
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}
@media (min-width: 768px) {
    .lch-feature-card__media { aspect-ratio: 3 / 4; }
}
.lch-feature-card:hover .lch-feature-card__media {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.lch-feature-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}
.lch-feature-card:hover .lch-feature-card__media img { transform: scale(1.05); }

.lch-feature-card__category {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-brand-muted);
}

.lch-feature-card__title {
    font-family: var(--font-serif-heading);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-brand-secondary);
}

.lch-feature-card__excerpt {
    font-family: var(--font-serif-body);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(42, 24, 16, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lch-feature-card__cta {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brand-accent);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    transition: color 0.25s;
}
.lch-feature-card:hover .lch-feature-card__cta { color: var(--color-brand-primary); }
.lch-feature-card__cta-arrow {
    transition: transform 0.25s;
}
.lch-feature-card:hover .lch-feature-card__cta-arrow {
    transform: translateX(4px);
}

/* =============================================================================
   ARTICLE CARD (recent articles)
   ============================================================================= */
.lch-article-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--color-brand-surface);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.lch-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.lch-article-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: rgba(139, 115, 85, 0.2);
}
.lch-article-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}
.lch-article-card:hover .lch-article-card__media img { transform: scale(1.05); }

.lch-article-card__cat-pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-brand-background);
    color: var(--color-brand-primary);
    padding: 0.25rem 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.lch-article-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lch-article-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.lch-article-card__title {
    font-family: var(--font-serif-heading);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    margin-bottom: 0.75rem;
    transition: color 0.25s;
}
.lch-article-card:hover .lch-article-card__title { color: var(--color-brand-accent); }

.lch-article-card__excerpt {
    font-family: var(--font-serif-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(42, 24, 16, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: auto;
}

/* =============================================================================
   CATEGORY TILE
   ============================================================================= */
.lch-cat-tile {
    position: relative;
    height: 16rem;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    background-color: var(--color-brand-secondary);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
    .lch-cat-tile { height: 20rem; }
}
.lch-cat-tall .lch-cat-tile {
    height: 100%;
    min-height: 32rem;
}
.lch-cat-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.lch-cat-tile__bg {
    position: absolute;
    inset: 0;
}
.lch-cat-tile__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s ease-out;
}
.lch-cat-tile:hover .lch-cat-tile__bg img {
    opacity: 0.4;
    transform: scale(1.05);
}
.lch-cat-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,24,16,0.9) 0%, rgba(42,24,16,0.4) 50%, transparent 100%);
}

.lch-cat-tile__title {
    position: relative;
    z-index: 10;
    font-family: var(--font-serif-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--color-brand-surface);
    text-align: center;
    padding: 0 1rem;
}

/* =============================================================================
   ABOUT TEASER (homepage)
   ============================================================================= */
.lch-about-teaser {
    background-color: #FFFFFF;
}
.lch-about-teaser__inner {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .lch-about-teaser__inner {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.lch-about-teaser__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
    .lch-about-teaser__media { aspect-ratio: 4 / 5; }
}
.lch-about-teaser__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lch-about-teaser__title {
    font-family: var(--font-serif-heading);
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.lch-about-teaser__body {
    font-family: var(--font-serif-body);
    font-size: 19px;
    line-height: 1.7;
    color: rgba(42, 24, 16, 0.8);
    margin-bottom: 2rem;
}
.lch-about-teaser__body p { margin-bottom: 1.5rem; }
.lch-about-teaser__body p:last-child { margin-bottom: 0; }

.lch-about-teaser__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-brand-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.25rem;
    transition: color 0.25s;
}
.lch-about-teaser__link:hover { color: var(--color-brand-primary); }

/* =============================================================================
   NEWSLETTER
   ============================================================================= */
.lch-newsletter {
    background-color: var(--color-brand-background);
    border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.lch-newsletter__inner {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 1.5rem;
}

.lch-newsletter__title {
    font-family: var(--font-serif-heading);
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.lch-newsletter__subtitle {
    font-family: var(--font-serif-body);
    font-size: 19px;
    line-height: 1.7;
    color: rgba(42, 24, 16, 0.8);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.lch-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .lch-newsletter__form { flex-direction: row; }
}

.lch-newsletter__input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    background-color: var(--color-brand-surface);
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-radius: 2px;
    font-family: var(--font-sans);
    color: var(--color-brand-secondary);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.lch-newsletter__input:focus {
    outline: none;
    border-color: var(--color-brand-accent);
    box-shadow: 0 0 0 1px var(--color-brand-accent);
}
.lch-newsletter__input::placeholder { color: rgba(139, 115, 85, 0.6); }

.lch-newsletter__submit {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-brand-primary);
    color: var(--color-brand-surface);
    font-family: var(--font-sans);
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.25s;
    white-space: nowrap;
}
.lch-newsletter__submit:hover { background-color: var(--color-brand-secondary); }
.lch-newsletter__submit:disabled { opacity: 0.7; cursor: not-allowed; }

.lch-newsletter__success {
    background-color: var(--color-brand-background);
    border: 1px solid rgba(200, 88, 28, 0.2);
    padding: 1.5rem;
    border-radius: 2px;
    color: var(--color-brand-primary);
}
.lch-newsletter__success-title {
    font-family: var(--font-serif-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.lch-newsletter__success-body {
    font-family: var(--font-sans);
    font-size: 0.875rem;
}

.lch-newsletter__count {
    font-family: var(--font-serif-body);
    color: var(--color-brand-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1.5rem;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.lch-footer {
    background-color: var(--color-brand-secondary);
    color: var(--color-brand-background);
    padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
    .lch-footer { padding-left: 3rem; padding-right: 3rem; }
}

.lch-footer__inner {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .lch-footer__inner {
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
    }
}

.lch-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .lch-footer__brand { grid-column: span 5; }
}

.lch-footer__logo {
    font-family: var(--font-serif-heading);
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    color: var(--color-brand-surface);
    margin-bottom: 1rem;
}
.lch-footer__logo-suffix { color: var(--color-brand-muted); }

.lch-footer__tagline {
    font-family: var(--font-sans);
    color: rgba(244, 237, 224, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 24rem;
    margin-bottom: 1.5rem;
}

.lch-footer__copy {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-brand-muted);
}

.lch-footer__col { }
@media (min-width: 768px) {
    .lch-footer__col--sitemap { grid-column: span 3; }
    .lch-footer__col--legal   { grid-column: span 4; }
}
@media (min-width: 1024px) {
    .lch-footer__col--sitemap { grid-column-start: 7; grid-column: span 3; }
    .lch-footer__col--legal   { grid-column: span 3; }
}

.lch-footer__heading {
    font-family: var(--font-serif-heading);
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    color: var(--color-brand-surface);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.lch-footer__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
}
.lch-footer__list a {
    color: rgba(244, 237, 224, 0.8);
    transition: color 0.25s;
}
.lch-footer__list a:hover { color: var(--color-brand-accent); }

.lch-footer__legal {
    max-width: 80rem;
    margin: 0 auto;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.lch-footer__legal p {
    font-family: var(--font-serif-body);
    color: var(--color-brand-muted);
    font-size: 0.875rem;
    font-style: italic;
    text-align: center;
}
@media (min-width: 768px) {
    .lch-footer__legal p { text-align: left; }
}

/* =============================================================================
   PROSE / SINGLE POST CONTENT
   ============================================================================= */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    font-family: var(--font-serif-heading);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
}
.prose h1 { font-size: 2.5rem; margin: 2rem 0 1rem; line-height: 1.2; }
.prose h2 { font-size: 2rem; margin: 2.5rem 0 1rem; line-height: 1.25; }
.prose h3 { font-size: 1.5rem; margin: 2rem 0 0.75rem; line-height: 1.3; }
.prose p {
    line-height: 1.75;
    font-size: 19px;
    margin-bottom: 1.5rem;
}
.prose a {
    color: var(--color-brand-accent);
    font-weight: 500;
    transition: color 0.25s;
}
.prose a:hover { color: var(--color-brand-primary); }
.prose ul, .prose ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    font-size: 19px;
    line-height: 1.7;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
    border-left: 3px solid var(--color-brand-accent);
    padding-left: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
    color: rgba(42, 24, 16, 0.8);
}
.prose img {
    margin: 2rem 0;
    border-radius: 2px;
}

/* =============================================================================
   WP CORE COMPATIBILITY
   ============================================================================= */
.alignleft   { float: left; margin: 0.5rem 1.5rem 1rem 0; }
.alignright  { float: right; margin: 0.5rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1rem auto; }
.wp-caption  { max-width: 100%; }
.wp-caption-text {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-brand-muted);
    text-align: center;
    margin-top: 0.5rem;
}
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.sticky, .gallery-caption, .bypostauthor { display: block; }

/* =============================================================================
   LISTING PAGE (index.php / archive.php) - mirrors Guides.tsx
   ============================================================================= */
.lch-listing {
    padding-top: 8rem;
    padding-bottom: 4rem;
}
.lch-listing__inner {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}
@media (min-width: 768px) {
    .lch-listing__inner {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.lch-listing__header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(139,115,85,0.2);
    padding-bottom: 3rem;
}
.lch-listing__title {
    font-family: var(--font-serif-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    margin-bottom: 1rem;
    line-height: 1.1;
}
@media (min-width: 640px) {
    .lch-listing__title { font-size: 3rem; }
}
.lch-listing__subtitle {
    font-family: var(--font-serif-body);
    font-size: 20px;
    color: rgba(42,24,16,0.8);
    max-width: 42rem;
    line-height: 1.6;
}

.lch-listing__controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 3rem;
}
@media (min-width: 1024px) {
    .lch-listing__controls {
        flex-direction: row;
        align-items: center;
    }
}

.lch-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lch-chip {
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    border: 1px solid rgba(139,115,85,0.3);
    background-color: transparent;
    color: var(--color-brand-secondary);
    transition: all 0.25s ease;
    line-height: 1;
    display: inline-block;
}
.lch-chip:hover {
    border-color: var(--color-brand-secondary);
}
.lch-chip.is-active {
    background-color: var(--color-brand-accent);
    color: #FFFFFF;
    border-color: var(--color-brand-accent);
}

.lch-listing__search {
    width: 100%;
}
@media (min-width: 1024px) {
    .lch-listing__search { width: auto; }
}
.lch-listing__search-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background-color: var(--color-brand-surface);
    border: 1px solid rgba(139,115,85,0.3);
    border-radius: 2px;
    font-family: var(--font-sans);
    color: var(--color-brand-secondary);
    transition: border-color 0.25s, box-shadow 0.25s;
}
@media (min-width: 1024px) {
    .lch-listing__search-input { width: 16rem; }
}
.lch-listing__search-input:focus {
    outline: none;
    border-color: var(--color-brand-accent);
    box-shadow: 0 0 0 1px var(--color-brand-accent);
}

.lch-empty-state {
    grid-column: 1 / -1;
    padding: 5rem 0;
    text-align: center;
}
.lch-empty-state__title {
    font-family: var(--font-serif-heading);
    font-size: 1.5rem;
    color: var(--color-brand-muted);
    margin-bottom: 0.5rem;
}
.lch-empty-state__body {
    font-family: var(--font-sans);
    color: rgba(42,24,16,0.7);
}
.lch-empty-state__clear {
    margin-top: 1.5rem;
    color: var(--color-brand-accent);
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    display: inline-block;
}
.lch-empty-state__clear:hover { color: var(--color-brand-primary); }

.lch-pagination {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139,115,85,0.2);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.lch-page {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-secondary);
    font-family: var(--font-sans);
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.25s;
    text-decoration: none;
}
.lch-page:hover {
    background-color: rgba(139,115,85,0.1);
}
.lch-page.is-active {
    background-color: var(--color-brand-primary);
    color: var(--color-brand-surface);
}
.lch-page.dots { background: none; cursor: default; }

/* =============================================================================
   SINGLE POST (single.php) - mirrors SinglePost.tsx
   ============================================================================= */
.lch-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--color-brand-accent);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 60;
    pointer-events: none;
    transition: transform 0.05s linear;
}

.lch-post-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}
.lch-post-hero__img {
    position: absolute;
    top: -10%;
    inset: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: scale(1.05);
    will-change: transform;
}
.lch-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,24,16,0.9) 0%, rgba(42,24,16,0.4) 50%, transparent 100%);
}
.lch-post-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 1.5rem 4rem;
}
.lch-post-hero__inner {
    max-width: 56rem;
    text-align: center;
}
.lch-post-hero__cat {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brand-surface);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    background-color: rgba(42,24,16,0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.lch-post-hero__title {
    font-family: var(--font-serif-heading);
    font-weight: 600;
    color: var(--color-brand-surface);
    text-wrap: balance;
    letter-spacing: -0.025em;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.1;
}

.lch-post-meta {
    position: sticky;
    top: 73px;
    z-index: 40;
    background-color: var(--color-brand-surface);
    border-bottom: 1px solid rgba(139,115,85,0.2);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    padding: 0.75rem 1.5rem;
}
.lch-post-meta__inner {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
}
.lch-post-meta__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.lch-post-meta__avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    object-fit: cover;
}
.lch-post-meta__author-name {
    font-weight: 500;
    color: var(--color-brand-secondary);
}
.lch-post-meta__details {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    font-weight: 500;
}

.lch-post-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}
.lch-post-toc {
    display: none;
    width: 16rem;
    position: sticky;
    top: 150px;
    flex-shrink: 0;
}
@media (min-width: 1024px) {
    .lch-post-toc { display: block; }
}
.lch-post-toc__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-brand-muted);
    margin-bottom: 1.5rem;
}
.lch-post-toc__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
}
.lch-post-toc__list a {
    color: rgba(42,24,16,0.7);
    transition: color 0.25s;
}
.lch-post-toc__list a:hover,
.lch-post-toc__list a.is-active {
    color: var(--color-brand-accent);
    font-weight: 500;
}

.lch-post-article {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    flex-shrink: 1;
}
.lch-post-article .lead {
    font-family: var(--font-serif-body);
    font-size: 1.5rem;
    color: rgba(42,24,16,0.9);
    line-height: 1.4;
    margin-bottom: 2.5rem;
    text-wrap: balance;
}

.lch-callout {
    background-color: var(--color-brand-background);
    border-left: 4px solid var(--color-brand-accent);
    padding: 1.5rem;
    margin: 2.5rem 0;
    position: relative;
}
.lch-callout__title {
    font-family: var(--font-serif-heading);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--color-brand-secondary);
    margin: 0 0 0.5rem 0;
}
.lch-callout p {
    font-size: 16px;
    color: rgba(42,24,16,0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.prose blockquote {
    font-family: var(--font-serif-heading);
    font-size: 1.875rem;
    font-style: italic;
    line-height: 1.3;
    color: rgba(42,24,16,0.9);
    border-left: 4px solid var(--color-brand-accent);
    padding-left: 1.5rem;
    margin: 3rem 0;
}

.lch-author-box {
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(139,115,85,0.2);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    background-color: var(--color-brand-surface);
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
@media (min-width: 640px) {
    .lch-author-box {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}
.lch-author-box__img {
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    object-fit: cover;
    flex-shrink: 0;
}
.lch-author-box__title {
    font-family: var(--font-serif-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-brand-secondary);
}
.lch-author-box__bio {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(42,24,16,0.8);
    margin-bottom: 1rem;
}
.lch-author-box__link {
    color: var(--color-brand-accent);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lch-author-box__link:hover { color: var(--color-brand-primary); }

.lch-related {
    background-color: var(--color-brand-background);
    padding: 6rem 1.5rem;
    border-top: 1px solid rgba(139,115,85,0.2);
}
@media (min-width: 768px) {
    .lch-related { padding-left: 3rem; padding-right: 3rem; }
}
.lch-related__inner {
    max-width: 80rem;
    margin: 0 auto;
}
.lch-related__title {
    font-family: var(--font-serif-heading);
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    margin-bottom: 2.5rem;
    text-align: center;
}
.lch-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .lch-related__grid { grid-template-columns: repeat(3, 1fr); }
}
.lch-related-card {
    background-color: var(--color-brand-surface);
    padding: 1.5rem;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s;
}
.lch-related-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.lch-related-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 2px;
    background-color: rgba(139,115,85,0.2);
}
.lch-related-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}
.lch-related-card:hover .lch-related-card__media img { transform: scale(1.05); }
.lch-related-card__title {
    font-family: var(--font-serif-heading);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.lch-related-card__title a { color: var(--color-brand-secondary); }
.lch-related-card:hover .lch-related-card__title a { color: var(--color-brand-accent); }
.lch-related-card__excerpt {
    font-family: var(--font-serif-body);
    color: rgba(42,24,16,0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-top: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =============================================================================
   PAGE TEMPLATE (page.php)
   ============================================================================= */
.lch-page-wrap {
    padding-top: 8rem;
    padding-bottom: 6rem;
}
.lch-page-wrap__inner {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.lch-page-wrap__title {
    font-family: var(--font-serif-heading);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    margin-bottom: 2rem;
    line-height: 1.1;
}
@media (min-width: 768px) {
    .lch-page-wrap__title { font-size: 3rem; }
}

/* =============================================================================
   404 PAGE
   ============================================================================= */
.lch-404 {
    min-height: 100vh;
    padding: 8rem 1.5rem 6rem;
    background-color: var(--color-brand-background);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lch-404__inner {
    max-width: 36rem;
    text-align: center;
}
.lch-404__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brand-accent);
    margin-bottom: 1.5rem;
}
.lch-404__title {
    font-family: var(--font-serif-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 600;
    color: var(--color-brand-secondary);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}
.lch-404__body {
    font-family: var(--font-serif-body);
    font-size: 19px;
    line-height: 1.6;
    color: rgba(42,24,16,0.8);
    margin-bottom: 2.5rem;
}
.lch-404__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
@media (min-width: 640px) {
    .lch-404__actions { flex-direction: row; justify-content: center; }
}
.lch-404__search {
    margin-top: 2.5rem;
}
.lch-404__search input {
    width: 100%;
    max-width: 24rem;
    padding: 0.75rem 1rem;
    background-color: var(--color-brand-surface);
    border: 1px solid rgba(139,115,85,0.3);
    border-radius: 2px;
    font-family: var(--font-sans);
    color: var(--color-brand-secondary);
}
.lch-404__search input:focus {
    outline: none;
    border-color: var(--color-brand-accent);
    box-shadow: 0 0 0 1px var(--color-brand-accent);
}

/* =============================================================================
   COMMENTS
   ============================================================================= */
.lch-comments {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(139,115,85,0.2);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.lch-comments__title {
    font-family: var(--font-serif-heading);
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--color-brand-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}
.lch-comments__count {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
}
.lch-comment-list {
    list-style: none;
    margin: 0 0 3rem 0;
    padding: 0;
}
.lch-comment-list .children {
    list-style: none;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(139,115,85,0.2);
}
@media (min-width: 768px) {
    .lch-comment-list .children {
        margin-left: 3rem;
        padding-left: 2rem;
    }
}
.lch-comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--color-brand-surface);
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.04);
}
.lch-comment__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.lch-comment__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    object-fit: cover;
    flex-shrink: 0;
}
.lch-comment__author {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-brand-secondary);
    font-size: 0.9375rem;
}
.lch-comment__date {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: auto;
}
.lch-comment__body {
    font-family: var(--font-serif-body);
    font-size: 17px;
    line-height: 1.65;
    color: rgba(42,24,16,0.85);
}
.lch-comment__body p { margin-bottom: 0.75rem; }
.lch-comment__body p:last-child { margin-bottom: 0; }
.lch-comment__actions {
    margin-top: 1rem;
}
.lch-comment__reply {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-accent);
}
.lch-comment__reply:hover { color: var(--color-brand-primary); }
.lch-comment.bypostauthor {
    border-left: 3px solid var(--color-brand-accent);
}

.lch-comment-form {
    margin-top: 2rem;
}
.lch-comment-form__title {
    font-family: var(--font-serif-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-brand-secondary);
    margin-bottom: 1rem;
}
.lch-comment-form__notes {
    font-family: var(--font-serif-body);
    font-size: 0.9375rem;
    color: rgba(42,24,16,0.7);
    margin-bottom: 2rem;
    font-style: italic;
}
.lch-comment-form .comment-form-comment,
.lch-comment-form .comment-form-author,
.lch-comment-form .comment-form-email,
.lch-comment-form .comment-form-url {
    margin-bottom: 1.25rem;
}
.lch-comment-form label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-muted);
    margin-bottom: 0.5rem;
}
.lch-comment-form input[type="text"],
.lch-comment-form input[type="email"],
.lch-comment-form input[type="url"],
.lch-comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--color-brand-surface);
    border: 1px solid rgba(139,115,85,0.3);
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-brand-secondary);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.lch-comment-form input:focus,
.lch-comment-form textarea:focus {
    outline: none;
    border-color: var(--color-brand-accent);
    box-shadow: 0 0 0 1px var(--color-brand-accent);
}
.lch-comment-form textarea { min-height: 8rem; resize: vertical; }
.lch-comment-form .form-submit {
    margin-top: 1rem;
}
.lch-comment-form .submit {
    padding: 0.875rem 2rem;
    background-color: var(--color-brand-primary);
    color: var(--color-brand-surface);
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s, transform 0.25s;
}
.lch-comment-form .submit:hover {
    background-color: var(--color-brand-accent);
    transform: translateY(-1px);
}
.lch-comment-form .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(42,24,16,0.8);
    margin-bottom: 1.25rem;
}
.lch-comment-form .comment-form-cookies-consent input { width: auto; margin: 0; }
.lch-comments-closed {
    font-family: var(--font-serif-body);
    font-style: italic;
    color: var(--color-brand-muted);
    margin-top: 2rem;
}

/* =============================================================================
   ABOUT PAGE (page-about.php) - mirrors About.tsx
   ============================================================================= */
.lch-about {
    padding-top: 6rem;
    padding-bottom: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
@media (min-width: 768px) {
    .lch-about { padding-left: 3rem; padding-right: 3rem; }
}
.lch-about__header {
    margin-bottom: 3rem;
    text-align: center;
    margin-top: 4rem;
}
@media (min-width: 768px) {
    .lch-about__header { text-align: left; }
}
.lch-about__title {
    font-family: var(--font-serif-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-wrap: balance;
}
@media (min-width: 640px) {
    .lch-about__title { font-size: 3rem; }
}
.lch-about__media {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    border-radius: 2px;
    background-color: rgba(139,115,85,0.2);
}
@media (min-width: 640px) {
    .lch-about__media { aspect-ratio: 3 / 2; }
}
.lch-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lch-about__principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}
@media (min-width: 640px) {
    .lch-about__principles { grid-template-columns: repeat(2, 1fr); }
}
.lch-about__principle {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border: 1px solid rgba(139,115,85,0.2);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    border-radius: 2px;
}
.lch-about__principle h3 {
    font-family: var(--font-serif-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
    color: var(--color-brand-secondary);
}
.lch-about__principle p {
    font-family: var(--font-serif-body);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(42,24,16,0.85);
}

/* =============================================================================
   CONTACT PAGE (page-contact.php) - mirrors Contact.tsx
   ============================================================================= */
.lch-contact {
    padding-top: 8rem;
    padding-bottom: 6rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
@media (min-width: 768px) {
    .lch-contact { padding-left: 3rem; padding-right: 3rem; }
}
.lch-contact__header {
    margin-bottom: 4rem;
}
.lch-contact__title {
    font-family: var(--font-serif-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    margin-bottom: 1rem;
    line-height: 1.1;
}
@media (min-width: 640px) {
    .lch-contact__title { font-size: 3rem; }
}
.lch-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 1024px) {
    .lch-contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}
.lch-contact__intro {
    font-family: var(--font-serif-body);
    font-size: 19px;
    line-height: 1.7;
    color: rgba(42,24,16,0.8);
    margin-bottom: 2rem;
}
.lch-contact__email {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-brand-primary);
    margin-bottom: 3rem;
    user-select: all;
    word-break: break-word;
}
@media (min-width: 640px) {
    .lch-contact__email { font-size: 1.5rem; }
}
.lch-contact__note {
    background-color: var(--color-brand-surface);
    border: 1px solid rgba(139,115,85,0.2);
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
.lch-contact__note--mobile {
    display: block;
    margin-top: 3rem;
    padding: 1.5rem;
}
.lch-contact__note--desktop { display: none; }
@media (min-width: 1024px) {
    .lch-contact__note--mobile  { display: none; }
    .lch-contact__note--desktop { display: block; }
}
.lch-contact__note h3 {
    font-family: var(--font-serif-heading);
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-brand-secondary);
}
.lch-contact__note p {
    font-family: var(--font-serif-body);
    font-size: 16px;
    color: rgba(42,24,16,0.8);
    line-height: 1.6;
    margin: 0;
}
.lch-contact__note--mobile p {
    font-style: italic;
    font-size: 15px;
}

.lch-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.lch-contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .lch-contact-form__row { grid-template-columns: 1fr 1fr; }
}
.lch-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.lch-contact-form__field label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(42,24,16,0.8);
}
.lch-contact-form__field input,
.lch-contact-form__field select,
.lch-contact-form__field textarea {
    background-color: var(--color-brand-surface);
    border: 1px solid rgba(139,115,85,0.3);
    padding: 0.75rem;
    font-family: var(--font-sans);
    color: var(--color-brand-secondary);
    border-radius: 2px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.lch-contact-form__field select { appearance: none; cursor: pointer; }
.lch-contact-form__field textarea { resize: vertical; min-height: 8rem; }
.lch-contact-form__field input:focus,
.lch-contact-form__field select:focus,
.lch-contact-form__field textarea:focus {
    outline: none;
    border-color: var(--color-brand-accent);
    box-shadow: 0 0 0 1px var(--color-brand-accent);
}
.lch-contact-form__submit {
    background-color: var(--color-brand-primary);
    color: var(--color-brand-surface);
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s;
    margin-top: 0.5rem;
    align-self: flex-start;
}
.lch-contact-form__submit:hover { background-color: var(--color-brand-secondary); }
.lch-contact-form__submit:disabled { opacity: 0.7; cursor: not-allowed; }

.lch-contact-success {
    background-color: var(--color-brand-surface);
    border: 1px solid rgba(200,88,28,0.2);
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    text-align: center;
}
.lch-contact-success__check {
    width: 4rem;
    height: 4rem;
    background-color: rgba(200,88,28,0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-brand-accent);
    font-size: 1.5rem;
    font-weight: bold;
}
.lch-contact-success__title {
    font-family: var(--font-serif-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-brand-secondary);
    margin-bottom: 0.5rem;
}
.lch-contact-success__body {
    font-family: var(--font-sans);
    color: rgba(42,24,16,0.8);
    margin: 0;
}
.lch-contact-error {
    background-color: rgba(200,88,28,0.05);
    border: 1px solid rgba(200,88,28,0.3);
    padding: 1rem;
    border-radius: 2px;
    color: var(--color-brand-primary);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    display: none;
}
.lch-contact-error.is-visible { display: block; }

/* =============================================================================
   LEGAL PAGES (privacy, terms, disclaimer)
   ============================================================================= */
.lch-legal {
    padding-top: 8rem;
    padding-bottom: 6rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
@media (min-width: 768px) {
    .lch-legal { padding-left: 3rem; padding-right: 3rem; }
}
.lch-legal__header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(139,115,85,0.2);
    padding-bottom: 2rem;
}
.lch-legal__title {
    font-family: var(--font-serif-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--color-brand-secondary);
    margin-bottom: 1rem;
    line-height: 1.1;
}
.lch-legal__meta {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-brand-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lch-legal__content {
    font-family: var(--font-serif-body);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(42,24,16,0.9);
}
.lch-legal__content h2 {
    font-family: var(--font-serif-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-brand-secondary);
}
.lch-legal__content p {
    margin-bottom: 1.5rem;
}
.lch-legal__content ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    list-style: disc;
}
.lch-legal__content ul li {
    margin-bottom: 0.5rem;
}
.lch-legal__content a {
    color: var(--color-brand-accent);
    font-weight: 500;
}
.lch-legal__content a:hover { color: var(--color-brand-primary); }
