/* Alexis Garden */
/* Editorial direction: Sora for dramatic headings, Inter for body */

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

:root {
    --cream: #FAF9F7;
    --ink: #111;
    --ink-light: #333;
    --gray: #666;
    --light: #aaa;
    --subtle: #e8e8e6;
    --sage: #A8B5A0;
    --terracotta: #C4917B;
    --dusty-blue: #8FA3B0;
    --sand: #D4C9B8;
    --font-display: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Crimson Text', Georgia, 'Times New Roman', serif;

}

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

html {
    scroll-behavior: smooth;
}

/* Container utility */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== INTRO SCREEN ==================== */

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #000;
}

.intro-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 60%);
}

.intro-screen.hidden {
    display: none;
}

.intro-screen.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.intro-content {
    position: absolute;
    bottom: clamp(2rem, 6vw, 5rem);
    left: clamp(1.5rem, 5vw, 5rem);
    max-width: 700px;
    z-index: 1;
    text-align: left;
}

/* Chunk fade in - title, tagline, button */
.intro-chunk {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.intro-chunk.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-screen.final-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

.intro-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.2rem;
}

.intro-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #fff;
}

.intro-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.intro-chevron {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 0.5rem;
    margin-top: 1.5rem;
    animation: chevronPulse 2s ease-in-out infinite;
    transition: color 0.3s ease;
}

.intro-chevron:hover {
    color: #fff;
}

@keyframes chevronPulse {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(6px); opacity: 1; }
}

a {
    text-decoration: underline;
    text-decoration-color: var(--light);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

a:hover {
    text-decoration-color: var(--ink);
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* ==================== TYPOGRAPHY SYSTEM ==================== */

/* Hero H1 - Homepage and Page Heroes */
h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 7.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.92;
}

/* H2 - Major Section Headings */
h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
}

/* H3 - Subsection Headings */
h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
}

/* H4 - Small Headings */
h4 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--ink);
}

/* Label/Eyebrow Style */
.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light);
}

/* ==================== NAVIGATION (Left Sidebar) ==================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 240px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
    background: rgba(250, 249, 247, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(0,0,0,0.06);
    overflow-y: auto;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    box-shadow: none;
}

/* Push page content right to clear sidebar */
body {
    padding-left: 240px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    margin-bottom: 2.5rem;
    gap: 0.15rem;
}

.nav-logo-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    flex: 1;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s, background 0.2s;
    position: relative;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
}

/* Remove dot indicator — use background highlight instead */
.nav-links > a::after {
    display: none;
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--ink);
    background: rgba(0,0,0,0.04);
}

.nav-links a[target="_blank"]::after {
    content: '\2197';
    font-size: 0.7em;
    margin-left: 0.35em;
    opacity: 0.5;
}

.nav-cta {
    background: #2b1a0a;
    color: #fff !important;
    padding: 0.65rem 1.2rem;
    border: none;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    text-align: center;
    margin-top: 1.5rem;
}

.nav-cta:hover {
    background: #3e2a15;
    transform: translateY(-1px);
}

/* Navigation Dropdown (accordion style in sidebar) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 3.5px solid currentColor;
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-dropdown-toggle:hover {
    color: var(--ink);
    background: rgba(0,0,0,0.04);
}

.nav-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding: 0;
}

.nav-dropdown.open .nav-dropdown-menu {
    max-height: 300px;
    opacity: 1;
    padding: 0.25rem 0 0.25rem 0.75rem;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.45rem 0.75rem;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease, background 0.2s ease;
    border-radius: 6px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.nav-active {
    color: var(--ink);
    background: rgba(0,0,0,0.04);
}

.nav-coming-soon {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.soon-badge {
    font-size: 0.65rem;
    color: var(--gray);
    background: var(--subtle);
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    font-weight: 400;
}

/* ==================== NOW PAGE ==================== */

.now-updated {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light);
    margin-top: 0.5rem;
}

.now-section {
    margin: 4rem 0;
}

.now-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2rem;
}

.now-projects {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.now-project-card {
    background: #F5F3F0;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.now-project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.now-project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.now-project-header h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.now-project-header h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.now-project-header h4 a:hover {
    color: var(--sage);
}

.now-status {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.now-status.active {
    background: rgba(168, 181, 160, 0.15);
    color: #6b7a62;
}

.now-status.building {
    background: rgba(143, 163, 176, 0.15);
    color: #5a7080;
}

.now-project-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

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

.now-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.now-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    margin: 4px 0;
    transition: all 0.3s;
}

/* ==================== PAGE HEADER ==================== */

.page-header {
    padding: 4rem 2rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-header-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1rem;
}

.page-header-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--gray);
    max-width: 500px;
}

/* ==================== STATEMENT ==================== */

.statement {
    padding: 5rem 2rem;
    text-align: center;
}

.statement h2 {
    max-width: 800px;
    margin: 0 auto;
}

/* ==================== BENTO GRID ==================== */

/* ==================== BENTO GRID ==================== */

.bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    padding: 7rem 2rem 4rem;
    max-width: 960px;
    margin: 0 auto;
}

.bento-strategy { grid-column: 1 / -1; background: var(--sage); }
.bento-photography { background: #2A2A2A; }
.bento-experiences { background: var(--dusty-blue); }
.bento-writing { background: var(--terracotta); }
.bento-resources { background: var(--sand); }

.bento-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 2.25rem;
    min-height: 280px;
    text-decoration: none;
    position: relative;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.bento-card,
.bento-card:hover,
.bento-card:visited {
    text-decoration: none;
}

.bento-resources { color: var(--ink); }

/* Grain texture */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.18'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* Text block */
.bento-text {
    position: relative;
    z-index: 2;
}

.bento-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
    color: inherit;
}

.bento-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: inherit;
}

.bento-strategy .bento-title {
    font-size: 2.5rem;
}

.bento-summary {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.55;
    opacity: 0.7;
    color: inherit;
    max-width: 520px;
}

.bento-list {
    list-style: none;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.85;
    opacity: 0.75;
    color: inherit;
}

.bento-list li::before {
    content: '—';
    margin-right: 0.5em;
    opacity: 0.35;
}

/* "More" link — hidden until hover */
.bento-more {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    margin-top: 1.5rem;
    align-self: flex-start;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
    color: inherit;
    transform: translateY(6px);
}

.bento-card:hover .bento-more {
    opacity: 0.6;
    transform: translateY(0);
}

/* Inline links within cards */
.bento-link {
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.bento-link:hover {
    opacity: 0.6;
}

/* Bento responsive */
@media (max-width: 768px) {
    .bento {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 2rem 1rem 3rem;
    }

    .bento-strategy,
    .bento-photography,
    .bento-experiences,
    .bento-writing,
    .bento-resources {
        grid-column: 1 / -1;
    }

    .bento-card {
        min-height: 240px;
        padding: 1.5rem 1.75rem;
    }

    .bento-strategy .bento-title {
        font-size: 1.75rem;
    }
}

.accent-sage {
    color: var(--sage);
}

.accent-terracotta {
    color: var(--terracotta);
}

.accent-dusty-blue {
    color: var(--dusty-blue);
}

.accent-sand {
    color: var(--sand);
}

/* ==================== GARDEN AREAS ==================== */

.garden-areas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 5rem 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.garden-title {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray);
}

.area {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    background: #F5F3F0;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.area a {
    text-decoration: none;
    display: block;
}

.area img {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
}

.area h3 {
    margin-bottom: 0.75rem;
}

.area p {
    font-size: 1rem;
    color: var(--gray);
}

/* ==================== ABOUT ==================== */

.about {
    padding: 6rem 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-photo img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%) contrast(1.05);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.5rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ==================== STRATEGY SECTION ==================== */

.strategy {
    padding: 6rem 2rem;
}


.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--subtle);
    cursor: pointer;
    transition: padding-left 0.3s ease;
}

.service-item:first-child {
    border-top: 1px solid var(--subtle);
}

