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

:root {
    --bg: #FAF7F2;
    --bg-warm: #F5F0E8;
    --text: #1A1A1A;
    --text-secondary: #4A4A4A;
    --gold: #C9A84C;
    --gold-dark: #A88B3A;
    --border: #E5DFD4;
    --dark-bg: #1A1A1A;
    --dark-text: #FAF7F2;
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --container: 1200px;
    --gap: 80px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--bg);
}

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}


/* ═══════════ ANNOUNCEMENT BAR ═══════════ */
.announcement-bar {
    background-color: var(--dark-bg);
    color: var(--dark-text);
    text-align: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}


/* ═══════════ HEADER ═══════════ */
.header {
    position: sticky;
    top: 0;
    background-color: var(--bg);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold);
    padding: 8px 20px;
    transition: all 0.2s;
}

.nav-cta:hover {
    background-color: var(--gold);
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
}


/* ═══════════ BUTTONS ═══════════ */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background-color: var(--dark-bg);
    color: var(--dark-text);
    padding: 16px 40px;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-large {
    padding: 18px 48px;
    font-size: 15px;
}


/* ═══════════ HERO ═══════════ */
.hero {
    padding: 60px 0 40px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-media {
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.hero-content {
    padding: 20px 0;
}

.eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-tagline {
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1.4;
    color: var(--gold-dark);
    margin-bottom: 16px;
    max-width: 480px;
    letter-spacing: 0.01em;
}

.hero-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-price-block {
    margin-bottom: 12px;
    max-width: 400px;
}

.hero-price-block .hero-reserve-box,
.hero-price-block .scarcity-badge {
    width: 100%;
    box-sizing: border-box;
}

.hero .btn-large {
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

.price {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
}

.price-detail {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.scarcity-badge {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold);
    padding: 10px 24px;
    margin-top: 12px;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.hero-trust {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-item {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-check {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 15px;
}


/* ═══════════ SOCIAL PROOF BAR ═══════════ */
.social-proof-bar {
    border-top: none;
    border-bottom: none;
    padding: 48px 0;
    background-color: var(--dark-bg);
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.proof-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(250,247,242,0.15);
}


/* ═══════════ SECTIONS — SHARED ═══════════ */
.section-title {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    color: var(--text);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}


/* ═══════════ STORY SECTION ═══════════ */
.story-section {
    padding: var(--gap) 0;
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
}

.story-layout-d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.story-image-d {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.story-image-d > img {
    width: 100%;
    height: auto;
    display: block;
}

.story-image-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.88) 100%);
    padding: 60px 20px 24px;
    text-align: center;
}

.story-image-quote blockquote {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.story-text-d .lead-text {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text);
}

.story-text-d p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.story-body .lead-text {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text);
}

.story-body p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.story-pullquote {
    margin: 32px 0;
    padding: 24px 0;
    text-align: center;
    position: relative;
}

.story-pullquote::before,
.story-pullquote::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.story-pullquote::before {
    top: 0;
}

.story-pullquote::after {
    bottom: 0;
}

.story-pullquote blockquote {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-style: italic;
    font-weight: 500;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    position: relative;
}


/* ═══════════ PRAYER BREAK (Combined Image + Quote) ═══════════ */
.prayer-break {
    width: 100%;
}

/* Desktop: hidden — using mobile treatment everywhere */
.prayer-desktop {
    display: none;
}

/* Full image + gradient overlay (all breakpoints) */
.prayer-mobile {
    display: block;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.prayer-mobile img {
    width: 100%;
    height: auto;
    display: block;
}

.prayer-mobile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.85) 100%);
    padding: 80px 24px 32px;
    text-align: center;
}

.prayer-mobile-overlay blockquote {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}


/* ═══════════ SPEC BELL SAMPLES ═══════════ */
.spec-samples {
    margin-top: 28px;
    padding-top: 0;
    text-align: center;
}

.spec-samples-label {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.spec-samples-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.spec-sample-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text);
    transition: all 0.2s ease;
}

.spec-sample-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.spec-sample-btn.playing {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-dark);
}

.sp-svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
    flex-shrink: 0;
}

