/* ============================================
   THE ZENHAUS - Main Stylesheet
   A discipline and self-mastery brand
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --onyx: #121212;
    --onyx-dark: #0D0D0D;
    --onyx-darker: #0A0A0A;
    --charcoal: #1A1A1A;
    --ivory: #F5F5F0;
    --ivory-muted: rgba(245, 245, 240, 0.7);
    --ivory-subtle: rgba(245, 245, 240, 0.4);
    --gold: #C9A962;
    --gold-hover: #d4b66e;
    --navy: #1A2744;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;
    --content-max: 700px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

::selection {
    background: rgba(201, 169, 98, 0.3);
    color: var(--ivory);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.serif {
    font-family: var(--font-serif);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }
.fade-delay-4 { animation-delay: 0.8s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 24px;
    transition: background-color var(--transition-base), backdrop-filter var(--transition-base);
}

.nav.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
    transition: opacity var(--transition-base);
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-link {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--ivory);
    text-transform: uppercase;
    transition: color var(--transition-base);
    opacity: 0.85;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    opacity: 1;
}

.menu-btn {
    display: none;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-line {
    width: 24px;
    height: 2px;
    background-color: var(--ivory);
    transition: all var(--transition-base);
}

.menu-btn.open .menu-line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-btn.open .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-btn.open .menu-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--onyx);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--ivory);
    letter-spacing: 2px;
    transition: color var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-tagline {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 500;
    display: block;
}

.hero-title {
    font-size: clamp(48px, 12vw, 120px);
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.hero-accent {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ivory-muted);
    max-width: 500px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.hero-line {
    width: 1px;
    height: 80px;
    background-color: var(--gold);
    margin: 0 auto;
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ivory-subtle);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201, 169, 98, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding) 24px;
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.section-alt {
    background-color: var(--onyx-dark);
}

.section-charcoal {
    background-color: var(--charcoal);
}

.section-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
    font-weight: 500;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--ivory-muted);
    margin-bottom: 32px;
    font-weight: 300;
}

/* ============================================
   BUTTONS
   ============================================ */
.text-btn {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-base);
}

.text-btn:hover {
    gap: 16px;
}

.text-btn .arrow {
    font-size: 18px;
    transition: transform var(--transition-base);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--gold);
    color: var(--onyx-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-amazon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background-color: var(--gold);
    color: var(--onyx-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.btn-amazon:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-amazon svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   STANDARD GRID
   ============================================ */
.standard-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.standard-right {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(245, 245, 240, 0.1);
    padding-left: 48px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(245, 245, 240, 0.06);
}

.pillar-item:last-child {
    border-bottom: none;
}

.pillar-number {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

.pillar-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ============================================
   JOURNAL PREVIEW
   ============================================ */
.journal-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.journal-image-area {
    display: flex;
    justify-content: center;
}

.journal-mockup {
    position: relative;
}

.journal-cover {
    width: 280px;
    height: 380px;
    background-color: var(--onyx-dark);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.5),
        -5px -5px 20px rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.2);
    position: relative;
    overflow: hidden;
}

.journal-spine {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.journal-cover-inner {
    text-align: center;
    padding: 40px;
}

.journal-cover-line {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto 24px;
    opacity: 0.6;
}

.journal-cover-inner .journal-cover-line:last-child {
    margin: 24px auto 0;
}

.journal-cover-title {
    font-family: var(--font-serif);
    font-size: 24px;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 4px;
}

.journal-cover-sub {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 24px;
    font-weight: 500;
}

.journal-features {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.journal-feature {
    font-size: 13px;
    color: rgba(245, 245, 240, 0.5);
    letter-spacing: 1px;
}

.journal-feature-divider {
    color: var(--gold);
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    padding: var(--section-padding) 24px;
    text-align: center;
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.quote {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 36px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 24px;
    color: rgba(245, 245, 240, 0.9);
}

.quote-cite {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gold);
    font-style: normal;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding) 24px;
    text-align: center;
    background-color: var(--onyx-dark);
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.cta-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--ivory-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: 180px 24px 100px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(245, 245, 240, 0.6);
    font-weight: 300;
}

/* ============================================
   PROSE CONTENT
   ============================================ */
.prose-section {
    padding: 40px 24px var(--section-padding);
}

.prose-container {
    max-width: 680px;
    margin: 0 auto;
}

.prose-lead {
    font-size: 22px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 48px;
    color: rgba(245, 245, 240, 0.9);
}

.prose {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(245, 245, 240, 0.75);
    margin-bottom: 28px;
    font-weight: 300;
}

.prose-heading {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 28px;
    margin-top: 48px;
    color: var(--ivory);
    letter-spacing: -0.5px;
}

.prose-final {
    font-size: 17px;
    line-height: 1.9;
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin: 56px 0;
    opacity: 0.5;
}

/* ============================================
   PILLARS PAGE
   ============================================ */
.standard-intro {
    padding: 0 24px 80px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pillars-section {
    padding: 0 24px var(--section-padding);
    max-width: 900px;
    margin: 0 auto;
}

.pillar-card {
    padding: 56px 0;
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.pillar-card-header {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 20px;
}

.pillar-card-number {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 500;
}

.pillar-card-name {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.pillar-principle {
    font-size: 20px;
    color: rgba(245, 245, 240, 0.9);
    margin-bottom: 16px;
    font-style: italic;
    font-weight: 300;
}

.pillar-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 245, 240, 0.6);
    font-weight: 300;
    max-width: 600px;
}

.standard-cta {
    padding: 80px 24px;
    text-align: center;
    background-color: var(--onyx-dark);
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

/* ============================================
   JOURNAL PAGE
   ============================================ */
.journal-hero-section {
    padding: 0 24px 100px;
}

.journal-hero-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.journal-showcase {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.journal-cover-large {
    width: 320px;
    height: 440px;
    background-color: var(--onyx-dark);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        30px 30px 80px rgba(0, 0, 0, 0.6),
        -10px -10px 40px rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.25);
    position: relative;
    overflow: hidden;
}

.journal-cover-large .journal-spine {
    left: 10px;
    width: 3px;
}

.journal-cover-inner-large {
    text-align: center;
    padding: 40px;
}

.journal-cover-title-large {
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: 8px;
    font-weight: 600;
    margin-bottom: 4px;
}

.journal-cover-sub-large {
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--gold);
    margin-top: 32px;
    font-weight: 500;
}

.journal-details {
    padding-right: 24px;
}

.journal-lead {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 24px;
    font-family: var(--font-serif);
    font-style: italic;
}

.journal-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ivory-muted);
    margin-bottom: 32px;
    font-weight: 300;
}

.price-area {
    margin-bottom: 32px;
}

.price {
    font-size: 36px;
    font-family: var(--font-serif);
    font-weight: 400;
    margin-right: 16px;
}

.price-note {
    font-size: 14px;
    color: rgba(245, 245, 240, 0.5);
}

/* Features Grid */
.features-section {
    padding: 80px 24px;
    background-color: var(--onyx-dark);
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.features-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.5px;
}

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.feature-card {
    padding: 32px;
    border-left: 1px solid rgba(201, 169, 98, 0.3);
}

.feature-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245, 245, 240, 0.6);
    font-weight: 300;
}