.service-item:hover {
    padding-left: 1rem;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

.service-item p {
    font-size: 1rem;
    color: var(--light);
    max-width: 300px;
    text-align: right;
}

.service-item .arrow {
    font-size: 1.5rem;
    color: var(--light);
    transition: transform 0.3s, color 0.3s;
}

.service-item:hover .arrow {
    transform: translateX(8px);
    color: var(--ink);
}

/* ==================== CLIENTS ==================== */

.clients {
    padding: 6rem 2rem;
}

.clients h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 4rem;
}

.client-list {
    max-width: 600px;
    margin: 0 auto;
}

.client-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 2rem 0;
    border-bottom: 1px solid var(--subtle);
}

.client-item:first-child {
    border-top: 1px solid var(--subtle);
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.client-work {
    font-size: 1rem;
    color: var(--gray);
}

/* ==================== RESOURCES ==================== */

.recent-resources {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.resources-list {
    padding: 4rem 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.resources-list .resources-grid {
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Showcase Grid for Resources */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

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

@media (max-width: 600px) {
    .showcase-grid { grid-template-columns: 1fr; }
}

.showcase-card {
    background: #F5F3F0;
    border: none;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.showcase-card a {
    text-decoration: none;
    display: block;
}

.showcase-badge {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 1rem;
}

.showcase-badge.quiz { color: var(--terracotta); }
.showcase-badge.tool { color: var(--sage); }
.showcase-badge.guide { color: var(--dusty-blue); }

.showcase-card h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.showcase-card p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.showcase-status {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    display: inline-block;
    margin-top: 0.5rem;
}

.showcase-status.live { background: rgba(91,117,83,0.12); color: var(--sage); }
.showcase-status.new { background: rgba(194,110,75,0.12); color: var(--terracotta); }
.showcase-status.soon { background: rgba(74,109,131,0.12); color: var(--dusty-blue); }

/* Resource Card - Floating (legacy) */
.resource-card a {
    display: block;
    padding: 2.5rem 2rem;
    background: #F5F3F0;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover a {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.resource-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.resource-icon {
    width: 60px;
    height: 60px;
    opacity: 0.7;
}

.resource-type {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.resource-card h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.resource-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== RECENT POSTS ==================== */

.recent-posts {
    padding: 5rem 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    margin-bottom: 4rem;
    color: var(--gray);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.post-card {
    text-align: left;
    padding: 2rem;
    background: #F5F3F0;
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.post-card a {
    text-decoration: none;
    display: block;
}

.post-card time {
    font-size: 0.9rem;
    color: var(--light);
    display: block;
    margin-bottom: 0.75rem;
}

.post-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.post-card p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.5;
}

.posts-link {
    font-size: 1.1rem;
    color: var(--gray);
    text-decoration: underline;
    text-decoration-color: var(--light);
    text-underline-offset: 3px;
}

.posts-link:hover {
    color: var(--ink);
    text-decoration-color: var(--ink);
}

/* ==================== BLOG LIST ==================== */

.blog-list {
    padding: 4rem 2rem 6rem;
    max-width: 700px;
    margin: 0 auto;
}

.blog-post {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--subtle);
}

.blog-post:first-child {
    border-top: 1px solid var(--subtle);
}

.blog-post a {
    text-decoration: none;
    display: block;
}

.blog-post time {
    font-size: 0.9rem;
    color: var(--light);
    display: block;
    margin-bottom: 0.5rem;
}

/* Category Tags - Japanese icon stamps with label */
.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.blog-post-meta time {
    margin-bottom: 0;
}

.category-tag {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light);
}

.category-tag::before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.category-tag:hover::before {
    opacity: 1;
}

.category-tag.philosophy::before {
    background-image: url('05_icons/icon_65_168_181_160.png');
}

.category-tag.ai::before {
    background-image: url('05_icons/icon_48_143_163_176.png');
}

.category-tag.strategy::before {
    background-image: url('05_icons/icon_34_143_163_176.png');
}

.blog-post h2 {
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    text-align: left;
}

.blog-post:hover h2 {
    color: var(--gray);
}

.blog-post p {
    color: var(--gray);
    line-height: 1.5;
}

/* ==================== NEW BLOG CARD DESIGN ==================== */

.blog-list-new {
    padding: 4rem 2rem 8rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-card-new {
    margin-bottom: 2rem;
}

.blog-card-new a {
    display: block;
    padding: 40px;
    background: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-new a:hover {
    background: #F5F3F0;
    transform: translateX(4px);
}

.blog-card-new.strategy a {
    border-left: 4px solid var(--dusty-blue);
}

.blog-card-new.philosophy a {
    border-left: 4px solid var(--sage);
}

.blog-card-new.growth a {
    border-left: 4px solid var(--terracotta);
}

.blog-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.blog-card-icon {
    display: none;
}

.blog-card-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light);
}

.blog-card-new time {
    display: block;
    font-size: 0.9375rem;
    color: var(--light);
    margin-bottom: 16px;
}

.blog-card-new h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--ink);
}

.blog-card-new p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* ==================== FOOTER (DARK MODE) ==================== */

.footer-dark {
    background: #fff;
    color: var(--ink);
    padding: 5rem 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--subtle);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--subtle);
}

/* Brand section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.footer-logo:hover {
    color: var(--sage);
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--gray);
    margin: 0;
}

/* Navigation columns */
.footer-nav {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-column h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250, 249, 247, 0.4);
    margin-bottom: 0.5rem;
}

.footer-nav-column a {
    font-size: 1rem;
    color: rgba(250, 249, 247, 0.8);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-nav-column a:hover {
    color: var(--cream);
    transform: translateX(4px);
}

/* Connect section */
.footer-connect {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.footer-connect h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250, 249, 247, 0.4);
    margin-bottom: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(250, 249, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 249, 247, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    border-color: var(--sage);
    color: var(--sage);
    transform: translateY(-2px);
}

.footer-email {
    font-size: 0.9rem;
    color: rgba(250, 249, 247, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--cream);
}

/* Bottom bar */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(250, 249, 247, 0.4);
    margin: 0;
}

.footer-made {
    font-family: var(--font-body);
    font-weight: 400;
}

/* Footer brush stroke - defined in Sumi-e section above */

/* Seed Garden - Interactive Footer Element */
.seed-garden {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 249, 247, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 200px;
    position: relative;
}

.garden-ground {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.soil {
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom,
        rgba(101, 67, 33, 0.6) 0%,
        rgba(60, 40, 20, 0.4) 100%
    );
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    position: relative;
}

.soil::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(168, 181, 160, 0.3);
    border-radius: 2px;
}

.plant-container {
    position: absolute;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: bottom center;
}

.plant-seed-btn {
    background: transparent;
    border: 1px solid rgba(168, 181, 160, 0.5);
    color: var(--cream);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.plant-seed-btn:hover {
    background: rgba(168, 181, 160, 0.15);
    border-color: var(--sage);
    transform: translateY(-2px);
}

.plant-seed-btn:active {
    transform: translateY(0) scale(0.98);
}

.plant-seed-btn.growing {
    opacity: 0.5;
    pointer-events: none;
}

.seed-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.plant-seed-btn:hover .seed-icon {
    transform: rotate(-10deg) scale(1.1);
}

/* The growing plant */
.growing-plant {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Main stem */
.plant-stem {
    width: 4px;
    height: 0;
    background: linear-gradient(to top,
        #5a7a52 0%,
        #7a9a72 50%,
        #8aaa82 100%
    );
    border-radius: 2px;
    animation: growMainStem 2s ease-out forwards;
    position: relative;
}

@keyframes growMainStem {
    0% { height: 0; }
    100% { height: 100px; }
}

/* Leaves container */
.plant-leaves {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

/* Individual leaf */
.plant-leaf {
    position: absolute;
    width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #7a9a72 0%, #5a7a52 100%);
    border-radius: 0 80% 0 80%;
    opacity: 0;
    transform-origin: left center;
}

.plant-leaf.left {
    left: -2px;
    transform: rotate(-40deg) scale(0);
    border-radius: 80% 0 80% 0;
    transform-origin: right center;
}

.plant-leaf.right {
    right: -2px;
    left: auto;
    transform: rotate(40deg) scale(0);
}

.plant-leaf.grow {
    animation: growLeaf 0.5s ease-out forwards;
}

.plant-leaf.left.grow {
    animation: growLeafLeft 0.5s ease-out forwards;
}

@keyframes growLeaf {
    0% { opacity: 0; transform: rotate(40deg) scale(0); }
    100% { opacity: 1; transform: rotate(40deg) scale(1); }
}

@keyframes growLeafLeft {
    0% { opacity: 0; transform: rotate(-40deg) scale(0); }
    100% { opacity: 1; transform: rotate(-40deg) scale(1); }
}

/* Flower bud and bloom */
.plant-flower {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.plant-flower.bloom {
    animation: flowerBloom 0.8s ease-out forwards;
}

@keyframes flowerBloom {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0) rotate(-20deg);
    }
    50% {
        transform: translateX(-50%) scale(1.3) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1) rotate(0deg);
    }
}

/* Gentle sway when fully grown */
.growing-plant.complete {
    animation: plantSway 4s ease-in-out infinite;
}

@keyframes plantSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

/* Sparkle effect */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 200, 0.9);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 0.6s ease-out forwards;
}

