/* ================================================
   THE JERUSALEM STONE - Holy Land Pilgrimage
   Inspired by the warm golden limestone of the Holy City
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Source+Serif+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

:root {
    /* The Jerusalem Stone Palette */
    --jerusalem-gold: #C9A227;
    --jerusalem-gold-light: #D4B84A;
    --jerusalem-stone: #E8DCC4;
    --jerusalem-stone-dark: #D4C7AB;
    --desert-sand: #F5EFE0;
    --desert-sand-warm: #EDE5D3;
    --olive-deep: #4A5D23;
    --olive-soft: #6B7F3A;
    --terracotta: #B86B4C;
    --terracotta-soft: #C8846A;
    --night-blue: #1E3A5F;
    --night-blue-light: #2A4A73;
    --parchment: #FBF7F0;
    --text-dark: #2D2418;
    --text-body: #4A3F32;
    --text-soft: #6B5D4D;

    /* Typography - Fonts */
    --font-display: 'Cinzel', Georgia, serif;
    --font-body: 'Source Serif Pro', Georgia, serif;

    /* Typography - Scale (matching Guadalupe for 40+ readability) */
    --text-xs: 1rem;
    --text-sm: 1.125rem;
    --text-base: 1.25rem;
    --text-lg: 1.375rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.75rem;
    --text-3xl: 2.25rem;
    --text-4xl: 3rem;

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.85;
    color: var(--text-body);
    background-color: var(--parchment);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: 0.03em;
}

p {
    margin-bottom: 1.5rem;
}

strong {
    font-weight: 600;
    color: var(--text-dark);
}

em {
    font-style: italic;
    color: var(--terracotta);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   DECORATIVE ELEMENTS - Ancient Motifs
   ================================================ */

/* Decorative border inspired by ancient scrolls */
.scroll-border {
    position: relative;
}

.scroll-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 500px);
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--jerusalem-stone) 15%,
        var(--jerusalem-gold) 50%,
        var(--jerusalem-stone) 85%,
        transparent 100%
    );
    border-radius: 2px;
}

/* ================================================
   HERO SECTION - Gateway to the Holy Land
   ================================================ */

.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    position: relative;
    background:
        linear-gradient(180deg,
            rgba(30, 58, 95, 0.7) 0%,
            rgba(45, 36, 24, 0.6) 50%,
            rgba(201, 162, 39, 0.4) 100%
        ),
        url('hero_bg.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Warm vignette overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(45, 36, 24, 0.4) 100%);
    pointer-events: none;
}

/* Golden light gradient at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--parchment));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: riseReveal 1.2s ease-out;
}

@keyframes riseReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, var(--text-4xl));
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 3px 20px rgba(30, 58, 95, 0.5);
    letter-spacing: 0.04em;
}

.hero p {
    font-family: var(--font-body);
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
    color: var(--jerusalem-stone);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ================================================
   INTRO SECTION - The Invitation
   ================================================ */

.intro {
    padding: var(--section-padding) 0;
    background: var(--parchment);
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    margin-bottom: 32px;
    position: relative;
    color: var(--text-dark);
}

.intro-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--jerusalem-gold), var(--terracotta));
    margin-top: 20px;
    border-radius: 2px;
}

.intro-text p {
    font-size: var(--text-lg);
    color: var(--text-body);
}

.intro-text br {
    display: block;
    content: '';
    margin-top: 0.5rem;
}

/* Video wrapper with stone frame effect */
.intro-image {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding: 16px;
    background: linear-gradient(145deg, var(--jerusalem-stone), var(--desert-sand));
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(45, 36, 24, 0.2),
        0 10px 25px rgba(201, 162, 39, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    max-width: 400px;
    margin: 0 auto;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 2px solid var(--jerusalem-gold);
    border-radius: 14px;
    pointer-events: none;
    opacity: 0.5;
}

.video-container {
    position: relative;
    padding-top: 177.78%; /* 9:16 */
    border-radius: 12px;
    overflow: hidden;
    background: var(--night-blue);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================================================
   HIGHLIGHTS SECTION - The Journey
   ================================================ */

.highlights {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--desert-sand) 0%, var(--jerusalem-stone) 100%);
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--jerusalem-gold), transparent);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-soft);
    font-style: italic;
    margin-bottom: 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 950px;
    margin: 0 auto;
}

