/* Local Font definitions */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('/fonts/cormorant-garamond-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 300 700;
    font-display: swap;
    src: url('/fonts/cormorant-garamond-italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/outfit-normal.woff2') format('woff2');
}

:root {
    /* Color Palette */
    --bg-primary: #FAF9F6;
    --bg-secondary: #F3EFE9;
    --bg-dark: #2A2A28;
    --text-primary: #2A2A28;
    --text-secondary: #5A5A55;
    --text-light: #FAF9F6;
    --accent-gold: #CBAA61;
    --accent-gold-hover: #B5954B;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --section-pad: 8rem 2rem;
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.8rem, 2.5vw, 2.5rem); margin-bottom: 1rem; }
p { margin-bottom: 1.2rem; font-size: 1.1rem; }

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.gradient-text {
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 40%, #A1C4FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse .maker-text {
    order: -1;
}

@media (max-width: 900px) {
    .split-layout, .split-layout.reverse {
        grid-template-columns: 1fr;
    }
    .split-layout.reverse .maker-text {
        order: 1;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 1.4rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .mobile-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a:not(.btn) { display: block; font-size: 1.1rem; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(203, 170, 97, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--text-primary);
}

.btn-nav {
    padding: 0.6rem 1.2rem;
    background-color: var(--accent-gold);
    color: var(--text-light);
    border-radius: 30px;
}

.btn-nav:hover {
    background-color: var(--accent-gold-hover);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 6rem 2rem 2rem;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
    padding-left: 2vw;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-video {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-video:hover {
    transform: rotate(0deg);
}

.hero-video iframe,
.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
    }
    .hero-content {
        padding-left: 0;
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-video {
        aspect-ratio: 16/9;
        transform: none;
    }
    .hero-video:hover {
        transform: none;
    }
}

/* Sections */
section {
    padding: var(--section-pad);
}

/* The Magic Section */
.magic-section {
    background-color: var(--bg-secondary);
}

.magic-image {
    position: relative;
}

.magic-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.floating-stat {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(203, 170, 97, 0.3);
}

.floating-stat strong {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1;
}

.floating-stat span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .floating-stat {
        right: 1rem;
        bottom: -1rem;
        width: 120px;
        height: 120px;
        padding: 1rem;
    }
    .floating-stat strong { font-size: 1.8rem; }
    .floating-stat span { font-size: 0.6rem; }
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(42, 42, 40, 0.1);
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Collections Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.card {
    background: #FFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.ai-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.72rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.card-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(203, 170, 97, 0.1);
    color: var(--accent-gold-hover);
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.feature-list {
    list-style: none;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #EEE;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* Maker Section */
.maker-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.maker-section h2 {
    color: var(--text-light);
}

.maker-section p {
    color: #CCC;
}

.maker-image {
    position: relative;
}

.maker-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    filter: brightness(0.9) contrast(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--accent-gold);
    color: #FFF;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .image-overlay {
        left: 1rem;
        bottom: 1rem;
        font-size: 1.2rem;
    }
}

.included-box {
    margin-top: 3rem;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.02);
}

.included-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.included-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.included-list li {
    font-size: 0.95rem;
    color: #CCC;
    display: flex;
    align-items: center;
}

.included-list li::before {
    content: '✓';
    color: var(--accent-gold);
    margin-right: 0.8rem;
    font-weight: bold;
}

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

/* Reviews Section */
.featured-in {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.featured-in a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.featured-in a:hover {
    color: var(--accent-gold);
}

.masonry-grid {
    column-count: 2;
    column-gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .masonry-grid { column-count: 1; }
}

.review-card {
    background: #FFF;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    break-inside: avoid;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.review-card.highlight {
    background: var(--bg-secondary);
    text-align: center;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.review-card.highlight p {
    margin: 0;
    font-size: 1.2rem;
}

.review-card.highlight a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.review-card.highlight a:hover {
    border-color: var(--accent-gold);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.5;
}

.reviewer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 2rem;
    color: #FFF;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 40, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #FFF;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #EEE;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--bg-primary);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-grid h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-grid p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 0.5rem;
}

.footer-grid ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-grid ul a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* Legacy footer-content for homepage */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links a {
        margin: 0 1rem;
    }
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* Bulk Order Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 42, 40, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Content Container */
.modal-content {
    background-color: var(--bg-primary);
    border: 1px solid rgba(203, 170, 97, 0.3);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Close button inside modal */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent-gold);
}

/* Modal Headers & Texts */
.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.modal-message {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Contact Box Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid rgba(203, 170, 97, 0.1);
}

.contact-label {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
}

.contact-value {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--accent-gold-hover);
    text-decoration: underline;
}

/* Footer Social Icons styling */
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(42, 42, 40, 0.03);
    border: 1px solid rgba(203, 170, 97, 0.2);
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(203, 170, 97, 0.2);
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   CONTENT PAGE STYLES
   ============================================ */

/* Page Hero (for inner pages) */
.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: var(--bg-secondary);
}

.page-hero h1 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.page-hero .subtitle {
    max-width: 650px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 2rem;
    margin-top: 70px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--accent-gold);
}

.breadcrumbs span {
    margin: 0 0.5rem;
    color: #CCC;
}

/* Article Layout */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.article-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.article-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.article-content h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.article-content strong {
    color: var(--text-primary);
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

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

.article-content blockquote {
    border-left: 3px solid var(--accent-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--bg-secondary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-content blockquote p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
}

/* Info Boxes */
.info-box {
    padding: 2rem 2.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.info-box.gold {
    background: rgba(203, 170, 97, 0.08);
    border: 1px solid rgba(203, 170, 97, 0.2);
}

.info-box.light {
    background: var(--bg-secondary);
    border: 1px solid rgba(0,0,0,0.05);
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Content Image */
.content-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-image.float-right {
    float: right;
    width: 45%;
    margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
    .content-image.float-right {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }
}

/* Two Column Content */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 1.5rem 0;
}

.faq-item h3 {
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

/* Story Cards */
.story-card {
    background: #FFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-bottom: 4rem;
}

.story-card .story-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.story-card .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card .story-image.wide-image {
    height: auto;
}

.story-card .story-image.wide-image img {
    height: auto;
    object-fit: contain;
}

.story-card .story-image.multi-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    height: 350px;
}

.story-card .story-image.multi-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .story-card .story-image.multi-image {
        grid-template-columns: 1fr;
        height: auto;
    }
    .story-card .story-image.multi-image img {
        height: 250px;
    }
}

.story-card .story-body {
    padding: 3rem;
}

.story-card .story-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.story-card .story-body h3 {
    margin-top: 0;
}

.story-card .story-body p {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* CTA Banner (reusable on content pages) */
.cta-banner {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.cta-banner h2 {
    color: var(--text-light);
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.cta-banner p {
    color: #CCC;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Page-level CTA (full width, no border-radius) */
.page-cta {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 6rem 2rem;
    text-align: center;
}

.page-cta h2 {
    color: var(--text-light);
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.page-cta p {
    color: #CCC;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stat-block {
    text-align: center;
}

.stat-block .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-block .stat-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Checklist */
.checklist {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Related Pages */
.related-pages {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.related-pages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-card {
    background: #FFF;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.related-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.related-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.related-card .arrow {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nursery Page Video Integration */
.nursery-video-wrapper {
    max-width: 640px;
    margin: 3rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background-color: #000;
}

.nursery-video-element {
    width: 100%;
    height: auto;
    display: block;
}