@keyframes sparkle {
    0% {
        opacity: 1;
        transform: scale(0) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1) translate(var(--tx), var(--ty));
    }
}

/* ==================== SUMI-E ACCENTS ==================== */

/* Ink wash divider - replaces SVG brush strokes */
.sumi-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 20%, var(--ink) 50%, transparent 80%);
    opacity: 0.1;
    max-width: 400px;
    margin: 0 auto;
}

/* Background wash for sections */
.sumi-wash {
    position: relative;
}

.sumi-wash::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(91,117,83,0.04), transparent 70%);
    pointer-events: none;
}

/* Footer transition strip - replaces footer-brush */
.footer-brush {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--sage) 20%,
        var(--dusty-blue) 50%,
        var(--terracotta) 80%,
        transparent 100%
    );
    opacity: 0.4;
}

/* ==================== CLAURA FOOTER ==================== */

.cl-footer {
    background: #fff;
    color: var(--ink);
    padding: 5rem 2.5rem 2.5rem;
    border-top: 1px solid var(--subtle);
}

.cl-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cl-footer-top {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--subtle);
}

/* Brand */
.cl-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cl-footer-logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.cl-footer-logo:hover {
    opacity: 0.7;
}

.cl-footer-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Navigation columns */
.cl-footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cl-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.cl-footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.cl-footer-col a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.cl-footer-col a:hover {
    color: var(--ink);
    transform: translateX(3px);
}

/* Bottom bar */
.cl-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.cl-footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--light);
    margin: 0;
}

/* ---- Claura footer responsive ---- */
@media (max-width: 900px) {
    .cl-footer {
        padding: 3.5rem 1.5rem 2rem;
    }

    .cl-footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cl-footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .cl-footer {
        padding: 3rem 1.25rem 1.5rem;
    }

    .cl-footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
    }

    .cl-footer-bottom {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
}

/* ==================== SUBPAGES ==================== */

.page-hero {
    min-height: auto;
    padding: 4rem 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
}

.page-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.page-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.5;
}

.page-content {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.page-content h2 {
    margin-bottom: 1rem;
}

.page-content h3 {
    margin: 3rem 0 1.5rem;
}

.page-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    color: var(--ink);
    padding: 0;
    border: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: gap 0.3s ease;
    text-decoration: none;
    margin-top: 1.5rem;
    cursor: pointer;
}

.page-cta:hover {
    gap: 1rem;
}

.page-cta .arrow {
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.page-cta:hover .arrow {
    transform: translateX(4px);
}

/* Photography Page */
.photo-intro {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: none;
    position: relative;
}

.photo-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 400px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 20%, var(--ink) 50%, transparent 80%);
    opacity: 0.1;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.approach-item {
    background: #F5F3F0;
    border: none;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.approach-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.approach-item h4 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.approach-item p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--gray);
}

/* Photography Slideshow - Full Bleed */
.photo-slideshow {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 4rem;
    margin-bottom: 4rem;
    overflow: hidden;
    background: var(--ink);
}

.slideshow-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 75vh;
}

.slideshow-viewport img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slideshow-viewport img.active {
    opacity: 1;
}

.slideshow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-nav:hover {
    background: rgba(255,255,255,0.3);
}

.slideshow-nav.prev { left: 1.5rem; }
.slideshow-nav.next { right: 1.5rem; }

.slideshow-counter {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Photography Gallery - Horizontal Scroll (legacy fallback) */
.photo-showcase {
    margin: 5rem 0;
}

.photo-showcase h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-hint {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}

.photo-gallery-horizontal {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-overflow-scrolling: touch;
}

.photo-gallery-horizontal::-webkit-scrollbar {
    height: 8px;
}

.photo-gallery-horizontal::-webkit-scrollbar-track {
    background: var(--subtle);
    border-radius: 4px;
}

.photo-gallery-horizontal::-webkit-scrollbar-thumb {
    background: var(--sage);
    border-radius: 4px;
}

.photo-gallery-horizontal::-webkit-scrollbar-thumb:hover {
    background: var(--dusty-blue);
}

.photo-item-horizontal {
    position: relative;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    background: var(--subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 500px;
}

.photo-item-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.photo-item-horizontal img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

.photo-caption-horizontal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item-horizontal:hover .photo-caption-horizontal {
    opacity: 1;
}

/* Tablet */
@media (max-width: 1024px) {
    .photo-gallery-horizontal {
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 1.25rem;
    }

    .photo-item-horizontal {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .photo-showcase {
        margin: 3rem 0;
    }

    .photo-showcase h3 {
        font-size: 1.75rem;
    }

    .gallery-hint {
        font-size: 0.8125rem;
        margin-bottom: 1.5rem;
    }

    .photo-gallery-horizontal {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1rem;
    }

    .photo-item-horizontal {
        height: 350px;
    }

    .photo-caption-horizontal {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    }

    .photo-gallery-horizontal::-webkit-scrollbar {
        height: 6px;
    }
}

/* Testimonials */
.testimonials {
    margin-top: 5rem;
    padding-top: 4rem;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 400px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 20%, var(--ink) 50%, transparent 80%);
    opacity: 0.1;
}

.testimonials h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--ink-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.testimonial-item {
    background: #F5F3F0;
    border: none;
    border-radius: 8px;
    padding: 3rem;
    position: relative;
}

.testimonial-item::before {
    display: none;
}

.testimonial-item blockquote {
    margin: 0;
}

.testimonial-item blockquote p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.testimonial-author {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-item {
        padding: 1.5rem 0;
    }
}

/* Clients Section */
.clients-section {
    margin-top: 5rem;
    padding-top: 4rem;
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 400px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 20%, var(--ink) 50%, transparent 80%);
    opacity: 0.1;
}

.clients-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--ink-light);
}

.clients-intro {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
}

.clients-grid .client-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.client-name:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .clients-grid {
        gap: 1.5rem 2rem;
    }

    .client-name {
        font-size: 1.1rem;
    }
}

.photo-cta-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: none;
    text-align: center;
    position: relative;
}

.photo-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 400px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 20%, var(--ink) 50%, transparent 80%);
    opacity: 0.1;
}

/* Experiences Page */
.exp-intro {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: none;
    position: relative;
}

.exp-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 400px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 20%, var(--ink) 50%, transparent 80%);
    opacity: 0.1;
}

.exp-offerings {
    display: grid;
    gap: 2rem;
}

.exp-card {
    padding: 2.5rem 2rem;
    border: none;
    border-radius: 8px;
    position: relative;
    background: #F5F3F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.exp-card h3 {
    margin-top: 0;
}

.exp-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light) !important;
    margin-bottom: 1rem;
}

.exp-list {
    list-style: none;
    margin-top: 1.5rem;
}

.exp-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--subtle);
}

.exp-philosophy {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: none;
    position: relative;
}