.highlight-card {
    background: var(--parchment);
    padding: 44px 36px;
    border-radius: 16px;
    text-align: center;
    box-shadow:
        0 8px 30px rgba(45, 36, 24, 0.08),
        0 2px 8px rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--jerusalem-gold), var(--terracotta), var(--jerusalem-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(45, 36, 24, 0.12),
        0 8px 20px rgba(201, 162, 39, 0.08);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--jerusalem-stone), var(--desert-sand));
    border-radius: 50%;
    color: var(--jerusalem-gold);
    font-size: var(--text-xl);
    border: 2px solid rgba(201, 162, 39, 0.3);
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, var(--jerusalem-gold), var(--jerusalem-gold-light));
    color: #fff;
    border-color: var(--jerusalem-gold);
    transform: scale(1.05);
}

.highlight-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.highlight-card p {
    font-size: var(--text-base);
    color: var(--text-soft);
    margin-bottom: 0;
    line-height: 1.75;
}

/* ================================================
   INVITATION SECTION - Bo's Message
   ================================================ */

.invitation {
    padding: var(--section-padding) 0;
    background: var(--parchment);
    position: relative;
}

.invitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--jerusalem-gold), transparent);
}

.invitation-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.bo-image {
    position: relative;
}

.bo-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 200px 200px 20px 20px;
    box-shadow:
        0 25px 60px rgba(45, 36, 24, 0.2),
        0 10px 25px rgba(201, 162, 39, 0.1);
    border: 5px solid var(--parchment);
    outline: 2px solid var(--jerusalem-gold);
    outline-offset: 4px;
}

.bo-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(45, 36, 24, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.invitation-text h2 {
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
    margin-bottom: 24px;
    color: var(--text-dark);
}

.invitation-text blockquote {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--terracotta);
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 4px solid var(--jerusalem-gold);
    line-height: 1.5;
}

.invitation-text p {
    font-size: var(--text-lg);
    color: var(--text-body);
}

.invitation-text p:last-child strong {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    display: block;
    margin-top: 32px;
    letter-spacing: 0.02em;
}

/* ================================================
   TESTIMONIALS SECTION - Pilgrim Voices
   ================================================ */

.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--desert-sand-warm) 0%, var(--jerusalem-stone-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--jerusalem-gold), transparent);
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.testimonials-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--jerusalem-gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    padding: 10px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.testimonials-header h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    margin-bottom: 16px;
    color: var(--text-dark);
}

.testimonials-header p {
    font-size: var(--text-lg);
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.testimonial-card {
    background: var(--parchment);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(45, 36, 24, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    position: relative;
    width: 100%;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--jerusalem-gold), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(45, 36, 24, 0.15);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.testimonial-video-container {
    position: relative;
    padding-top: 133.33%; /* 3:4 aspect ratio */
    background: linear-gradient(135deg, var(--jerusalem-stone), var(--desert-sand));
}

.testimonial-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* ================================================
   FAQ SECTION - The Pilgrim's Guide
   ================================================ */

.faq {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--parchment) 0%, var(--desert-sand) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--jerusalem-gold), transparent);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.faq-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--jerusalem-gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    padding: 10px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.faq-header h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    margin-bottom: 16px;
    color: var(--text-dark);
}

.faq-header p {
    font-size: var(--text-lg);
    color: var(--text-soft);
    font-style: italic;
    margin-bottom: 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--parchment);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: 0 4px 20px rgba(45, 36, 24, 0.06);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 8px 30px rgba(45, 36, 24, 0.1);
}

.faq-item[open] {
    border-color: var(--jerusalem-gold);
    box-shadow: 0 12px 40px rgba(45, 36, 24, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    transition: background 0.3s ease;
}

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

.faq-question::marker {
    display: none;
    content: '';
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent);
}

.faq-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--jerusalem-stone), var(--desert-sand));
    border-radius: 12px;
    color: var(--jerusalem-gold);
    font-size: var(--text-base);
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.4s ease;
}

