:root {
    --crimson: #8B1A1A;
    --crimson-deep: #6A1212;
    --red: #A52422;
    --red-bright: #C43030;
    --gold: #D4A843;
    --gold-light: #E8C876;
    --gold-pale: #F2DFA0;
    --cream: #FDF6EA;
    --cream-warm: #FFF8EE;
    --parchment: #FFFDF7;
    --text-dark: #1E0F08;
    --text-body: #3D2518;
    --text-mid: #6B4A38;
    --text-muted: #9B7E6A;
    --border-warm: #E8D5C0;
    --border-light: #F0E4D4;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--parchment);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ═══ CLOUD SVG PATTERN ═══ */
.clouds-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    opacity: 0.06;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 45c0-8 6-14 14-14 2-7 9-12 17-12s15 5 17 12c8 0 14 6 14 14' fill='none' stroke='%23D4A843' stroke-width='1.2'/%3E%3C/svg%3E");
    background-size: 180px 90px;
}

/* ═══ NAVIGATION ═══ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 1.5rem;
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.site-nav.scrolled {
    background: rgba(255, 253, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border-light);
}

.nav-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--crimson);
    transition: color 0.4s;
}

.nav-brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.nav-brand span {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-links a {
    padding: 0.4rem 1rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: all 0.25s;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--crimson);
    background: rgba(139, 26, 26, 0.06);
}

.nav-links a.active {
    background: var(--crimson);
    color: #fff;
}

/* Nav over dark hero — light text */
.site-nav:not(.scrolled) .nav-brand {
    color: #fff;
}

.site-nav:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.site-nav:not(.scrolled) .nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.site-nav:not(.scrolled) .nav-links a.active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* ═══ FADE-UP ANIMATION ═══ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══ HERO (HOME) ═══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(170deg, var(--crimson-deep) 0%, var(--crimson) 35%, var(--red) 70%, #7A1A18 100%);
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--parchment);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-clouds {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 45c0-8 6-14 14-14 2-7 9-12 17-12s15 5 17 12c8 0 14 6 14 14' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 200px 100px;
}

/* Gold wave decoration */
.hero-wave {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    height: 180px;
    pointer-events: none;
}

.hero-wave::before,
.hero-wave::after {
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    height: 100%;
    border-radius: 50%;
}

.hero-wave::before {
    bottom: -70%;
    background: rgba(212, 168, 67, 0.08);
}

.hero-wave::after {
    bottom: -75%;
    background: rgba(212, 168, 67, 0.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 7rem 1.5rem 8rem;
    max-width: 680px;
}

.hero-logo {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-6px); }
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 440px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: var(--gold);
    color: var(--crimson-deep);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
    letter-spacing: 0.01em;
}

.hero-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

/* ═══ FEATURES ═══ */
.features-section {
    padding: 5rem 1.5rem 6rem;
    position: relative;
}

.features-inner {
    max-width: 880px;
    margin: 0 auto;
}

.features-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.features-heading {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
    opacity: 0;
    transition: opacity 0.35s;
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(139, 26, 26, 0.06);
    transform: translateY(-3px);
}

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

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    background: var(--cream);
}

.feature-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ═══ DIVIDER ═══ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-warm), transparent);
}

.section-divider span {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ═══ SUPPORT & PRIVACY PAGE HEADERS ═══ */
.page-header {
    background: linear-gradient(170deg, var(--crimson-deep) 0%, var(--crimson) 50%, var(--red) 100%);
    padding: 7rem 1.5rem 5.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header .clouds-bg { opacity: 0.04; }

.page-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--parchment);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.25rem;
}

.page-header h1 {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-header p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.page-body {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

/* Section headings */
.s-heading {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--gold);
    letter-spacing: -0.01em;
}

/* FAQ cards */
.faq-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.35rem 1.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    cursor: default;
}

.faq-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(139, 26, 26, 0.04);
}

.faq-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.faq-card p {
    font-size: 0.8625rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.support-section {
    margin-bottom: 2.5rem;
}

/* Contact / CTA card */
.contact-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
    border: 1.5px solid var(--gold);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.08);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    position: relative;
    line-height: 1.7;
}

.contact-card a {
    color: var(--crimson);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(139, 26, 26, 0.2);
    transition: border-color 0.2s;
}

.contact-card a:hover {
    border-color: var(--crimson);
}

/* ═══ PRIVACY POLICY ═══ */
.policy-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--border-warm);
}

.policy-block {
    margin-bottom: 2rem;
}

.policy-block h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.policy-block p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.policy-block ul {
    list-style: none;
    padding: 0;
}

.policy-block li {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.75;
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
}

.policy-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.policy-block li strong {
    color: var(--text-body);
}

/* ═══ FOOTER ═══ */
.site-footer {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--border-light);
}

.site-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.site-footer a {
    color: var(--text-mid);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--crimson);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}

/* ═══ STAGGER ANIMATION ═══ */
.stagger > * {
    animation: fadeUp 0.5s ease both;
}
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.15s; }
.stagger > *:nth-child(4) { animation-delay: 0.2s; }
.stagger > *:nth-child(5) { animation-delay: 0.25s; }
.stagger > *:nth-child(6) { animation-delay: 0.3s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 480px) {
    .nav-links a { padding: 0.35rem 0.7rem; font-size: 0.75rem; }
    .hero-content { padding: 6rem 1.25rem 7rem; }
    .page-header { padding: 6rem 1.25rem 5rem; }
}