.exp-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 400px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 20%, var(--ink) 50%, transparent 80%);
    opacity: 0.1;
}

.exp-philosophy em {
    font-style: italic;
}

.exp-cta-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: none;
    text-align: center;
    position: relative;
}

.exp-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 400px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 20%, var(--ink) 50%, transparent 80%);
    opacity: 0.1;
}


/* ==================== BLOG ARTICLE ==================== */

.article-header {
    padding: 4rem 2.5rem 4rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.article-hero-image + .article-header {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.article-excerpt {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.5;
}

/* New Article Header with Category */
.article-header-new {
    padding: 4rem 2.5rem 4rem;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--dusty-blue);
    padding-left: 40px;
}

.article-header-new .article-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.article-header-new .article-category-icon {
    width: 48px;
    height: 48px;
}

.article-header-new .article-category-name {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
}

.article-header-new .article-meta {
    font-size: 0.9375rem;
    color: var(--light);
    margin-bottom: 20px;
    display: block;
}

.article-header-new h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.article-header-new .article-excerpt {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.6;
}

.article-hero-image {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem 3rem;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-content {
    padding: 3rem 2.5rem 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.article-content p:first-child::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem;
}

.article-content blockquote {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--gray);
    border-left: 2px solid var(--sage);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

/* Lesson / Handbook Format */
.lesson-hero {
    padding: 4rem 2.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.lesson-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dusty-blue);
    margin-bottom: 0.75rem;
}

.lesson-subtitle {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Lesson Content Overrides */
.lesson-content {
    padding: 2.5rem 2.5rem 5rem;
    max-width: 640px;
}

.lesson-content p:first-child::first-letter {
    font-size: inherit;
    float: none;
    margin: 0;
    line-height: inherit;
}

/* Body text */
.lesson-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.875rem;
    color: var(--ink-light);
}

/* Section headings */
.lesson-content h2 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dusty-blue);
    margin: 3rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--subtle);
}

.lesson-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

/* Lesson Callout Boxes */
.lesson-callout {
    background: rgba(143, 163, 176, 0.05);
    border-left: 2px solid rgba(143, 163, 176, 0.25);
    border-radius: 0 4px 4px 0;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}

.lesson-callout p {
    font-size: 0.875rem;
    color: var(--ink-light);
    margin-bottom: 0.5rem;
    line-height: 1.65;
}

.lesson-callout p:last-child {
    margin-bottom: 0;
}

.lesson-callout ul {
    list-style: disc;
    padding-left: 1.125rem;
    margin: 0;
}

.lesson-callout li {
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
    color: var(--ink-light);
}

.lesson-callout li:last-child {
    margin-bottom: 0;
}

.lesson-callout-label {
    font-size: 0.625rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light) !important;
    margin-bottom: 0.5rem !important;
}

.lesson-callout-outcome {
    background: transparent;
    border-left: 2px solid var(--dusty-blue);
    border-radius: 0;
    padding: 0.5rem 1rem;
    margin: 1.25rem 0;
}

.lesson-callout-outcome p {
    font-size: 0.875rem;
}

/* Key line */
.lesson-key-line {
    font-weight: 600;
    color: var(--ink) !important;
    font-size: 0.9375rem !important;
    line-height: 1.6;
    border-left: 2px solid var(--dusty-blue);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

/* Sub-labels */
.lesson-sub-label {
    font-size: 0.6875rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light) !important;
    margin-bottom: 0.25rem !important;
    margin-top: 1.5rem;
}

/* Numbered Section Headings */
.lesson-numbered-heading {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dusty-blue);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin: 2.5rem 0 1rem;
}

.lesson-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--dusty-blue);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Tweet Embeds */
.lesson-tweet-embed {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.lesson-tweet-embed .twitter-tweet {
    margin: 0 !important;
}

/* Standalone Quote */
.article-content blockquote.lesson-standalone-quote {
    text-align: center;
    border-left: none;
    border-top: none;
    border-bottom: none;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: none;
    border-radius: 0;
}

.article-content blockquote.lesson-standalone-quote p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}

.article-nav {
    padding: 3rem 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--subtle);
}

.article-nav a {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.article-nav a:hover {
    color: var(--ink);
}

/* Back to Garden */
.back-to-garden {
    padding: 3rem 2.5rem;
    text-align: center;
    border-top: none;
    position: relative;
}

.back-to-garden::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ink) 20%, var(--ink) 50%, transparent 80%);
    opacity: 0.1;
}