.faq-item[open] .faq-icon {
    background: linear-gradient(135deg, var(--jerusalem-gold), var(--jerusalem-gold-light));
    color: #fff;
    border-color: var(--jerusalem-gold);
}

.faq-question-text {
    flex: 1;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item[open] .faq-question-text {
    color: var(--terracotta);
}

.faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--desert-sand);
    color: var(--jerusalem-gold);
    font-size: var(--text-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.faq-item[open] .faq-toggle {
    background: var(--olive-deep);
    color: #fff;
    border-color: var(--olive-deep);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px 28px 92px;
    color: var(--text-body);
    animation: faqReveal 0.4s ease;
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0 0 1rem 0;
    padding-left: 24px;
}

.faq-answer ul:last-child {
    margin-bottom: 0;
}

.faq-answer li {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: 8px;
}

.faq-answer li::marker {
    color: var(--jerusalem-gold);
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* FAQ Contact */
.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.faq-contact p {
    font-size: var(--text-base);
    color: var(--text-soft);
    margin-bottom: 12px;
}

.faq-contact-email {
    margin-bottom: 0 !important;
}

.faq-contact-email a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--jerusalem-gold);
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.04));
    border-radius: 30px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.faq-contact-email a:hover {
    background: var(--jerusalem-gold);
    color: #fff;
    border-color: var(--jerusalem-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

/* ================================================
   CTA SECTION - The Call
   ================================================ */

.cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--night-blue) 0%, var(--night-blue-light) 50%, #2D4A6B 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle star pattern overlay */
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta h2 {
    font-size: clamp(var(--text-2xl), 4.5vw, var(--text-3xl));
    color: #fff;
    margin-bottom: 16px;
    font-weight: 500;
}

.cta p {
    font-size: var(--text-lg);
    color: var(--jerusalem-stone);
    margin-bottom: 40px;
    font-style: italic;
}

.form-placeholder {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    backdrop-filter: blur(8px);
}

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

footer {
    padding: 40px 24px;
    background: var(--text-dark);
    text-align: center;
}

footer p {
    font-size: var(--text-xs);
    color: var(--jerusalem-stone);
    margin: 0;
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================================
   RESPONSIVE - Testimonials
   ================================================ */

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

    .testimonial-card:nth-child(3) {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 70px 0;
    }

    .testimonials-header h2 {
        font-size: var(--text-2xl);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .testimonial-card,
    .testimonial-card:nth-child(3) {
        grid-column: auto;
        width: 100%;
        max-width: none;
        margin: 0;
    }
}

/* ================================================
   RESPONSIVE - General
   ================================================ */

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .invitation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .bo-image {
        max-width: 220px;
        margin: 0 auto;
    }

    .invitation-text blockquote {
        border-left: none;
        border-top: 4px solid var(--jerusalem-gold);
        padding: 24px 0 0 0;
        text-align: center;
    }

    .intro-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 20px;
        gap: 12px;
    }

    .faq-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .faq-question-text {
        font-size: var(--text-lg);
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }

    .faq-answer {
        padding: 0 20px 24px 20px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 50px;
        --text-xs: 0.9375rem;
        --text-sm: 1rem;
        --text-base: 1.125rem;
        --text-lg: 1.1875rem;
        --text-xl: 1.25rem;
        --text-2xl: 1.5rem;
        --text-3xl: 1.875rem;
        --text-4xl: 2.25rem;
    }

    .hero {
        min-height: 50vh;
        padding: 40px 20px;
    }

    .highlight-card {
        padding: 32px 24px;
    }

    .highlight-icon {
        width: 64px;
        height: 64px;
    }

    .form-placeholder {
        padding: 24px;
    }

    .video-wrapper {
        padding: 12px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-question {
        padding: 16px;
        gap: 10px;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
        font-size: var(--text-sm);
    }

    .faq-question-text {
        font-size: var(--text-base);
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: var(--text-xs);
    }

    .faq-answer {
        padding: 0 16px 20px 16px;
    }

    .faq-contact-email a {
        font-size: var(--text-base);
        padding: 10px 20px;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.text-gold { color: var(--jerusalem-gold); }
.text-dark { color: var(--text-dark); }
.bg-parchment { background-color: var(--parchment); }
.bg-stone { background-color: var(--jerusalem-stone); }