.spec-sample-btn.playing .sp-svg {
    animation: svgPulse 1s infinite alternate;
}

@keyframes svgPulse {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

.spec-samples-more {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 12px;
    margin-bottom: 0;
}

@media (max-width: 580px) {
    .spec-samples-row {
        gap: 6px;
    }

    .spec-sample-btn {
        padding: 7px 14px;
        font-size: 0.78rem;
    }

    .sp-svg {
        width: 11px;
        height: 11px;
    }
}


/* ═══════════ OUR PROMISE ═══════════ */
.promise-section {
    padding: 48px 24px 52px;
    background: linear-gradient(135deg, rgba(232,226,216,0.5) 0%, rgba(201,168,76,0.08) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.promise-inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.promise-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 1.5rem;
}

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

.promise-byline {
    text-align: left;
}

.promise-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.promise-title {
    font-family: var(--sans);
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin: 0;
}

.promise-heading {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.promise-text {
    font-family: var(--serif);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

@media (max-width: 580px) {
    .promise-section {
        padding: 36px 20px 40px;
    }

    .promise-inner {
        text-align: left;
    }

    .promise-heading {
        text-align: center;
        margin-bottom: 1rem;
    }

    .promise-header {
        justify-content: flex-start;
    }

    .promise-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 0.6rem;
    }
}

/* ═══════════ FEATURES ═══════════ */
.features-section {
    padding: var(--gap) 0;
    border-top: none;
    background: linear-gradient(rgba(26,26,26,0.82), rgba(26,26,26,0.82)), url('images/features-bg.jpg') center / cover no-repeat;
    background-attachment: scroll;
    
}

.features-section .section-title {
    color: var(--dark-text);
}

.features-section .feature-title {
    color: var(--dark-text);
}

.features-section .feature-desc {
    color: rgba(250,247,242,0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.feature-card {
    text-align: left;
    padding: 0 8px;
}

.feature-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.feature-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}


/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials-section {
    padding: var(--gap) 0;
    background-color: var(--bg-warm);
    border-top: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg);
    padding: 32px;
    border: 1px solid var(--border);
    text-align: center;
}

.testimonial-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    background: var(--border);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text-only .testimonial-photo {
    display: none;
}

.testimonial-text-only {
    margin-top: 16px;
}

.testimonial-quote {
    font-family: var(--serif);
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
}

.testimonial-attribution {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    font-style: normal;
}

.testimonial-title {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 2px;
    letter-spacing: 0.2px;
}

/* ═══════════ LIFESTYLE GRID ═══════════ */
.lifestyle-section {
    padding: var(--gap) 0;
    border-top: 1px solid var(--border);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.lifestyle-large {
    grid-column: 1 / -1;
}

.lifestyle-card {
    overflow: hidden;
    position: relative;
}

.lifestyle-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lifestyle-card:hover img {
    transform: scale(1.02);
}

.lifestyle-large img {
    height: 500px;
    object-position: center 65%;
}

.lifestyle-caption {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}


/* ═══════════ MID-PAGE CTA ═══════════ */
.mid-cta {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-warm);
}

.mid-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.mid-cta-text-block {
    text-align: center;
}

.mid-cta-text {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 8px;
}

.mid-cta-scarcity {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-dark);
}


/* ═══════════ SPECIFICATIONS ═══════════ */
.specs-section {
    padding: var(--gap) 0 32px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.spec-heading {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-row dt {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.spec-row dd {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* ═══════════ POST-SPECS CTA ═══════════ */
.post-specs-cta {
    padding: 36px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(232,226,216,0.5) 0%, rgba(201,168,76,0.06) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.post-specs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.post-specs-text {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.post-specs-btn {
    padding: 14px 32px;
    font-size: 13px;
}


/* ═══════════ HISTORY ═══════════ */
.history-section {
    padding: var(--gap) 0;
    border-top: 1px solid var(--border);
}

.history-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.history-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.history-image-mobile {
    display: none;
    text-align: center;
    margin: 32px 0;
}

.history-image-mobile img {
    max-width: 75%;
    margin: 0 auto;
}

.history-image-mobile .image-caption {
    font-size: 11px;
    margin-top: 8px;
}

.history-image {
    text-align: center;
}

.history-image > img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin: 0 auto;
}

.image-caption {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 12px;
}


/* ═══════════ ABOUT SECTION ═══════════ */
.about-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.about-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}


/* ═══════════ CHRYSOSTOM QUOTE ═══════════ */
.quote-section {
    padding: 100px 0;
    border-top: none;
    background: linear-gradient(rgba(26,26,26,0.82), rgba(26,26,26,0.82)), url('images/chime-living-room.png') center 35% / cover no-repeat;
}

.chrysostom-quote {
    text-align: center;
}

.chrysostom-text {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: #FAF7F2;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.chrysostom-attr {
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}


/* ═══════════ FAQ ═══════════ */
.faq-section {
    padding: var(--gap) 0;
    border-top: 1px solid var(--border);
}

.faq-grid {
    max-width: 760px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    padding: 20px 16px;
    margin: 0 -16px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.faq-question:hover {
    background-color: var(--bg-warm);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 600;
    color: var(--gold-dark);
    transition: all 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
    width: 24px;
    text-align: center;
}

details[open] .faq-question::after {
    content: '−';
    transform: scale(1.1);
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding: 0 0 20px;
}


/* ═══════════ RESERVE / CTA ═══════════ */
.reserve-section {
    padding: var(--gap) 0;
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

.reserve-content {
    text-align: center;
}

.reserve-title {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.reserve-subtitle {
    font-size: 1.05rem;
    color: #999;
    margin-bottom: 48px;
}

.reserve-box {
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
}

.reserve-details {
    margin-bottom: 32px;
}

.reserve-amount {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.reserve-shipping {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 24px;
}

.reserve-btn {
    background-color: var(--gold);
    color: var(--dark-bg);
    width: 100%;
    max-width: 360px;
}

.reserve-btn:hover {
    background-color: var(--gold-dark);
}

.reserve-note {
    font-size: 13px;
    color: #777;
    margin-top: 16px;
}

.reserve-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.trust-row {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-row .trust-check {
    color: var(--gold);
}

/* Waitlist fallback */
.waitlist-fallback {
    max-width: 480px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid #333;
}

.waitlist-text {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 20px;
}

.waitlist-form {
    display: flex;
    gap: 0;
}

.waitlist-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #444;
    background-color: #222;
    color: var(--dark-text);
    font-size: 15px;
    font-family: var(--sans);
    outline: none;
}

.waitlist-input::placeholder {
    color: #777;
}

.waitlist-input:focus {
    border-color: var(--gold);
}

.waitlist-form .btn {
    white-space: nowrap;
}


/* ═══════════ FOOTER ═══════════ */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
}

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

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

.footer-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-secondary);
}


/* ═══════════ PRODUCTION TIMELINE ═══════════ */
.timeline-section {
    padding: 36px 0 24px;
    background-color: var(--bg);
}

/* Mobile-first: Vertical timeline */
.timeline {
    max-width: 600px;
    margin: 48px auto 0;
    padding: 0;
    position: relative;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 30px;
    bottom: -40px;
    width: 2px;
    z-index: 1;
}

.timeline-step-complete:not(:last-child)::before {
    background: var(--gold);
}

.timeline-step-progress:not(:last-child)::before {
    background: linear-gradient(to bottom, var(--gold) 0%, var(--border) 70%);
}

.timeline-step-future:not(:last-child)::before {
    background: var(--border);
}

.timeline-node {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Complete step styling */
.timeline-step-complete .timeline-dot {
    background-color: var(--gold);
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

/* In progress step styling */
.timeline-step-progress .timeline-dot {
    background-color: transparent;
    border: 3px solid var(--gold);
    animation: pulse 2s infinite;
    position: relative;
}

.timeline-step-progress .timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* Future step styling */
.timeline-step-future .timeline-dot {
    background-color: var(--bg);
    border: 3px solid var(--border);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
    }
}

.timeline-content {
    flex: 1;
    padding-top: 2px;
}

.timeline-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.timeline-status {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.timeline-step-complete .timeline-status {
    color: var(--gold-dark);
}

.timeline-step-progress .timeline-status {
    color: var(--gold-dark);
}

.timeline-step-future .timeline-status {
    color: var(--text-secondary);
}

.timeline-desc {
    font-family: var(--sans);
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.timeline-step-complete .timeline-title {
    font-weight: 600;
}

.timeline-step-progress .timeline-title {
    font-weight: 600;
}

/* Desktop: Horizontal timeline */
@media (min-width: 1024px) {
    .timeline {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        max-width: 1200px;
        margin: 20px auto 0;
        position: relative;
        padding: 0 20px;
    }

    .timeline::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 60px;
        right: 60px;
        height: 2px;
        background: linear-gradient(
            to right,
            var(--gold) 0%,
            var(--gold) 42%,
            var(--border) 42%,
            var(--border) 100%
        );
        z-index: 1;
    }

    .timeline-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        position: relative;
        z-index: 2;
        min-width: 110px;
        margin-bottom: 0;
        gap: 0;
    }

    .timeline-step::before {
        display: none;
    }

    .timeline-node {
        margin-bottom: 24px;
    }

    .timeline-dot {
        width: 20px;
        height: 20px;
    }

    .timeline-content {
        max-width: 135px;
        padding-top: 8px;
    }

    .timeline-title {
        font-size: 1.05rem;
    }

    .timeline-desc {
        font-size: 0.75rem;
    }
}

/* ═══════════ STICKY MOBILE CTA ═══════════ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg);
    border-top: 1px solid var(--border);
    padding: 10px 0;
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {

    .daniel-attribution {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    .daniel-attribution p {
        text-align: center !important;
    }

    .story-layout-d {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-image-d {
        order: -1;
    }

    .story-image-quote blockquote {
        font-size: 0.85rem;
    }
}

.sticky-cta.visible {
    transform: translateY(0);
    animation: slideUpIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideUpIn {
    0% {
        transform: translateY(100%);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.sticky-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.sticky-name {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.sticky-price {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.btn-sticky {
    padding: 10px 24px;
    font-size: 0.9rem;
}


/* ═══════════ MOBILE ═══════════ */
@media (max-width: 968px) {
    :root {
        --gap: 60px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-img {
        height: 400px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-body {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust {
        align-items: center;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-card {
        text-align: center;
    }

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

    .lifestyle-card img,
    .lifestyle-large img {
        height: 280px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .history-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-image-mobile {
        display: block;
    }

    .history-image {
        display: none;
    }

    .history-image img {
        max-width: 75%;
        margin: 0 auto;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav {
        gap: 40px;
        flex-wrap: wrap;
    }

    .proof-items {
        flex-wrap: wrap;
        gap: 24px;
    }

    .proof-divider {
        display: none;
    }

    .proof-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .proof-item {
        padding: 8px 0;
    }

    /* Timeline styles moved to main timeline section */
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        gap: 0;
        z-index: 999;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 16px 24px;
        border-top: 1px solid var(--border);
    }

    .nav-cta {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Timeline now uses mobile-first vertical design */

    /* prayer-break: same treatment at all sizes */
    
    .cta-footer-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .mid-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .mid-cta-text-block {
        text-align: center;
    }

    .reserve-title {
        font-size: 2.2rem;
    }

    .waitlist-form {
        flex-direction: column;
        gap: 12px;
    }

    .mobile-only { display: inline !important; }
    .desktop-only { display: none !important; }

    .sticky-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 2px 12px;
    }

    .sticky-info {
        display: contents;
    }

    .sticky-name {
        grid-column: 1 / -1;
        text-align: center;
        font-size: 0.55rem;
        padding-bottom: 2px;
        border-bottom: 1px solid rgba(201,168,76,0.3);
        width: 60%;
        margin: 0 auto 5px;
    }

    .sticky-cta .container {
        padding: 0 12px;
    }

    .sticky-cta {
        padding: 6px 0 !important;
    }

    .sticky-price {
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
        justify-self: center;
    }

    .btn-sticky {
        font-size: 0.85rem;
        padding: 8px 22px;
        white-space: nowrap;
        justify-self: end;
    }

    .story-pullquote {
        margin: 24px 0;
        padding: 20px 0;
    }

    .story-pullquote::before,
    .story-pullquote::after {
        width: 30px;
    }

    .faq-question {
        padding: 16px 12px;
        margin: 0 -12px;
        font-size: 0.95rem;
    }

    .faq-question::after {
        font-size: 20px;
        margin-left: 12px;
    }

    .post-specs-content {
        gap: 12px;
    }

    .post-specs-text {
        font-size: 1rem;
    }
}

/* ═══════════ TABLET — iPad Portrait & Landscape ═══════════ */
/* iPad Portrait: ~581px–968px */
@media (min-width: 581px) and (max-width: 968px) {
    /* Hero: side-by-side on iPad portrait, tighter than desktop */
    .hero-layout {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-img {
        height: 420px;
    }

    .hero-content {
        text-align: left;
        max-width: none;
        margin: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-body {
        font-size: 0.9rem;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-tagline {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .price {
        font-size: 2rem;
    }

    /* Features: 2 columns instead of 1 — third card centers below */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    /* Lifestyle grid: 2 columns for smaller cards, full-width hero */
    .lifestyle-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lifestyle-large {
        grid-column: 1 / -1;
    }

    .lifestyle-card img {
        height: 240px;
    }

    .lifestyle-large img {
        height: 400px;
    }

    /* Specs: 2 columns, third wraps below centered */
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .specs-grid .spec-group:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    /* Social proof: horizontal row with dividers at tablet */
    .proof-items {
        display: flex;
        flex-wrap: nowrap;
        gap: 32px;
    }

    .proof-divider {
        display: block;
    }

    .proof-number {
        font-size: 2rem;
    }

    .proof-label {
        font-size: 12px;
    }

    /* Story section: keep stacked but constrain text width */
    .story-text-d {
        max-width: 640px;
        margin: 0 auto;
    }

    .story-text-d .lead-text {
        font-size: 1.35rem;
    }

    /* History: stacked is fine on portrait, tighten mobile images */
    .history-image-mobile img {
        max-width: 60%;
    }

    /* Timeline: keep vertical on portrait, it works well */

    /* Mid CTA: keep row layout on tablet */
    .mid-cta-content {
        flex-direction: row;
        text-align: left;
        gap: 32px;
    }

    .mid-cta-text-block {
        text-align: left;
    }

    /* Sticky CTA: use row layout like desktop, not mobile grid */
    .sticky-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .sticky-info {
        display: flex;
        align-items: baseline;
        gap: 12px;
    }

    .sticky-name {
        font-size: 0.65rem;
        border-bottom: none;
        width: auto;
        padding-bottom: 0;
        margin: 0;
    }

    .sticky-price {
        font-size: 0.85rem;
    }

    .btn-sticky {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    /* FAQ: a bit wider on tablet */
    .faq-grid {
        max-width: 680px;
    }
}

/* iPad Landscape: 969px–1200px (overrides for wider tablet) */
@media (min-width: 969px) and (max-width: 1200px) {
    /* Hero: side-by-side but needs tighter gap */
    .hero-layout {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-img {
        height: 500px;
    }

    .hero-body {
        font-size: 1rem;
    }

    /* Features: 3 columns with tighter gap */
    .features-grid {
        gap: 32px;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    /* Lifestyle: tighten images */
    .lifestyle-large img {
        height: 420px;
    }

    .lifestyle-card img {
        height: 220px;
    }

    /* Specs: 3 columns, tighter gap */
    .specs-grid {
        gap: 32px;
    }

    /* History: tighter gap */
    .history-layout {
        gap: 40px;
    }

    /* Story: tighter gap */
    .story-layout-d {
        gap: 40px;
    }
}

.mobile-break { display: none; }
.mobile-only { display: none; }
.desktop-only { display: inline; }

@media (max-width: 480px) {
    .mobile-break { display: block; }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-img {
        height: 300px;
    }

    .announcement-bar {
        font-size: 11px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .chrysostom-text {
        font-size: 1.5rem;
    }

    .reserve-amount {
        font-size: 2rem;
    }
}


/* ═══════════ MAILERLITE HIDDEN FORM ═══════════ */
/* Hidden MailerLite form used for programmatic submission only */
.ml-embedded[style*="display: none"] {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
}