.garden-return {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.garden-return:hover {
    color: var(--ink);
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 900px) {
    body {
        padding-left: 0;
    }

    .nav {
        transform: translateX(-100%);
        width: 260px;
        padding: 2rem 1.5rem;
        border-right: 1px solid rgba(0,0,0,0.06);
        z-index: 300;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    /* Overlay behind sidebar on mobile */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.3);
        z-index: 250;
    }

    .nav-overlay.visible {
        display: block;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .about-photo img {
        margin: 0 auto;
        width: 200px;
        height: 200px;
    }

    .client-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

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

}

/* Mobile */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    /* Mobile Typography */
    h1 {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
        line-height: 1;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    /* Statement mobile */
    .statement {
        padding: 3rem 1.5rem;
    }

    .statement h2 {
        line-height: 1.3;
    }

    /* Garden areas mobile */
    .garden-areas {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem 5rem;
        gap: 1.5rem;
    }

    .garden-title {
        margin-bottom: 2rem;
    }

    .area {
        padding: 2rem 1.5rem;
    }

    .area img {
        max-width: 120px;
    }

    .area p {
        font-size: 1rem;
    }

    /* About mobile */
    .about {
        padding: 3rem 1.5rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-photo img {
        width: 160px;
        height: 160px;
    }

    .about-text h2 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .about-text p {
        font-size: 1.15rem;
    }

    /* Strategy section mobile */
    .strategy {
        padding: 3rem 1.5rem;
    }


    .service-item {
        padding: 2rem 0;
    }

    .service-item h3 {
        font-size: 1.5rem;
    }

    .service-item p {
        font-size: 1rem;
    }

    /* Clients mobile */
    .clients {
        padding: 3rem 1.5rem;
    }

    .clients h2 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 3rem;
    }

    .client-name {
        font-size: 1.25rem;
    }

    .client-work {
        font-size: 1rem;
    }

    /* Resources mobile */
    .recent-resources {
        padding: 4rem 1.5rem 3rem;
    }

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

    .resources-list {
        padding: 2rem 1.5rem 4rem;
    }

    .resource-card {
        padding: 1.5rem;
    }


    /* Recent posts mobile */
    .recent-posts {
        padding: 3rem 1.5rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .post-card {
        padding: 1.5rem;
    }

    .post-card h3 {
        font-size: 1.25rem;
    }

    /* Blog list mobile */
    .blog-list {
        padding: 2rem 1.5rem 4rem;
    }

    .blog-post {
        padding: 2rem 0;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .category-tag {
        font-size: 1.25rem;
    }

    .category-tag::before {
        width: 36px;
        height: 36px;
    }


    /* Lesson mobile */
    .lesson-hero {
        padding: 6rem 1.25rem 1.5rem;
    }

    .lesson-hero h1 {
        font-size: clamp(1.375rem, 6vw, 1.75rem);
    }

    .lesson-content {
        padding: 2rem 1.25rem 3rem;
    }

    .lesson-content p {
        font-size: 0.875rem;
    }

    .lesson-content h2 {
        font-size: 1.2rem;
        margin: 2.5rem 0 0.875rem;
        padding-top: 1.25rem;
    }

    .lesson-callout {
        padding: 0.875rem 1rem;
    }

    .lesson-callout p,
    .lesson-callout li {
        font-size: 0.8125rem;
    }

    .lesson-key-line {
        font-size: 0.875rem !important;
        padding-left: 0.875rem;
    }

    .lesson-numbered-heading {
        font-size: 1rem;
        margin: 2rem 0 0.75rem;
    }

    .lesson-number {
        width: 22px;
        height: 22px;
        font-size: 0.6875rem;
    }

    /* Dark footer mobile */
    .footer-dark {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-nav {
        gap: 2.5rem;
    }

    .footer-connect {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Subpages mobile */
    .page-hero {
        min-height: auto;
        padding: 7rem 1.5rem 3rem;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .page-desc {
        font-size: 1rem;
    }

    .page-content {
        padding: 2rem 1.5rem;
    }

    .page-content h3 {
        margin: 2rem 0 1rem;
    }

    .page-content p {
        font-size: 1rem;
    }

    /* Page header mobile */
    .page-header {
        padding: 6rem 1.5rem 2rem;
    }

    /* Article mobile */
    .article-header {
        padding: 7rem 1.5rem 2rem;
    }

    .article-hero-image + .article-header {
        padding-top: 2rem;
    }

    .article-header h1 {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
    }

    .article-excerpt {
        font-size: 1rem;
    }

    .article-hero-image {
        padding: 6rem 1.5rem 0;
    }

    .article-content {
        padding: 2rem 1.5rem 4rem;
    }

    .article-content p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .article-content p:first-child::first-letter {
        font-size: 2.5rem;
    }

    .article-content h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }

    .article-content blockquote {
        font-size: 1.2rem;
        padding-left: 1rem;
    }

    .article-nav {
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Experience cards mobile */
    .exp-card {
        padding: 1.5rem;
    }


}


/* ==================== STRATEGY PAGE — CLAURA STYLE v2 ==================== */

/* --- Pill badge (section label) --- */
.cl-pill {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink);
    background: rgba(0,0,0,0.05);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.01em;
}

.cl-pill-center {
    display: block;
    width: fit-content;
    margin: 0 0 1.5rem;
}

.cl-pill-sm {
    font-size: 0.6875rem;
    padding: 0.25rem 0.65rem;
    color: var(--gray);
}

/* --- Two button styles --- */
.cl-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #fff;
    background: #2b1a0a;
    padding: 1.25rem 2.5rem;
    border-radius: 22px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cl-btn-dark:hover {
    background: #3e2a15;
    transform: translateY(-1px);
    text-decoration: none;
}

.cl-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
    background: #ede8e1;
    padding: 0.7rem 0.75rem 0.7rem 1.75rem;
    border-radius: 22px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cl-btn-light:hover {
    background: #e3ddd5;
    text-decoration: none;
}

.cl-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.cl-btn-icon svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.cl-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* --- Section headings (shared) --- */
.cl-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ink);
    text-align: left;
    margin-bottom: 1rem;
}

.cl-section-title em {
    font-style: italic;
    color: var(--sand);
}

.cl-section-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    text-align: left;
    max-width: 560px;
    margin: 0;
}

/* --- Link arrow --- */
.cl-link-arrow {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}

.cl-link-arrow:hover {
    text-decoration: underline;
    text-decoration-color: var(--ink);
}

/* ===== HERO ===== */
.cl-hero {
    padding: 9rem 2rem 3.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cl-hero-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.cl-stars {
    font-size: 1.25rem;
    color: #c8a96e;
    letter-spacing: 0.1em;
}

.cl-hero-proof > span:last-child {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
}

.cl-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.75rem;
}

.cl-hero-sub {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #94877c;
    margin-bottom: 2.5rem;
}

/* --- Hero image --- */
.cl-hero-img {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.cl-hero-img img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    object-fit: cover;
    max-height: 520px;
}

/* ===== LOGOS ===== */
.cl-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2rem 2rem 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.cl-logos span {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    opacity: 0.3;
    transition: opacity 0.3s ease;
    letter-spacing: -0.01em;
}

.cl-logos span:hover {
    opacity: 0.6;
}

/* ===== ABOUT + STATS BENTO ===== */
.cl-about {
    padding: 0 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cl-about-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.cl-about-left .cl-pill {
    margin-bottom: 1.5rem;
}

.cl-about-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.cl-about-left h2 em {
    font-style: italic;
    color: var(--sand);
}

.cl-about-right {
    padding-top: 3.5rem;
}

.cl-about-right p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

/* --- Stats bento card with gradient bg --- */
.cl-stats-bento {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #8fa3b0 0%, #c4917b 40%, #a8b5a0 70%, #8fa3b0 100%);
    padding: 5rem 3rem;
}

.cl-stats-bento-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cl-glass-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.cl-glass-num {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.cl-glass-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* ===== SERVICES (tabs layout) ===== */
.cl-services {
    padding: 6rem 2rem 8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cl-services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.cl-services-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cl-tab {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--light);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.cl-tab sup {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--light);
    vertical-align: super;
}

.cl-tab-active {
    color: var(--ink);
    background: rgba(0,0,0,0.04);
}

.cl-tab-active sup {
    color: var(--gray);
}

.cl-tab:hover:not(.cl-tab-active) {
    color: var(--gray);
}

.cl-services-content {
    position: sticky;
    top: 6rem;
}

.cl-services-img {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.cl-services-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.cl-services-detail-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.cl-services-detail-desc {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gray);
    margin-bottom: 1.25rem;
}

/* ===== TESTIMONIAL BENTO (image bg) ===== */
.cl-testimonial-bento {
    padding: 0 2rem;
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.cl-testimonial-card-img {
    position: relative;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cl-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--sage);
    opacity: 0.6;
    margin-bottom: 1.5rem;
    display: block;
}

.cl-testimonial-card-img blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 2rem;
    max-width: 640px;
}

.cl-testimonial-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.cl-testimonial-meta::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--sand);
    margin-bottom: 1.25rem;
}

.cl-meta-name {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.cl-meta-role {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--gray);
}

/* ===== PROCESS (two-col) ===== */
.cl-process {
    padding: 6rem 2rem 8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cl-process-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.cl-process-left .cl-pill {
    margin-bottom: 1.5rem;
}

.cl-process-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.cl-process-left h2 em {
    font-style: italic;
    color: var(--sand);
}

.cl-process-left p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
}

.cl-process-left .cl-hero-btns {
    justify-content: flex-start;
}

.cl-process-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cl-process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--subtle);
    align-items: start;
}

.cl-process-step:first-child {
    border-top: 1px solid var(--subtle);
}

.cl-process-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--light);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.04);
    border-radius: 50%;
    line-height: 1;
}

.cl-process-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.cl-process-title-row h3 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ink);
}

.cl-process-detail p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray);
}

