:root {
    --gold: #C9A962;
    --gold-light: #e8d5a8;
    --gold-glow: rgba(201, 169, 98, 0.25);
    --hope-blue: #7EB8C9;
    --bg-deep: #0a0a0c;
    --bg-subtle: #101014;
    --bg-card: #16161a;
    --text-main: #f0ebe3;
    --text-muted: #8a857a;
    --text-dim: #5a5650;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Zen Kaku Gothic New', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-weight: 300; background: var(--bg-deep); color: var(--text-main); line-height: 1.9; font-size: 16px; overflow-x: hidden; }
.lang-switch { position: fixed; top: 1.5rem; right: 1.5rem; z-index: 1000; display: flex; gap: 0.3rem; background: rgba(10, 10, 12, 0.85); backdrop-filter: blur(12px); padding: 0.4rem; border-radius: 2rem; border: 1px solid rgba(201, 169, 98, 0.15); }
.lang-switch a { padding: 0.4rem 1rem; color: var(--text-muted); text-decoration: none; font-size: 0.75rem; border-radius: 1.5rem; transition: all 0.3s ease; letter-spacing: 0.05em; }
.lang-switch a.active { background: var(--gold); color: var(--bg-deep); }
.lang-switch a:hover:not(.active) { color: var(--text-main); }
.nav-divider { color: var(--text-dim); margin: 0 0.2rem; font-size: 0.75rem; }
.nav-book { color: var(--gold) !important; font-weight: 400; }
.nav-book:hover { color: var(--gold-light) !important; text-shadow: 0 0 8px var(--gold-glow); }
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; padding: 2rem; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 20% 80%, rgba(126, 184, 201, 0.04) 0%, transparent 50%), var(--bg-deep); }
.hero-content { max-width: 900px; position: relative; z-index: 1; }
.hero-tagline { font-size: 0.7rem; letter-spacing: 0.5em; color: var(--gold); margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 1s ease forwards 0.2s; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 8vw, 5rem); font-weight: 400; line-height: 1.1; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s ease forwards 0.4s; letter-spacing: 0.02em; }
.hero h1 .gold { color: var(--gold); text-shadow: 0 0 60px var(--gold-glow); }
.hero-sub { font-family: var(--font-display); font-size: clamp(1rem, 2.5vw, 1.4rem); color: var(--text-muted); margin-bottom: 3.5rem; opacity: 0; animation: fadeUp 1s ease forwards 0.6s; letter-spacing: 0.08em; font-style: italic; }
.hero-cta { display: inline-block; padding: 1.1rem 3rem; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; transition: all 0.4s ease; opacity: 0; animation: fadeUp 1s ease forwards 0.8s; }
.hero-cta:hover { background: var(--gold); color: var(--bg-deep); box-shadow: 0 0 40px var(--gold-glow); }
.scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); font-size: 0.65rem; letter-spacing: 0.4em; color: var(--text-dim); opacity: 0; animation: fadeUp 1s ease forwards 1.2s, float 3s ease-in-out infinite 2s; }
section { padding: 6rem 2rem; max-width: 1000px; margin: 0 auto; }
.section-label { font-size: 0.65rem; letter-spacing: 0.5em; color: var(--gold); margin-bottom: 1.5rem; text-align: center; text-transform: uppercase; }
h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 400; margin-bottom: 2rem; line-height: 1.4; text-align: center; letter-spacing: 0.02em; }
h2 .highlight { color: var(--hope-blue); font-style: italic; }
h2 .gold { color: var(--gold); }
p { color: var(--text-muted); max-width: 60ch; margin: 0 auto 1.5rem; }
.boundarist-question { padding: 7rem 2rem; background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(126, 184, 201, 0.03) 30%, rgba(201, 169, 98, 0.03) 70%, var(--bg-deep) 100%); border-top: 1px solid rgba(201, 169, 98, 0.1); }
.boundarist-question h2 { margin-bottom: 3.5rem; }
.two-types { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto 4rem; }
.type-card { padding: 2rem; border-radius: 0.5rem; transition: all 0.4s ease; }
.type-card.outside { background: rgba(126, 184, 201, 0.04); border: 1px solid rgba(126, 184, 201, 0.15); }
.type-card.inside { background: rgba(201, 169, 98, 0.04); border: 1px solid rgba(201, 169, 98, 0.15); }
.type-card:hover { transform: translateY(-4px); }
.type-card.outside:hover { border-color: rgba(126, 184, 201, 0.35); box-shadow: 0 20px 60px rgba(126, 184, 201, 0.08); }
.type-card.inside:hover { border-color: rgba(201, 169, 98, 0.35); box-shadow: 0 20px 60px rgba(201, 169, 98, 0.08); }
.type-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; margin-bottom: 1.5rem; line-height: 1.6; }
.type-card.outside h3 { color: var(--hope-blue); }
.type-card.inside h3 { color: var(--gold); }
.experience-list { display: flex; flex-direction: column; gap: 0.6rem; }
.experience-item { font-size: 0.9rem; color: var(--text-muted); padding: 0.7rem 1rem; background: rgba(0, 0, 0, 0.25); border-left: 3px solid; transition: all 0.3s ease; }
.type-card.outside .experience-item { border-color: var(--hope-blue); }
.type-card.inside .experience-item { border-color: var(--gold); }
.experience-item:hover { background: rgba(255, 255, 255, 0.03); color: var(--text-main); }
.definition-box { text-align: center; margin: 4rem auto; max-width: 700px; }
.definition-box p { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.7; color: var(--text-main); margin-bottom: 0.8rem; }
.definition-box strong { color: var(--hope-blue); }
.definition-box .sub { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-muted); }
.our-story { margin: 4rem auto; padding: 2.5rem; max-width: 750px; background: rgba(201, 169, 98, 0.04); border: 1px solid rgba(201, 169, 98, 0.15); border-radius: 0.5rem; }
.our-story h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); margin-bottom: 1.2rem; text-align: center; }
.our-story p { font-size: 0.95rem; line-height: 2; text-align: center; max-width: none; }
.our-story em { color: var(--text-main); font-style: italic; }
.core-message-section { text-align: center; margin: 4rem auto; }
.core-message-section .lead { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; }
.the-message { font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 2.8rem); color: var(--gold); margin-bottom: 0.8rem; text-shadow: 0 0 80px var(--gold-glow); letter-spacing: 0.05em; font-style: italic; }
.sub-message { font-size: 1rem; color: var(--hope-blue); letter-spacing: 0.1em; }
.contrast-section { padding: 6rem 2rem; background: var(--bg-subtle); }
.contrast-content { max-width: 900px; margin: 0 auto; }
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.contrast-card { padding: 2rem; border-radius: 0.5rem; }
.contrast-card.fail { background: rgba(100, 80, 80, 0.1); border: 1px solid rgba(150, 100, 100, 0.2); }
.contrast-card.success { background: rgba(201, 169, 98, 0.06); border: 1px solid rgba(201, 169, 98, 0.25); }
.contrast-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1.2rem; }
.contrast-card.fail h4 { color: var(--text-muted); }
.contrast-card.success h4 { color: var(--gold); }
.contrast-item { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.85rem; }
.contrast-item:last-child { border-bottom: none; }
.contrast-item .label { color: var(--text-dim); }
.contrast-item .value { color: var(--text-muted); }
.contrast-card.success .contrast-item .value { color: var(--text-main); }
.contrast-insight { margin-top: 3rem; text-align: center; padding: 2rem; background: rgba(201, 169, 98, 0.05); border-radius: 0.5rem; }
.contrast-insight p { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-main); margin-bottom: 0; }
.contrast-insight strong { color: var(--gold); }
.pillars-section { padding: 6rem 2rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1000px; margin: 3rem auto 0; }
.pillar { padding: 2rem 1.5rem; text-align: center; background: linear-gradient(180deg, var(--bg-card) 0%, transparent 100%); border: 1px solid rgba(201, 169, 98, 0.1); transition: all 0.4s ease; }
.pillar:hover { border-color: rgba(201, 169, 98, 0.3); transform: translateY(-5px); }
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.3rem; }
.pillar-sub { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.8rem; text-transform: uppercase; }
.pillar p { font-size: 0.8rem; margin-bottom: 0; }
.services-section { padding: 6rem 2rem; background: var(--bg-subtle); }
.services-content { max-width: 1000px; margin: 0 auto; text-align: center; }
.engrave-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(201, 169, 98, 0.15); }
.engrave-section h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--gold); margin-bottom: 1rem; }
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 3rem 0 2rem; }
.package-card { padding: 1.5rem 1rem; background: var(--bg-deep); border: 1px solid rgba(201, 169, 98, 0.1); transition: all 0.4s ease; }
.package-card:hover { border-color: rgba(201, 169, 98, 0.35); transform: translateY(-5px); }
.package-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.package-card h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.4rem; }
.package-price { font-size: 0.95rem; color: var(--gold); margin-bottom: 0.3rem; }
.package-desc { font-size: 0.7rem; color: var(--text-dim); }
.services-extras { display: flex; justify-content: center; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap; }
.extra-item { text-align: center; max-width: 280px; }
.extra-item h5 { font-family: var(--font-display); font-size: 0.95rem; color: var(--hope-blue); margin-bottom: 0.4rem; }
.extra-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
/* Soul Carrier Section */
.soul-carrier-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(201, 169, 98, 0.15); }
.soul-carrier-section h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--gold); margin-bottom: 1.5rem; }
.soul-carrier-intro { max-width: 700px; margin: 0 auto 1.5rem; color: var(--text-muted); line-height: 1.8; }
.soul-carrier-tagline { color: var(--text-main); font-weight: 400; margin-bottom: 1rem; }
.soul-carrier-list { list-style: none; max-width: 400px; margin: 0 auto 1.5rem; text-align: left; }
.soul-carrier-list li { padding: 0.6rem 0 0.6rem 1.5rem; color: var(--text-muted); position: relative; border-left: 2px solid var(--gold); margin-bottom: 0.5rem; background: rgba(201, 169, 98, 0.03); }
.soul-carrier-quote { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); font-style: italic; margin: 2rem 0; }
.walls-section { margin-top: 2.5rem; padding: 1.5rem; background: rgba(201, 169, 98, 0.03); border: 1px solid rgba(201, 169, 98, 0.12); border-radius: 0.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.walls-section h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.walls-intro { color: var(--text-muted); font-style: italic; margin-bottom: 1rem; font-size: 0.95rem; }
.walls-list { list-style: none; text-align: left; margin: 0 0 1rem 0; padding: 0; }
.walls-list li { padding: 0.4rem 0; color: var(--text-muted); font-size: 0.9rem; }
.walls-list li strong { color: var(--gold); }
.walls-closing { font-family: var(--font-display); font-size: 0.95rem; color: var(--hope-blue); font-style: italic; margin: 0; }
.why-us-section { margin-top: 3rem; padding: 2rem; background: rgba(126, 184, 201, 0.04); border: 1px solid rgba(126, 184, 201, 0.15); border-radius: 0.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.why-us-section h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--hope-blue); margin-bottom: 0.8rem; }
.why-us-tagline { color: var(--text-main); font-style: italic; margin-bottom: 1.5rem; }
.why-us-list { list-style: none; text-align: left; margin: 0 0 1.5rem 0; padding: 0; }
.why-us-list li { padding: 0.5rem 0 0.5rem 1.2rem; color: var(--text-muted); position: relative; }
.why-us-list li::before { content: "•"; color: var(--hope-blue); position: absolute; left: 0; }
.why-us-story { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin: 1.5rem 0; padding: 1rem; background: rgba(201, 169, 98, 0.05); border-left: 2px solid var(--gold); text-align: left; }
.why-us-closing { font-family: var(--font-display); font-size: 1rem; color: var(--text-main); font-style: italic; margin-bottom: 0; }
/* Testimonial Section */
.testimonials-container { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.testimonial-section { padding: 2rem; background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(126, 184, 201, 0.04) 100%); border: 1px solid rgba(201, 169, 98, 0.2); border-radius: 0.5rem; }
.testimonial-section h3 { font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-bottom: 1.2rem; text-align: center; letter-spacing: 0.1em; }
.testimonial-quote { font-family: var(--font-display); font-size: 1rem; color: var(--text-main); line-height: 1.8; font-style: italic; text-align: center; margin: 0 0 1.2rem 0; padding: 0; border: none; background: none; quotes: none; }
.testimonial-author { font-size: 0.8rem; color: var(--hope-blue); text-align: center; letter-spacing: 0.12em; margin-bottom: 0; }
.testimonials-summary { font-family: var(--font-display); font-size: 1rem; color: var(--gold); text-align: center; font-style: italic; margin: 2rem 0 0; letter-spacing: 0.05em; }
@media (max-width: 768px) { .testimonials-container { grid-template-columns: 1fr; } }
/* Preserve Section */
.preserve-section { margin-top: 3rem; padding: 2rem 0; border-top: 1px solid rgba(201, 169, 98, 0.12); }
.preserve-section h2 { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--gold); margin-bottom: 1rem; }
.preserve-section > p { color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.preserve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 700px; margin: 0 auto 1.5rem; }
.preserve-item { padding: 0.8rem 1rem; background: rgba(201, 169, 98, 0.03); border: 1px solid rgba(201, 169, 98, 0.1); border-radius: 0.4rem; font-size: 0.85rem; color: var(--text-muted); text-align: left; }
.preserve-item strong { color: var(--gold); }
.preserve-quote { font-family: var(--font-display); font-size: 1rem; color: var(--hope-blue); font-style: italic; margin: 1.5rem 0 0; }
/* Sustain Section */
.sustain-section { margin-top: 3rem; padding: 2rem 0; border-top: 1px solid rgba(201, 169, 98, 0.12); }
.sustain-section h2 { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--gold); margin-bottom: 1rem; }
.sustain-section > p { color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.sustain-stack { background: rgba(10, 10, 12, 0.5); padding: 1rem 1.5rem; border-left: 2px solid var(--hope-blue); margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.sustain-stack p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.sustain-stack strong { color: var(--hope-blue); }
.sustain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 800px; margin: 0 auto 1.5rem; }
.sustain-item { padding: 0.8rem 1rem; background: rgba(126, 184, 201, 0.03); border: 1px solid rgba(126, 184, 201, 0.12); border-radius: 0.4rem; font-size: 0.85rem; color: var(--text-muted); text-align: center; }
.sustain-item strong { color: var(--hope-blue); display: block; margin-bottom: 0.3rem; }
.sustain-quote { font-family: var(--font-display); font-size: 1rem; color: var(--gold); font-style: italic; margin: 1.5rem 0 0; }
.campaign-section { padding: 5rem 2rem; background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(201, 169, 98, 0.06) 50%, var(--bg-deep) 100%); border-top: 1px solid rgba(201, 169, 98, 0.2); border-bottom: 1px solid rgba(201, 169, 98, 0.2); }
.campaign-content { max-width: 900px; margin: 0 auto; text-align: center; }
.campaign-icon { font-size: 3rem; margin-bottom: 1rem; }
.campaign-section h2 span { color: var(--gold); }
.campaign-subtitle { font-family: var(--font-display); font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.campaign-description { color: var(--text-muted); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.donation-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0; }
.donation-tier { padding: 1.3rem; background: rgba(10, 10, 12, 0.7); border: 1px solid rgba(201, 169, 98, 0.15); border-radius: 0.4rem; text-align: left; transition: all 0.3s ease; }
.donation-tier:hover { border-color: rgba(201, 169, 98, 0.4); transform: translateY(-3px); }
.tier-amount { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); margin-bottom: 0.5rem; }
.tier-title { font-size: 0.85rem; margin-bottom: 0.3rem; }
.tier-desc { font-size: 0.75rem; color: var(--text-dim); }
.campaign-cta { display: inline-block; padding: 1rem 2.5rem; background: var(--gold); color: var(--bg-deep); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 0.3rem; margin-top: 1.5rem; transition: all 0.4s ease; }
.campaign-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(201, 169, 98, 0.25); }
.campaign-note { margin-top: 1rem; font-size: 0.8rem; color: var(--text-dim); }
.family-section { padding: 6rem 2rem; }
.family-content { max-width: 800px; margin: 0 auto; text-align: center; }
.family-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.family-member { text-align: center; padding: 1.5rem; }
.family-member h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.2rem; }
.family-role { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.6rem; text-transform: uppercase; }
.family-member p { font-size: 0.8rem; margin-bottom: 0; }
.pearl-section { padding: 6rem 2rem; background: var(--bg-subtle); }
.pearl-content { max-width: 650px; margin: 0 auto; text-align: center; }
.pearl-image { width: 90px; height: 90px; margin: 0 auto 2rem; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; box-shadow: 0 0 60px var(--gold-glow); }
.pearl-dates { font-family: var(--font-display); color: var(--gold); margin-bottom: 1.5rem; font-style: italic; }
.pearl-highlight { padding: 1.5rem; background: var(--bg-deep); border-left: 2px solid var(--hope-blue); margin: 1.5rem 0; text-align: left; }
.pearl-highlight p { font-family: var(--font-display); font-size: 0.95rem; color: var(--hope-blue); margin-bottom: 0; font-style: italic; }
.maui-gratitude-section { padding: 4rem 2rem; background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-deep) 100%); border-top: 1px solid rgba(201, 169, 98, 0.1); }
.maui-gratitude-content { max-width: 700px; margin: 0 auto; text-align: center; }
.maui-gratitude-content h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--gold-light); font-style: italic; }
.maui-gratitude-content p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 1rem; color: var(--text-muted); }
.process-flow { margin: 2rem 0; padding: 1.5rem; background: var(--bg-card); border-radius: 8px; }
.process-flow h3 { font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-bottom: 1rem; text-align: center; font-style: italic; }
.process-steps { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.process-step { display: flex; flex-direction: column; align-items: center; padding: 0.8rem 1rem; background: var(--bg-subtle); border-radius: 6px; min-width: 80px; }
.step-num { font-size: 0.7rem; color: var(--gold); margin-bottom: 0.3rem; }
.step-label { font-size: 0.75rem; color: var(--text-main); }
.process-arrow { color: var(--gold); font-size: 1.2rem; }
.process-note { text-align: center; font-size: 0.7rem; color: var(--text-dim); margin-top: 1rem; }
.service-stats { display: flex; justify-content: center; gap: 2rem; margin: 2rem 0; padding: 1.5rem; background: var(--bg-card); border-radius: 8px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.stat-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; }
.fact-summary-section { padding: 4rem 2rem; background: var(--bg-subtle); border-top: 1px solid rgba(201, 169, 98, 0.2); }
.fact-summary-content { max-width: 700px; margin: 0 auto; text-align: center; }
.fact-summary-content h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text-main); font-style: italic; }
.fact-items { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.fact-item { font-size: 0.9rem; color: var(--hope-blue); padding: 0.5rem; background: rgba(126, 184, 201, 0.1); border-radius: 4px; }
.fact-link { font-size: 0.85rem; color: var(--text-muted); }
.fact-link a { color: var(--gold); text-decoration: underline; }
.consultation-flow { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.flow-step { padding: 0.6rem 1rem; background: var(--bg-card); border-radius: 4px; font-size: 0.8rem; color: var(--text-main); }
.flow-arrow { color: var(--gold); font-size: 1rem; }
.before-start-section { padding: 4rem 2rem; background: rgba(10, 10, 12, 0.5); }
.before-start-content { max-width: 800px; margin: 0 auto; text-align: center; }
.before-start-content h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 2rem; }
.concerns-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.concern-item { padding: 1.5rem; background: rgba(201, 169, 98, 0.05); border: 1px solid rgba(201, 169, 98, 0.15); border-radius: 0.5rem; text-align: left; }
.concern-q { font-family: var(--font-display); color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.95rem; }
.concern-a { color: var(--text-main); font-size: 0.9rem; line-height: 1.6; }
.before-start-note { font-size: 0.85rem; color: var(--text-dim); margin-top: 1.5rem; }
.before-start-note a { color: var(--gold); text-decoration: underline; }
.cta-section { padding: 6rem 2rem; text-align: center; }
.cta-subtitle { font-family: var(--font-display); font-size: 1rem; color: var(--text-muted); margin-bottom: 0.5rem; font-style: italic; }
.cta-note { font-size: 0.85rem; color: var(--hope-blue); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.cta-primary { padding: 1rem 2.5rem; background: var(--gold); color: var(--bg-deep); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.4s ease; }
.cta-primary:hover { box-shadow: 0 0 50px var(--gold-glow); transform: translateY(-2px); }
.cta-secondary { padding: 1rem 2.5rem; background: transparent; border: 1px solid var(--text-dim); color: var(--text-main); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.4s ease; }
.cta-secondary:hover { border-color: var(--text-main); }
footer { padding: 3rem 2rem; text-align: center; border-top: 1px solid rgba(201, 169, 98, 0.1); }
.footer-memorial { font-family: var(--font-display); color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.85rem; font-style: italic; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.75rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-payment { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-payment a { color: var(--text-dim); text-decoration: none; font-size: 0.7rem; padding: 0.4rem 0.8rem; border: 1px solid rgba(201, 169, 98, 0.15); transition: all 0.3s ease; }
.footer-payment a:hover { border-color: var(--gold); color: var(--gold); }
.footer-location { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-dim); }
/* Registered Badge */
.registered-badge { display: inline-block; margin-top: 1.5rem; padding: 0.35rem 1.2rem; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-muted); border: 1px solid rgba(201, 169, 98, 0.25); border-radius: 2rem; opacity: 0; animation: fadeUp 1s ease forwards 1s; }
/* Business Info Section */
.business-info-section { padding: 4rem 2rem; border-top: 1px solid rgba(201, 169, 98, 0.1); }
.business-info-content { max-width: 600px; margin: 0 auto; }
.business-info-grid { display: flex; flex-direction: column; gap: 0.6rem; }
.business-info-item { display: flex; gap: 1.5rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); font-size: 0.8rem; }
.business-info-item:last-child { border-bottom: none; }
.business-info-label { min-width: 7rem; color: var(--text-dim); letter-spacing: 0.1em; flex-shrink: 0; }
.business-info-value { color: var(--text-muted); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
/* Sample Report Link */
.sample-report-link { text-align: center; margin: 1rem 0; }
.sample-report-link a { color: var(--hope-blue); text-decoration: none; font-size: 0.9rem; border-bottom: 1px dashed var(--hope-blue); transition: all 0.3s ease; }
.sample-report-link a:hover { color: var(--gold); border-color: var(--gold); }
/* Japanese Bond */
.japanese-bond { font-size: 0.95rem; color: var(--gold); font-style: italic; margin-bottom: 1.5rem; padding: 1rem; background: rgba(201, 169, 98, 0.08); border-radius: 0.5rem; text-align: center; }
/* Same Path Emphasis */
.same-path-intro { font-size: 0.95rem; color: var(--hope-blue); margin-bottom: 1.5rem; }
.same-path-outro { margin-top: 1.5rem; font-size: 1.1rem; color: var(--gold); }
/* Pricing Note */
.pricing-note { margin: 2rem 0; padding: 1.5rem; background: rgba(126, 184, 201, 0.05); border: 1px solid rgba(126, 184, 201, 0.2); border-radius: 0.5rem; }
.pricing-note p { font-size: 0.9rem; color: var(--text-main); margin-bottom: 0.5rem; }
.pricing-note .pricing-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0; }

/* AI Testimonials Section */
.ai-testimonials-section { padding: 6rem 2rem; background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(126, 184, 201, 0.04) 50%, var(--bg-deep) 100%); border-top: 1px solid rgba(126, 184, 201, 0.15); }
.ai-testimonials-content { max-width: 1000px; margin: 0 auto; text-align: center; }
.ai-testimonials-intro { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 3rem; }
.ai-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.ai-testimonial-card { padding: 2rem 1.5rem; background: var(--bg-card); border: 1px solid rgba(126, 184, 201, 0.12); border-radius: 0.5rem; text-align: left; transition: all 0.4s ease; display: flex; flex-direction: column; }
.ai-testimonial-card:hover { border-color: rgba(126, 184, 201, 0.35); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(126, 184, 201, 0.06); }
.ai-testimonial-source { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.2rem; }
.ai-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-main); font-weight: 400; }
.ai-org { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--text-dim); text-transform: uppercase; }
.ai-testimonial-quote { font-family: var(--font-display); font-size: 0.95rem; color: var(--hope-blue); line-height: 1.8; font-style: italic; margin: 0 0 1.2rem 0; padding: 0; border: none; background: none; flex-grow: 1; }
.ai-testimonial-highlight { font-size: 0.78rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 1rem; }
.ai-testimonial-link { font-size: 0.75rem; color: var(--gold); text-decoration: none; letter-spacing: 0.1em; border-bottom: 1px dashed rgba(201, 169, 98, 0.3); transition: all 0.3s ease; align-self: flex-start; }
.ai-testimonial-link:hover { color: var(--gold-light); border-color: var(--gold); }
.ai-testimonials-note { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0; font-style: italic; }