/* Testimonial */
.testimonial-section {
    padding: 100px 24px;
    text-align: center;
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 28px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 24px;
    color: rgba(245, 245, 240, 0.9);
}

.testimonial-cite {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gold);
    font-style: normal;
}

.journal-final-cta {
    padding: 100px 24px;
    text-align: center;
    background-color: var(--charcoal);
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-section {
    padding: 0 24px 100px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(245, 245, 240, 0.08);
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ivory);
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    gap: 24px;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 24px;
    color: var(--gold);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 245, 240, 0.65);
    font-weight: 300;
    padding-right: 48px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-contact {
    padding: 80px 24px;
    text-align: center;
    background-color: var(--onyx-dark);
    border-top: 1px solid rgba(245, 245, 240, 0.08);
}

.email-link {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 1px;
    transition: opacity var(--transition-base);
}

.email-link:hover {
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--onyx-darker);
    padding: 80px 24px 40px;
    border-top: 1px solid rgba(245, 245, 240, 0.06);
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(245, 245, 240, 0.5);
    font-style: italic;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.4);
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-link {
    color: rgba(245, 245, 240, 0.7);
    font-size: 14px;
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(245, 245, 240, 0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(245, 245, 240, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal-link {
    font-size: 13px;
    color: rgba(245, 245, 240, 0.4);
    transition: color var(--transition-base);
}

.footer-legal-link:hover {
    color: var(--ivory);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .standard-grid,
    .journal-grid,
    .journal-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .standard-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(245, 245, 240, 0.1);
        padding-top: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journal-details {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .pillar-card-name {
        font-size: 32px;
    }
    
    .journal-cover,
    .journal-cover-large {
        width: 240px;
        height: 320px;
    }
    
    .journal-cover-title,
    .journal-cover-title-large {
        font-size: 20px;
        letter-spacing: 4px;
    }
    
    .page-hero {
        padding: 140px 24px 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: -1px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-primary,
    .btn-amazon {
        padding: 14px 32px;
        font-size: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
/* Journal page: make real product photo blend with the dark aesthetic */
.journal-photo-large {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 18px;

  /* blend treatment */
  filter: brightness(0.88) contrast(1.06) saturate(0.95);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
  border: 1px solid rgba(201,162,39,0.22); /* antique gold */
  background: rgba(0,0,0,0.35);
  padding: 14px;
}