/* ===== COMPARISON ===== */
.cl-compare {
    padding: 6rem 2rem 8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cl-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.cl-compare-card {
    border-radius: 28px;
    overflow: hidden;
    padding: 0 0 2.5rem;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.cl-compare-dark {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
}

.cl-compare-warm {
    background: linear-gradient(135deg, #c4917b 0%, #d4a87c 50%, #c08060 100%);
    color: #fff;
}

/* Scrolling tags */
.cl-compare-tags-scroll {
    overflow: hidden;
    padding: 1.5rem 0 0;
    margin-bottom: auto;
}

.cl-compare-tags-track {
    display: flex;
    gap: 0.5rem;
    animation: clScrollTags 15s linear infinite;
    width: max-content;
}

.cl-compare-tags-track-reverse {
    animation: clScrollTagsReverse 15s linear infinite;
}

.cl-compare-tags-track span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

@keyframes clScrollTags {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes clScrollTagsReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.cl-compare-name {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    display: block;
    padding: 2.5rem 2rem 1.5rem;
}

.cl-compare-card > p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    padding: 0 2rem;
    max-width: 380px;
    margin: 0 auto;
}

/* ===== TESTIMONIAL CARDS ===== */
.cl-testimonials-grid-section {
    padding: 2rem 2rem 8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cl-testimonials-grid-section .cl-section-title {
    margin-bottom: 3rem;
}

.cl-testimonials-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cl-testi-card {
    background: transparent;
    border: 1px solid var(--subtle);
    border-radius: 20px;
    padding: 2.5rem;
}

.cl-testi-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--ink);
    font-style: italic;
    margin: 0 0 1.5rem;
}

.cl-testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cl-testi-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.cl-testi-name {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    display: block;
}

.cl-testi-role {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--gray);
    display: block;
}

/* ===== CTA ===== */
.cl-cta {
    padding: 6rem 2rem 10rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cl-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.cl-cta h2 em {
    font-style: italic;
    color: var(--sand);
}

.cl-cta p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

/* ===== ANIMATIONS ===== */
.cl-fade {
    opacity: 0;
    transform: translateY(24px);
    animation: clFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: calc(var(--d, 0) * 0.12s + 0.15s);
}

@keyframes clFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cl-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: calc(var(--d, 0) * 0.1s);
}

.cl-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cl-about-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cl-about-right {
        padding-top: 0;
    }

    .cl-services-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cl-services-content {
        position: static;
    }

    .cl-process-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cl-compare-grid {
        grid-template-columns: 1fr;
    }

    .cl-stats-bento-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cl-hero {
        padding: 7rem 1.5rem 2.5rem;
    }

    .cl-hero-img {
        padding: 0 1rem;
    }

    .cl-hero-img img {
        border-radius: 18px;
        max-height: 280px;
    }

    .cl-hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cl-logos {
        gap: 1.25rem 2rem;
        padding: 1.5rem 1.5rem 4rem;
    }

    .cl-logos span {
        font-size: 0.8125rem;
    }

    .cl-about {
        padding: 0 1.5rem 4rem;
    }

    .cl-stats-bento {
        padding: 3rem 1.5rem;
    }

    .cl-stats-bento-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cl-glass-card {
        padding: 2rem 1.5rem;
    }

    .cl-services {
        padding: 4rem 1.5rem 5rem;
    }

    .cl-tab {
        font-size: 1.75rem;
        padding: 0.75rem 1rem;
    }

    .cl-services-img img {
        height: 240px;
    }

    .cl-testimonial-bento {
        padding: 0 1rem;
    }

    .cl-testimonial-card-img {
        padding: 2.5rem 1rem;
    }

    .cl-process {
        padding: 4rem 1.5rem 5rem;
    }

    .cl-compare {
        padding: 4rem 1.5rem 5rem;
    }

    .cl-compare-card {
        min-height: 320px;
        border-radius: 20px;
    }

    .cl-testimonials-grid-section {
        padding: 2rem 1.5rem 5rem;
    }

    .cl-testimonials-duo {
        grid-template-columns: 1fr;
    }

    .cl-testi-card {
        padding: 2rem;
    }

    .cl-cta {
        padding: 4rem 1.5rem 6rem;
    }
}


/* ==================== PHOTOGRAPHY PAGE — CLAURA STYLE ==================== */

/* --- Hero --- */
.ph-hero {
    text-align: center;
    padding: 4rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.ph-hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.ph-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.ph-hero-title em {
    font-style: italic;
    color: #D4C9B8;
}

.ph-hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Hero bento (single large image) --- */
.ph-hero-bento {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.ph-hero-bento img {
    width: 100%;
    height: 70vh;
    max-height: 700px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* --- About section (two-column like strategy) --- */
.ph-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
}

.ph-about-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ph-about-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin: 1rem 0 0;
    letter-spacing: -0.02em;
}

.ph-about-left h2 em {
    font-style: italic;
    color: #D4C9B8;
}

.ph-about-right {
    padding-top: 3rem;
}

.ph-about-right p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 480px;
}

/* --- Bento image grids --- */
.ph-bento-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 1.25rem;
}

.ph-bento-img {
    overflow: hidden;
    border-radius: 24px;
}

.ph-bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ph-bento-img:hover img {
    transform: scale(1.03);
}

.ph-bento-img-wide img {
    height: 500px;
}

.ph-bento-img-tall img {
    height: 500px;
}

/* Full-width single bento image */
.ph-bento-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 1.25rem;
}

.ph-bento-full .ph-bento-img img {
    width: 100%;
    height: 65vh;
    max-height: 650px;
    object-fit: cover;
}

/* Three-image bento: large left + two stacked right */
.ph-bento-trio {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 1.25rem;
}

.ph-bento-trio-main img {
    height: 100%;
    min-height: 600px;
}

.ph-bento-trio-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ph-bento-trio-side .ph-bento-img img {
    height: 290px;
}

/* --- Spacious gallery --- */
.ph-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.ph-gallery-full {
    overflow: hidden;
    border-radius: 20px;
}

.ph-gallery-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.ph-gallery-full:hover img {
    transform: scale(1.02);
}

.ph-gallery-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ph-gallery-duo-tall .ph-gallery-img {
    aspect-ratio: 3 / 4;
}

.ph-gallery-img {
    overflow: hidden;
    border-radius: 20px;
}

.ph-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.ph-gallery-img:hover img {
    transform: scale(1.02);
}

/* --- What I photograph (services) --- */
.ph-services {
    text-align: center;
    padding: 6rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ph-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    text-align: left;
}

.ph-service-card {
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.ph-service-num {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--gray);
    display: block;
    margin-bottom: 1.25rem;
}

.ph-service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.ph-service-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* --- Process section (reuses cl-process-step styles) --- */
.ph-process {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 6rem;
}

.ph-process-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.ph-process-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin: 1rem 0 1.25rem;
    letter-spacing: -0.02em;
}

.ph-process-left h2 em {
    font-style: italic;
    color: #D4C9B8;
}

.ph-process-left > p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 420px;
}

.ph-process-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ==================== PHOTOGRAPHY RESPONSIVE ==================== */

@media (max-width: 900px) {
    .ph-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .ph-hero-bento {
        padding: 0 1.5rem 4rem;
    }

    .ph-hero-bento img {
        height: 50vh;
        border-radius: 20px;
    }

    .ph-about {
        padding: 4rem 1.5rem 3rem;
    }

    .ph-about-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ph-about-right {
        padding-top: 0;
    }

    .ph-bento-duo {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 1rem;
    }

    .ph-bento-img-wide img,
    .ph-bento-img-tall img {
        height: 350px;
    }

    .ph-bento-full {
        padding: 0 1.5rem 1rem;
    }

    .ph-bento-full .ph-bento-img img {
        height: 45vh;
        max-height: 400px;
    }

    .ph-bento-trio {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem 1rem;
    }

    .ph-bento-trio-main img {
        min-height: 350px;
    }

    .ph-bento-trio-side .ph-bento-img img {
        height: 250px;
    }

    .ph-gallery {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }

    .ph-gallery-duo {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ph-services {
        padding: 4rem 1.5rem 3rem;
    }

    .ph-services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ph-process {
        padding: 4rem 1.5rem 5rem;
    }

    .ph-process-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .ph-hero {
        padding: 7rem 1.25rem 2.5rem;
    }

    .ph-hero-sub br {
        display: none;
    }

    .ph-hero-bento {
        padding: 0 1rem 3rem;
    }

    .ph-hero-bento img {
        height: 40vh;
        border-radius: 16px;
    }

    .ph-bento-duo {
        padding: 0 1rem 0.75rem;
    }

    .ph-bento-img {
        border-radius: 16px;
    }

    .ph-bento-img-wide img,
    .ph-bento-img-tall img {
        height: 280px;
    }

    .ph-bento-full {
        padding: 0 1rem 0.75rem;
    }

    .ph-bento-full .ph-bento-img img {
        height: 35vh;
    }

    .ph-bento-trio {
        padding: 2rem 1rem 0.75rem;
    }

    .ph-bento-trio-main img {
        min-height: 280px;
    }

    .ph-bento-trio-side .ph-bento-img img {
        height: 200px;
    }

    .ph-gallery {
        padding: 0 1rem;
        gap: 2rem;
    }

    .ph-gallery-full, .ph-gallery-img {
        border-radius: 16px;
    }

    .ph-gallery-full img, .ph-gallery-img img {
        border-radius: 16px;
    }

    .ph-service-card {
        padding: 1.75rem 1rem;
    }
}


/* ==================== RESOURCES PAGE — CLAURA STYLE ==================== */

/* --- Hero --- */
.rs-hero {
    text-align: center;
    padding: 4rem 2rem 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.rs-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin: 1.5rem 0 1.25rem;
    letter-spacing: -0.02em;
}

.rs-hero-title em {
    font-style: italic;
    color: #D4C9B8;
}

.rs-hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* --- Resource bento cards (horizontal: image left, text right) --- */
.rs-cards {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rs-bento {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.rs-bento:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.rs-bento-img {
    flex: 0 0 30%;
    min-height: 160px;
    overflow: hidden;
}

.rs-bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rs-bento:hover .rs-bento-img img {
    transform: scale(1.04);
}

.rs-bento-text {
    flex: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.rs-bento-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    background: var(--subtle);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    width: fit-content;
}

.rs-bento-text h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.rs-bento-text p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Resources bento responsive */
@media (max-width: 600px) {
    .rs-cards {
        padding: 0 1.25rem 4rem;
    }

    .rs-bento {
        flex-direction: column;
        border-radius: 16px;
    }

    .rs-bento-img {
        flex: none;
        height: 180px;
    }

    .rs-bento-text {
        padding: 1.5rem;
    }
}

/* --- Legacy resource cards grid (unused, kept for reference) --- */
.rs-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Base card — image-backed */
.rs-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 24px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.rs-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

/* Background image */
.rs-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.rs-card:hover .rs-card-bg {
    transform: scale(1.04);
}

/* Gradient overlay — bottom-heavy for text legibility */
.rs-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.1) 100%
    );
}