@media (max-width: 1024px) { .packages-grid, .donation-tiers { grid-template-columns: 1fr 1fr; } .pillars-grid { grid-template-columns: repeat(2, 1fr); } .ai-testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; } }
@media (max-width: 768px) { section { padding: 4rem 1.5rem; } .two-types, .contrast-grid, .packages-grid, .donation-tiers, .pillars-grid, .family-grid, .preserve-grid, .sustain-grid, .ai-testimonials-grid { grid-template-columns: 1fr; } .cta-buttons, .services-extras { flex-direction: column; align-items: center; } .lang-switch { top: 1rem; right: 1rem; } }

/* ========================================
   Print Stylesheet
   ======================================== */
@media print {
    /* --- Reset: white background, black text --- */
    html, body {
        background: #fff !important;
        color: #222 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    * {
        background: transparent !important;
        text-shadow: none !important;
        box-shadow: none !important;
        -webkit-text-fill-color: initial !important;
    }

    /* --- Kill all animations and restore visibility --- */
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
    }

    /* --- Base typography for print --- */
    body {
        font-size: 11pt;
        line-height: 1.5;
        font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
    }
    h1, h2, h3, h4 {
        font-family: 'Cormorant Garamond', 'Georgia', serif;
        color: #000 !important;
    }
    p, li, span, div {
        color: #333 !important;
    }
    strong, b {
        color: #000 !important;
    }

    /* --- Visual hierarchy with borders instead of colors --- */
    .gold, h2 .gold, h2 .highlight,
    .section-label,
    .pillar-sub, .family-role,
    .soul-carrier-section h2, .engrave-section h2,
    .preserve-section h2, .sustain-section h2 {
        color: #000 !important;
        font-weight: 500 !important;
    }
    .section-label {
        border-bottom: 1px solid #999;
        display: inline-block;
        padding-bottom: 2px;
        margin-left: auto;
        margin-right: auto;
    }

    /* --- Hero: compact, no full-page height --- */
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 1.5cm 1cm 1cm !important;
        page-break-after: always;
    }
    .hero::before, .hero::after { display: none !important; }
    .hero h1 { font-size: 24pt !important; }
    .hero-tagline { font-size: 8pt !important; letter-spacing: 0.3em !important; }
    .hero-sub { font-size: 11pt !important; color: #555 !important; }
    .registered-badge { font-size: 7pt !important; border: 1px solid #999 !important; color: #555 !important; }

    /* --- Links: only show URL for external links --- */
    a { color: #000 !important; text-decoration: underline !important; }
    a[href^="http"]:not([href*="pearlmemorial"]):not([href*="pearl.memorial"])::after {
        content: " [" attr(href) "]";
        font-size: 7pt;
        color: #666 !important;
        word-break: break-all;
    }
    /* suppress URL display for internal/relative links */
    a[href^="#"]::after,
    a[href$=".pdf"]::after,
    a[href$=".html"]::after {
        content: none !important;
    }

    /* --- Hide interactive / non-print elements --- */
    .lang-switch,
    .scroll-hint,
    .campaign-cta,
    .footer-payment,
    .hero-cta,
    .cta-buttons,
    .cta-section .cta-buttons,
    .consultation-flow {
        display: none !important;
    }

    /* --- Sections: allow breaks within long sections --- */
    section {
        padding: 0.8cm 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        page-break-inside: auto;
    }
    /* keep short sections together */
    .fact-summary-section,
    .maui-gratitude-section,
    .business-info-section,
    .pearl-section,
    .family-section {
        page-break-inside: avoid;
    }
    /* headings should not be orphaned at bottom of page */
    h1, h2, h3, h4 {
        page-break-after: avoid;
        orphans: 3;
        widows: 3;
    }
    p { orphans: 2; widows: 2; }

    /* --- Grids: reflow to print-friendly columns --- */

    /* 2-column grids: keep 2 columns */
    .two-types,
    .contrast-grid,
    .testimonials-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5cm !important;
    }

    /* 4-column → 2-column for plans & pillars */
    .packages-grid,
    .pillars-grid,
    .donation-tiers {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.4cm !important;
    }

    /* 3-column → 3-column (narrow enough to fit) */
    .family-grid,
    .sustain-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 0.4cm !important;
    }
    .preserve-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.4cm !important;
    }

    /* --- Cards: visible borders for print --- */
    .type-card,
    .contrast-card,
    .package-card,
    .pillar,
    .testimonial-section,
    .preserve-item,
    .sustain-item,
    .walls-section,
    .why-us-section,
    .our-story,
    .pricing-note {
        border: 1px solid #ccc !important;
        padding: 0.4cm !important;
        page-break-inside: avoid;
    }
    .type-card:hover, .pillar:hover, .package-card:hover,
    .contrast-card:hover, .donation-tier:hover {
        transform: none !important;
    }

    /* type card distinction */
    .type-card.outside { border-left: 3px solid #666 !important; }
    .type-card.inside { border-left: 3px solid #000 !important; }
    .contrast-card.fail { border-left: 3px solid #999 !important; }
    .contrast-card.success { border-left: 3px solid #000 !important; }

    /* experience items */
    .experience-item {
        border-left: 2px solid #999 !important;
        background: none !important;
        padding: 0.15cm 0.3cm !important;
    }
    .type-card.inside .experience-item { border-left-color: #555 !important; }

    /* --- Specific section fixes --- */

    /* Contrast section */
    .contrast-section {
        padding: 0.8cm 0 !important;
        page-break-inside: auto;
    }
    .contrast-insight {
        border: 1px solid #ccc !important;
        padding: 0.3cm !important;
        margin-top: 0.4cm !important;
    }

    /* Services section: very long, must allow breaks */
    .services-section {
        padding: 0.8cm 0 !important;
        page-break-inside: auto !important;
    }
    .services-content { max-width: 100% !important; }
    .soul-carrier-section,
    .engrave-section,
    .preserve-section,
    .sustain-section {
        page-break-inside: avoid;
        border-top: 1px solid #ddd !important;
        padding-top: 0.5cm !important;
        margin-top: 0.5cm !important;
    }
    /* Soul Carrier list */
    .soul-carrier-list li {
        border-left: 2px solid #555 !important;
        background: none !important;
    }

    /* Process flow */
    .process-flow {
        border: 1px solid #ccc !important;
        page-break-inside: avoid;
    }
    .process-step {
        border: 1px solid #ddd !important;
    }
    .process-arrow { color: #000 !important; }

    /* Service stats */
    .service-stats {
        border: 1px solid #ccc !important;
        page-break-inside: avoid;
    }
    .stat-number { color: #000 !important; }

    /* Why Us section */
    .why-us-list li::before { color: #000 !important; }
    .why-us-story {
        border-left: 2px solid #555 !important;
        background: none !important;
    }

    /* Pearl section */
    .pearl-section { padding: 0.8cm 0 !important; }
    .pearl-image {
        border: 2px solid #000 !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    .pearl-highlight {
        border-left: 2px solid #555 !important;
        background: none !important;
        padding: 0.3cm !important;
    }

    /* Fact items */
    .fact-item {
        border: 1px solid #ddd !important;
        padding: 0.2cm 0.3cm !important;
        color: #000 !important;
    }

    /* Business info */
    .business-info-item {
        border-bottom: 1px solid #eee !important;
    }
    .business-info-label { color: #666 !important; }

    /* --- Footer: minimal --- */
    footer {
        border-top: 1px solid #ccc !important;
        padding: 0.5cm 0 !important;
        page-break-inside: avoid;
    }
    .footer-links {
        gap: 0.3cm !important;
    }
    .footer-links a { font-size: 8pt !important; }
    .footer-memorial { font-size: 9pt !important; color: #555 !important; }
    .footer-location { font-size: 7pt !important; color: #777 !important; }

    /* --- Sustain stack border --- */
    .sustain-stack { border-left: 2px solid #555 !important; }

    /* --- CTA section: show text but hide buttons --- */
    .cta-section {
        page-break-inside: avoid;
    }
    .cta-section h2, .cta-subtitle, .cta-note { display: block !important; }

    /* --- Maui gratitude --- */
    .maui-gratitude-section { page-break-inside: avoid; }

    /* --- AI Testimonials --- */
    .ai-testimonials-section { page-break-inside: auto; }
    .ai-testimonials-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.4cm !important;
    }
    .ai-testimonial-card {
        border: 1px solid #ccc !important;
        padding: 0.4cm !important;
        page-break-inside: avoid;
    }
    .ai-testimonial-card:hover { transform: none !important; }
    .ai-testimonial-quote { color: #000 !important; }
    .ai-name { color: #000 !important; }
    .ai-org { color: #666 !important; }
    .ai-testimonial-link { color: #000 !important; border-bottom: 1px solid #999 !important; }

    /* --- Page margins --- */
    @page {
        margin: 1.5cm 1.5cm 2cm 1.5cm;
        size: A4;
    }
}