/* Content sits above overlay */
.rs-card-content {
    position: relative;
    z-index: 2;
    padding: 2.75rem 3rem;
}

/* Featured card — full width, taller */
.rs-card-featured {
    min-height: 480px;
}

.rs-card-featured h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0.75rem 0 1rem;
    letter-spacing: -0.02em;
    max-width: 500px;
}

.rs-card-featured p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0 0 1.5rem;
    max-width: 440px;
}

/* Badge — glass style on image */
.rs-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

/* Duo grid — two cards side by side */
.rs-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.rs-duo .rs-card {
    min-height: 420px;
}

.rs-duo .rs-card h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0.75rem 0 0.75rem;
    letter-spacing: -0.01em;
}

.rs-duo .rs-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
    max-width: 360px;
}

/* Card link — white on image */
.rs-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin-top: 1.5rem;
    opacity: 0.9;
}

.rs-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.rs-card:hover .rs-arrow {
    transform: translateX(4px);
}

/* ==================== RESOURCES RESPONSIVE ==================== */

@media (max-width: 900px) {
    .rs-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .rs-grid {
        padding: 0 1.5rem 5rem;
    }

    .rs-card-featured {
        min-height: 380px;
    }

    .rs-card-content {
        padding: 2.25rem 2rem;
    }

    .rs-duo {
        grid-template-columns: 1fr;
    }

    .rs-duo .rs-card {
        min-height: 360px;
    }
}

@media (max-width: 600px) {
    .rs-hero {
        padding: 7rem 1.25rem 3rem;
    }

    .rs-grid {
        padding: 0 1.25rem 4rem;
    }

    .rs-card {
        border-radius: 20px;
    }

    .rs-card-featured {
        min-height: 340px;
    }

    .rs-card-featured h2 {
        font-size: 1.7rem;
    }

    .rs-card-content {
        padding: 2rem 1.5rem;
    }

    .rs-duo .rs-card {
        min-height: 300px;
    }
}


/* ==================== HOMEPAGE — CLAURA STYLE ==================== */

.hp-hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.hp-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.hp-hero-title em {
    font-style: italic;
    color: #D4C9B8;
}

/* Services bento */
.hp-services {
    text-align: center;
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.hp-service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 24px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 440px;
    transition: transform 0.4s ease;
}

.hp-service-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.hp-service-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.hp-service-card:hover .hp-service-bg {
    transform: scale(1.04);
}

.hp-service-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.05) 100%);
}

.hp-service-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
}

.hp-service-content h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0.75rem 0 0.5rem;
    letter-spacing: -0.01em;
}

.hp-service-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
    max-width: 300px;
}

.hp-service-content .rs-badge {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
}

.hp-service-content .rs-card-link {
    color: #fff;
    margin-top: 1.25rem;
    opacity: 0.9;
}

/* Latest writing section */
.hp-writing {
    text-align: center;
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hp-writing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
    text-align: left;
}

.hp-writing-card {
    display: flex;
    flex-direction: column;
    background: #f3efea;
    border-radius: 24px;
    padding: 2.5rem 2.5rem;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 280px;
}

.hp-writing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    text-decoration: none;
}

.hp-writing-card time {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
    display: block;
}

.hp-writing-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 1rem 0 0;
    letter-spacing: -0.01em;
}

.hp-writing-card .rs-card-link {
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--ink);
}

/* Homepage responsive */
@media (max-width: 900px) {
    .hp-hero { padding: 5rem 1.5rem 3rem; }
    .hp-services-grid { grid-template-columns: 1fr; }
    .hp-service-card { min-height: 360px; }
    .hp-writing-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hp-hero { padding: 4.5rem 1.25rem 2.5rem; }
    .hp-service-card { min-height: 300px; }
    .hp-service-content { padding: 2rem 1.5rem; }
}

/* ==================== HOMEPAGE SECTIONS ==================== */

.hp-section {
    padding: 4rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hp-section .cl-section-title {
    margin-bottom: 2.5rem;
}

.hp-grid {
    display: grid;
    gap: 1.25rem;
}

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

/* Base card */
.hp-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 24px;
    text-decoration: none;
    color: var(--ink);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    text-decoration: none;
}

/* Dark card (image background) */
.hp-card-dark {
    min-height: 380px;
}

.hp-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.hp-card:hover .hp-card-bg {
    transform: scale(1.04);
}

.hp-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
}

/* Light card */
.hp-card-light {
    background: #f3efea;
    justify-content: flex-start;
}

/* Card body */
.hp-card-body {
    position: relative;
    z-index: 2;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.hp-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0.25rem 0 0;
}

.hp-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

.hp-card-body time {
    font-size: 0.85rem;
    color: var(--gray);
    display: block;
}

.hp-card-body .rs-card-link {
    margin-top: auto;
    padding-top: 1rem;
    color: var(--ink);
}

/* Dark body variant (white text over image) */
.hp-card-body-dark {
    color: #fff;
    justify-content: flex-end;
}

.hp-card-body-dark h3 {
    color: #fff;
}

.hp-card-body-dark p {
    color: rgba(255,255,255,0.8);
}

.hp-card-body-dark .rs-card-link {
    color: #fff;
    opacity: 0.9;
}

/* Homepage responsive */
@media (max-width: 900px) {
    .hp-grid-3 {
        grid-template-columns: 1fr;
    }

    .hp-card-dark {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .hp-section {
        padding: 3rem 1.25rem 2rem;
    }

    .hp-card-body {
        padding: 1.75rem 1.5rem;
    }
}


/* ==================== NOW PAGE ==================== */

.nw-hero {
    text-align: center;
    padding: 4rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.nw-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--ink);
    margin: 1.5rem 0 1.25rem;
    letter-spacing: -0.03em;
}

.nw-hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.nw-updated {
    font-size: 0.85rem;
    color: var(--light);
    font-style: italic;
}

/* Project cards */
.nw-projects {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.nw-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.nw-card {
    display: flex;
    flex-direction: column;
    background: #f3efea;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 260px;
}

.nw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    text-decoration: none;
}

.nw-card-muted {
    background: #f8f6f3;
    opacity: 0.75;
}

.nw-card-muted:hover {
    transform: none;
    box-shadow: none;
}

.nw-card-top {
    margin-bottom: 1rem;
}

.nw-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.nw-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.nw-card .rs-card-link {
    margin-top: auto;
    padding-top: 1.25rem;
    color: var(--ink);
}

/* Focus lists */
.nw-focus {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

.nw-focus-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.nw-focus-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nw-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nw-list li {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.nw-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--sand);
    font-size: 0.85rem;
}

/* Now responsive */
@media (max-width: 900px) {
    .nw-hero { padding: 5rem 1.5rem 3rem; }
    .nw-project-grid { grid-template-columns: 1fr; }
    .nw-focus-split { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
    .nw-hero { padding: 4.5rem 1.25rem 2.5rem; }
}


/* ==================== EXPERIENCES PAGE ==================== */

.ex-hero {
    text-align: center;
    padding: 4rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.ex-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--ink);
    margin: 1.5rem 0 1.25rem;
    letter-spacing: -0.03em;
}

.ex-hero-title em { font-style: italic; color: #D4C9B8; }

.ex-hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* About */
.ex-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.ex-about-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ex-about-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin: 1rem 0 0;
    letter-spacing: -0.02em;
}

.ex-about-left h2 em { font-style: italic; color: #D4C9B8; }

.ex-about-right {
    padding-top: 3rem;
}

.ex-about-right p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 0 1.25rem;
}

.ex-highlight {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink) !important;
    font-style: italic;
}

/* Offerings */
.ex-offerings {
    text-align: center;
    padding: 5rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ex-offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    text-align: left;
}

.ex-offering-card {
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.ex-offering-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}

.ex-card-subtitle {
    font-size: 0.85rem;
    color: var(--light);
    font-style: italic;
    margin: 0 0 1rem;
}

.ex-offering-card > p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.ex-card-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ex-card-list li {
    font-size: 0.9rem;
    color: var(--gray);
    padding-left: 1rem;
    position: relative;
}

.ex-card-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--sand);
    font-weight: 700;
}

/* Experiences responsive */
@media (max-width: 900px) {
    .ex-hero { padding: 5rem 1.5rem 3rem; }
    .ex-about-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .ex-about-right { padding-top: 0; }
    .ex-offerings-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 600px) {
    .ex-hero { padding: 4.5rem 1.25rem 2.5rem; }
    .ex-hero-sub br { display: none; }
}


/* ==================== WRITING PAGE ==================== */

.wr-hero {
    text-align: center;
    padding: 4rem 2rem 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.wr-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--ink);
    margin: 1.5rem 0 1.25rem;
    letter-spacing: -0.03em;
}

.wr-hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Blog card list */
.wr-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wr-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-decoration: none;
    color: var(--ink);
    transition: opacity 0.3s ease;
}

.wr-card:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.wr-card:hover {
    opacity: 0.7;
    text-decoration: none;
}

.wr-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.wr-card-meta time {
    font-size: 0.85rem;
    color: var(--light);
}

.wr-card h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.wr-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.wr-card .rs-card-link {
    margin-top: 1.25rem;
    color: var(--ink);
}

/* Writing responsive */
@media (max-width: 900px) {
    .wr-hero { padding: 5rem 1.5rem 4rem; }
    .wr-list { padding: 0 1.5rem 5rem; }
}

@media (max-width: 600px) {
    .wr-hero { padding: 4.5rem 1.25rem 3rem; }
    .wr-card { padding: 2rem 0; }
}


/* ==================== VOLTA PAGE ==================== */
/* Palette: #698961 (sage) & white. Spacious, quiet, nature. */

.vl-hero {
    text-align: center;
    padding: 8rem 2rem 4rem;
    max-width: 700px;
    margin: 0 auto;
}

.vl-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 1;
    color: #698961;
    margin: 0 0 3rem;
    letter-spacing: -0.03em;
}

.vl-epigraph {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
    border: none;
    padding: 0;
}

/* Shared section rhythm */
.vl-section {
    max-width: 620px;
    margin: 0 auto;
    padding: 5rem 2rem;
    border-top: 1px solid rgba(105,137,97,0.15);
}

.vl-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #698961;
    margin: 0 0 2.5rem;
}

.vl-section-intro {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gray);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.vl-prose p {
    font-size: 1.05rem;
    color: var(--ink-light);
    line-height: 1.8;
    margin: 0 0 1.5rem;
}

.vl-prose p:last-child {
    margin-bottom: 0;
}

/* List */
.vl-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vl-list li {
    font-size: 1.05rem;
    color: var(--ink-light);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.vl-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #698961;
}

/* Moments */
.vl-moments {
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 2rem;
    border-top: 1px solid rgba(105,137,97,0.15);
    text-align: center;
}

.vl-moments-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 2;
    color: var(--gray);
    margin: 0;
}

/* Why we gather */
.vl-why {
    max-width: 620px;
    margin: 0 auto;
    padding: 5rem 2rem;
    border-top: 1px solid rgba(105,137,97,0.15);
}

.vl-why-lines {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.vl-why-lines p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.5;
    margin: 0;
}

/* Protocol download */
.vl-protocol {
    max-width: 620px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(105,137,97,0.15);
}

.vl-protocol-inner {
    background: rgba(105,137,97,0.06);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.vl-protocol-inner .vl-section-title {
    margin-bottom: 1rem;
}

.vl-protocol-inner p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 2rem;
}

.vl-download {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background: #698961;
    padding: 0.75rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.vl-download:hover {
    background: #576f50;
    transform: translateY(-1px);
}

/* Volta CTA */
.vl-cta {
    max-width: 620px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    text-align: center;
}

.vl-cta p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0 0 1.25rem;
}

.vl-cta-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: #698961;
    text-decoration: none;
    transition: color 0.2s;
}

.vl-cta-link:hover {
    color: #576f50;
}

/* Volta responsive */
@media (max-width: 900px) {
    .vl-hero { padding: 5rem 1.5rem 3rem; }
    .vl-section, .vl-moments, .vl-why, .vl-protocol { padding: 3.5rem 1.5rem; }
}

@media (max-width: 600px) {
    .vl-hero { padding: 4rem 1.25rem 2.5rem; }
    .vl-section, .vl-moments, .vl-why, .vl-protocol { padding: 3rem 1.25rem; }
    .vl-protocol-inner { padding: 2rem 1.5rem; }
}


/* ==================== BLOG ARTICLE ==================== */

.bl-header {
    text-align: center;
    padding: 4rem 2rem 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.bl-back {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.bl-back:hover { color: var(--ink); }

.bl-date {
    display: block;
    font-size: 0.85rem;
    color: var(--light);
    margin-top: 0.75rem;
}

.bl-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin: 1.5rem 0 0;
    letter-spacing: -0.02em;
}

/* Article body */
.bl-article {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--ink-light);
    line-height: 1.75;
}

.bl-article h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--ink);
    margin: 3rem 0 1rem;
    letter-spacing: -0.02em;
}

.bl-article h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--ink);
    margin: 2.5rem 0 0.75rem;
}

.bl-article p {
    margin: 0 0 1.25rem;
}

.bl-article blockquote {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ink);
    border-left: 3px solid var(--sand);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 2rem 0;
}

.bl-article ul, .bl-article ol {
    padding-left: 1.5rem;
    margin: 1rem 0 1.5rem;
}

.bl-article li {
    margin-bottom: 0.5rem;
}

.bl-article a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bl-article a:hover {
    color: var(--gray);
}

.bl-article strong {
    font-weight: 600;
    color: var(--ink);
}

.bl-hero-img {
    width: 100%;
    border-radius: 20px;
    margin: 1rem 0 2rem;
}

/* Article navigation */
.bl-nav {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 2rem;
}

.bl-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.bl-nav-link:hover { opacity: 0.6; }

.bl-nav-next { text-align: right; margin-left: auto; }

.bl-nav-label {
    font-size: 0.8rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bl-nav-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.3;
}

/* Blog responsive */
@media (max-width: 900px) {
    .bl-header { padding: 5rem 1.5rem 2.5rem; }
    .bl-article { padding: 0 1.5rem 3rem; }
    .bl-nav { padding: 0 1.5rem 4rem; }
}

@media (max-width: 600px) {
    .bl-header { padding: 4.5rem 1.25rem 2rem; }
    .bl-article { padding: 0 1.25rem 3rem; font-size: 1rem; }
    .bl-nav { flex-direction: column; gap: 1.5rem; padding: 0 1.25rem 3rem; }
    .bl-nav-next { text-align: left; margin-left: 0; }
}
