/* ============================================================
   Bible Source Hub — "The Illuminated Page"
   Editorial design inspired by illuminated manuscripts.
   Warm parchment + deep navy + burnished gold + burgundy.
   ============================================================ */

:root {
    /* Gold — burnished, with multiple tones for depth */
    --gold:             #B8860B;
    --gold-light:       #D4A84B;
    --gold-bright:      #E8C878;
    --gold-pale:        #F5EDD6;
    --gold-dark:        #8B6914;
    --gold-deep:        #6B4F0A;
    --gold-faint:       rgba(184,134,11,0.08);

    /* Burgundy — ecclesiastical accent */
    --burgundy:         #6B2D3E;
    --burgundy-dark:    #4A1E2B;
    --burgundy-faint:   rgba(107,45,62,0.06);

    /* Dark surfaces */
    --navy:             #0B1120;
    --navy-2:           #111A2E;
    --navy-3:           #182240;
    --navy-deep:        #050914;

    /* Light surfaces — parchment tones */
    --cream:            #FAF6EF;
    --cream-2:          #F0EBE0;
    --cream-3:          #E6E0D4;
    --parchment:        #F7F1E3;
    --white:            #FFFFFF;

    /* Text */
    --ink:              #1A1612;
    --ink-body:         #3D352B;
    --ink-muted:        #7A7067;
    --ink-faint:        #A89E94;
    --light:            #F0EDE7;
    --light-muted:      #9A9590;

    /* Borders */
    --border-light:     rgba(44,36,24,0.09);
    --border-gold:      rgba(184,134,11,0.25);
    --border-gold-strong: rgba(184,134,11,0.45);
    --border-dark:      rgba(255,255,255,0.08);

    /* Shadows */
    --shadow-sm:        0 2px 8px rgba(26,22,18,0.04);
    --shadow-md:        0 4px 24px rgba(26,22,18,0.07);
    --shadow-lg:        0 12px 48px rgba(26,22,18,0.10);
    --shadow-verse:     0 12px 48px rgba(26,22,18,0.10), 0 0 0 1px rgba(184,134,11,0.15), 0 0 80px rgba(184,134,11,0.08);
    --shadow-logo:      0 8px 32px rgba(0,0,0,0.4), 0 0 60px rgba(184,134,11,0.2);

    /* Gold gradient — for luxe text */
    --gold-gradient:    linear-gradient(135deg, #D4A84B 0%, #E8C878 30%, #B8860B 60%, #8B6914 100%);
    --gold-gradient-text: linear-gradient(135deg, #E8C878 0%, #D4A84B 40%, #B8860B 100%);

    /* Typography */
    --font-display:     'Cormorant Garamond', Georgia, serif;
    --font-roman:       'Cinzel', 'Trajan Pro', Georgia, serif;
    --font-gothic:      'UnifrakturMaguntia', 'Cormorant Garamond', serif;
    --font-body:        'Source Serif 4', Georgia, serif;
    --font-caps:        'Cormorant SC', 'Cormorant Garamond', serif;

    /* Spacing */
    --section-y:        clamp(72px, 10vw, 140px);
    --section-x:        clamp(20px, 5vw, 80px);
    --max-w:            1120px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 17px;
    background: var(--cream);
    color: var(--ink-body);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Subtle parchment texture */
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0 0.2 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; transition: color 0.25s, opacity 0.25s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   ANIMATIONS — subtle
   ============================================================ */
@keyframes pixFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pixFadeDown {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pixFadeLeft {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pixFadeRight {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes candlelight {
    0%, 100% { opacity: 0.22; transform: scale(1); }
    50% { opacity: 0.28; transform: scale(1.02); }
}
@keyframes soft-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(184,134,11,0.35)); }
    50% { filter: drop-shadow(0 0 32px rgba(184,134,11,0.5)); }
}
.wow { visibility: hidden; }
.animated { visibility: visible; }

/* ============================================================
   ORNAMENTAL DIVIDERS & FLEURONS
   ============================================================ */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 240px;
    padding: 16px 0;
}
.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.ornament__icon {
    color: var(--gold);
    opacity: 0.7;
    flex-shrink: 0;
}
.ornament__icon svg { display: block; }

/* Larger fleuron divider for prominent section breaks */
.ornament--large { max-width: 320px; padding: 24px 0; }
.ornament--large .ornament__icon { opacity: 0.85; }

/* Inline fleuron separator */
.fleuron {
    color: var(--gold);
    opacity: 0.55;
    margin: 0 8px;
    font-size: 0.8em;
    display: inline-block;
    transform: translateY(-2px);
}

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 12px;
    color: var(--gold);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: 18px;
}
.section-label--light { color: var(--gold-light); }

.section-heading {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(30px, 3.4vw, 48px);
    text-align: center;
    color: var(--ink);
    line-height: 1.18;
    max-width: 760px;
    margin: 0 auto 24px;
    letter-spacing: -0.01em;
}
.section-heading em {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 500;
}
.section-heading--light {
    color: var(--light);
}
.section-heading--light em { color: var(--gold-light); }

/* Gold-leaf shimmer heading variant */
.heading--gold {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================================
   HEADER — glass on dark
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 17, 32, 0.88);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--border-dark);
    transition: background 0.3s;
}
/* Gold hairline at the very bottom */
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.site-header__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--section-x);
    height: 68px;
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light);
}
.site-header__logo:hover { color: var(--light); opacity: 0.85; }
.site-header__logo-icon {
    border-radius: 8px;
    width: 36px;
    height: 36px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(184,134,11,0.15);
}
.site-header__logo-text {
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-header__nav {
    display: flex;
    gap: 32px;
}
.site-header__nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--light-muted);
    transition: color 0.25s;
    position: relative;
}
.site-header__nav a:hover { color: var(--gold-light); }

/* Install button */
.btn-install {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold-gradient);
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, filter 0.3s;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(184,134,11,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-install:hover {
    color: var(--navy);
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 6px 20px rgba(184,134,11,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-install--large {
    padding: 16px 36px;
    font-size: 14px;
    border-radius: 10px;
    letter-spacing: 0.14em;
}
.btn-install__arrow { display: flex; align-items: center; }

/* Mobile */
.site-header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}
.site-header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.site-header__mobile-menu {
    display: none;
    background: var(--navy);
    border-top: 1px solid var(--border-dark);
}
.site-header__mobile-menu.active { display: block; }
.site-header__mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px var(--section-x) 24px;
    gap: 4px;
}
.site-header__mobile-nav a {
    color: var(--light-muted);
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-dark);
}
.site-header__mobile-nav a:hover { color: var(--gold-light); }
.site-header__mobile-nav .btn-install {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
}

/* ============================================================
   HERO — centered, dark, luminous
   ============================================================ */
.hero {
    position: relative;
    background: var(--navy-deep);
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,134,11,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(107,45,62,0.12) 0%, transparent 70%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
    text-align: center;
    padding: 140px var(--section-x) 110px;
    overflow: hidden;
}
/* Star dust layer */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(232,200,120,0.6), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(232,200,120,0.4), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(232,200,120,0.5), transparent),
        radial-gradient(1px 1px at 30% 80%, rgba(232,200,120,0.4), transparent),
        radial-gradient(1px 1px at 90% 50%, rgba(232,200,120,0.5), transparent),
        radial-gradient(1px 1px at 10% 60%, rgba(232,200,120,0.4), transparent),
        radial-gradient(1px 1px at 75% 90%, rgba(232,200,120,0.3), transparent);
    background-size: 100% 100%;
    opacity: 0.6;
    pointer-events: none;
}
/* Gold hairline at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
    opacity: 0.35;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

/* The logo takes center stage */
.hero__logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    border-radius: 18px;
    box-shadow: var(--shadow-logo);
    position: relative;
    animation: soft-glow 4s ease-in-out infinite;
}
.hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.hero__eyebrow {
    font-family: var(--font-roman);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0.9;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.1;
    color: var(--light);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero__title .accent {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero__title .white {
    color: var(--light);
    font-style: italic;
    font-weight: 400;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--light-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Small ornament above verse card */
.hero__ornament {
    color: var(--gold);
    opacity: 0.5;
    margin: 16px auto 20px;
    display: flex;
    justify-content: center;
}

/* ============================================================
   VERSE CARD — illuminated manuscript style
   ============================================================ */
.verse-card {
    position: relative;
    background: var(--white);
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.45 0 0 0 0 0.25 0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    border-radius: 8px;
    box-shadow: var(--shadow-verse);
    max-width: 540px;
    margin: 0 auto 44px;
    overflow: hidden;
    text-align: left;
}
/* Ornamental gold frame inside */
.verse-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}
/* Corner ornaments — SVG flourishes */
.verse-card__corner {
    position: absolute;
    width: 28px;
    height: 28px;
    color: var(--gold);
    opacity: 0.55;
    pointer-events: none;
    z-index: 2;
}
.verse-card__corner--tl { top: 12px; left: 12px; }
.verse-card__corner--tr { top: 12px; right: 12px; transform: scaleX(-1); }
.verse-card__corner--bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
.verse-card__corner--br { bottom: 12px; right: 12px; transform: scale(-1, -1); }

.verse-card__search {
    padding: 18px 28px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--parchment);
    position: relative;
    z-index: 1;
}
.verse-card__search-icon {
    color: var(--ink-muted);
    flex-shrink: 0;
    opacity: 0.6;
}
.verse-card__typing {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    font-style: italic;
}
.verse-card__typing::after {
    content: '|';
    color: var(--gold);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    font-style: normal;
}
@keyframes blink {
    50% { opacity: 0; }
}

.verse-card__result {
    padding: 32px 32px 28px;
    position: relative;
    z-index: 1;
}
.verse-card__ref {
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 14px;
}
.verse-card__text {
    font-family: var(--font-display);
    font-size: clamp(19px, 2.1vw, 23px);
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    line-height: 1.55;
    margin-bottom: 20px;
    position: relative;
}
/* Illuminated drop cap — first letter of the quote */
.verse-card__text::first-letter {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2em;
    color: var(--burgundy);
    font-style: normal;
    margin-right: 1px;
}
.verse-card__action {
    font-family: var(--font-roman);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s, color 0.25s;
}
.verse-card__action:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* Small variant */
.verse-card--small {
    max-width: 100%;
    margin: 24px 0 0;
}
.verse-card--small .verse-card__search { padding: 14px 22px; }
.verse-card--small .verse-card__result { padding: 24px; }
.verse-card--small .verse-card__text { font-size: 17px; }
.verse-card--small .verse-card__corner { width: 22px; height: 22px; }

/* ============================================================
   CATEGORY STRIP
   ============================================================ */
.categories {
    background: var(--cream-2);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}
/* Gold hairlines above and below */
.categories::before, .categories::after {
    content: '';
    position: absolute;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.25;
}
.categories::before { top: 0; }
.categories::after { bottom: 0; }
.categories__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px var(--section-x);
}
.categories__item {
    flex: 1;
    text-align: center;
}
.categories__item span {
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 12px;
    color: var(--ink-muted);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.25s;
}
.categories__item:hover span { color: var(--gold); }
.categories__divider {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
    flex-shrink: 0;
}

/* ============================================================
   TIMELINE — "How it works"
   ============================================================ */
.steps-section {
    padding: var(--section-y) var(--section-x);
    position: relative;
}
.steps-section__header {
    text-align: center;
    margin-bottom: 64px;
}

.timeline {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 56px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
    opacity: 0.25;
}

.timeline-item {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    padding: 36px 0;
    position: relative;
}
.timeline-item__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--navy);
    font-family: var(--font-roman);
    font-weight: 600;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(184,134,11,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
}
/* Concentric gold ring around number */
.timeline-item__number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}
.timeline-item__content {
    flex: 1;
    padding-top: 10px;
}
.timeline-item__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.timeline-item__desc {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.75;
}
.timeline-item__keyword {
    display: inline-block;
    background: var(--gold-faint);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 2px 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-style: italic;
    color: var(--gold-dark);
    font-size: 15px;
}

/* ============================================================
   FEATURES — illuminated icon cards
   ============================================================ */
.features-section {
    padding: var(--section-y) var(--section-x);
    background: var(--cream-2);
    position: relative;
}
.features-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.features-section__header {
    text-align: center;
    margin-bottom: 60px;
}

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

.feature-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 44px 30px 36px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}
/* Gold top accent bar */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}
/* Tiny corner ornament */
.feature-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-top: 1px solid var(--border-gold);
    border-right: 1px solid var(--border-gold);
    border-top-right-radius: 6px;
    opacity: 0.6;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 30%, rgba(232,200,120,0.3), var(--gold-faint));
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--gold-dark);
}
.feature-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 23px;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.005em;
}
.feature-card__desc {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* ============================================================
   SCRIPTURE QUOTE SECTION — signature full-width quote block
   ============================================================ */
.scripture-quote {
    padding: clamp(80px, 10vw, 140px) var(--section-x);
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.scripture-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}
.scripture-quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}
.scripture-quote__inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}
.scripture-quote__mark {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: -40px;
}
.scripture-quote__text {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 34px);
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 24px;
}
.scripture-quote__ref {
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.scripture-quote__ref::before,
.scripture-quote__ref::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta {
    background: var(--navy-deep);
    background-image:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184,134,11,0.10) 0%, transparent 70%);
    text-align: center;
    padding: clamp(70px, 9vw, 110px) var(--section-x);
    position: relative;
}
.bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
    opacity: 0.3;
}
.bottom-cta__label {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(26px, 3.2vw, 42px);
    color: var(--light);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.bottom-cta__sub {
    font-family: var(--font-roman);
    font-size: 12px;
    color: var(--light-muted);
    margin-top: 18px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-deep);
    border-top: 1px solid var(--border-dark);
    padding: 44px var(--section-x);
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.2;
}
.site-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light);
}
.site-footer__logo:hover { color: var(--light); opacity: 0.85; }
.site-footer__logo-icon {
    border-radius: 6px;
    width: 32px;
    height: 32px;
    object-fit: cover;
    box-shadow: 0 0 16px rgba(184,134,11,0.15);
}
.site-footer__logo-text {
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__nav {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}
.site-footer__nav a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--light-muted);
    transition: color 0.25s;
}
.site-footer__nav a:hover { color: var(--gold-light); }

.site-footer__scroll-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: border-color 0.25s, color 0.25s, background 0.25s;
    background: var(--gold-faint);
}
.site-footer__scroll-top:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    background: rgba(184,134,11,0.15);
}

.site-footer-bar {
    background: var(--navy-deep);
    border-top: 1px solid var(--border-dark);
    padding: 18px var(--section-x);
    text-align: center;
}
.site-footer-bar__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.site-footer-bar p {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--light-muted);
    opacity: 0.55;
    letter-spacing: 0.04em;
}

/* ============================================================
   SUBPAGE LAYOUT
   ============================================================ */
.page-content {
    padding: 130px var(--section-x) var(--section-y);
    max-width: 800px;
    margin: 0 auto;
}
.page-content h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 34px;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.page-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    color: var(--ink);
    margin-top: 36px;
    margin-bottom: 12px;
}
.page-content p {
    margin-bottom: 16px;
    color: var(--ink-body);
}
.page-content ul {
    margin: 12px 0 20px 24px;
    color: var(--ink-body);
}
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--gold); }
.page-content a:hover { color: var(--gold-dark); text-decoration: underline; }

/* Contact form */
.contact-form { max-width: 560px; margin: 40px auto 0; }
.contact-form__group { margin-bottom: 22px; }
.contact-form__group label {
    display: block;
    font-family: var(--font-roman);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}
.contact-form__group input,
.contact-form__group textarea,
.contact-form__group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form__group input:focus,
.contact-form__group textarea:focus,
.contact-form__group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-faint);
}
.contact-form__group textarea { min-height: 140px; resize: vertical; }

.contact-form__submit {
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold-gradient);
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(184,134,11,0.25);
}
.contact-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184,134,11,0.35);
}

.radio-list { list-style: none; margin: 20px 0; padding: 0; }
.radio-list li { margin-bottom: 12px; }
.radio-list label {
    font-size: 15px;
    color: var(--ink-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.radio-list input[type="radio"] { accent-color: var(--gold); }

/* ============================================================
   CONCEPT PAGE
   ============================================================ */
.concept-hero {
    background: var(--navy-deep);
    background-image:
        radial-gradient(ellipse 70% 55% at 50% 25%, rgba(184,134,11,0.08) 0%, transparent 65%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    text-align: center;
    padding: 140px var(--section-x) 90px;
    position: relative;
    overflow: hidden;
}
.concept-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 15% 25%, rgba(232,200,120,0.5), transparent),
        radial-gradient(1px 1px at 85% 35%, rgba(232,200,120,0.4), transparent),
        radial-gradient(1px 1px at 50% 75%, rgba(232,200,120,0.4), transparent);
    opacity: 0.7;
    pointer-events: none;
}
.concept-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
    opacity: 0.3;
}
.concept-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.concept-hero__ornament {
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}
.concept-hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(34px, 4.4vw, 56px);
    color: var(--light);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}
.concept-hero__title .accent {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.concept-hero__subtitle {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--light-muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.concept-section {
    padding: clamp(56px, 7vw, 96px) var(--section-x);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}
.concept-section:last-of-type { border-bottom: none; }

.concept-section__header {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.concept-section__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(26px, 3vw, 40px);
    color: var(--ink);
    line-height: 1.22;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.concept-section__title em {
    color: var(--burgundy);
    font-style: italic;
    font-weight: 500;
}
.concept-section__text {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.8;
    margin-bottom: 44px;
}
.concept-section__text em { color: var(--burgundy); font-style: italic; font-weight: 500; }
.concept-section__text strong { color: var(--ink); font-weight: 600; }

/* Concept mini-steps */
.concept-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}
.concept-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.concept-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0.6;
}
.concept-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.concept-step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--navy);
    font-family: var(--font-roman);
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 2px 12px rgba(184,134,11,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
}
.concept-step__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 21px;
    color: var(--ink);
    margin-bottom: 10px;
}
.concept-step__desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* Use-case grid */
.concept-usecases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    max-width: 960px;
    margin: 0 auto;
}
.concept-usecase {
    padding: 32px 22px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--white);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}
.concept-usecase:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}
.concept-usecase__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 30%, rgba(232,200,120,0.3), var(--gold-faint));
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold-dark);
}
.concept-usecase__label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 8px;
}
.concept-usecase__desc {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.65;
}

.concept-cta {
    background: var(--navy-deep);
    background-image: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184,134,11,0.10) 0%, transparent 70%);
    text-align: center;
    padding: clamp(64px, 8vw, 100px) var(--section-x);
    position: relative;
}
.concept-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
    opacity: 0.3;
}
.concept-cta__label {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(24px, 3vw, 38px);
    color: var(--light);
    margin-bottom: 26px;
}

/* ============================================================
   SUB-PAGE HERO — compact dark header
   ============================================================ */
.subpage-hero {
    background: var(--navy-deep);
    background-image:
        radial-gradient(ellipse 70% 55% at 50% 30%, rgba(184,134,11,0.08) 0%, transparent 65%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    text-align: center;
    padding: 140px var(--section-x) 80px;
    position: relative;
    overflow: hidden;
}
.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(232,200,120,0.4), transparent),
        radial-gradient(1px 1px at 80% 60%, rgba(232,200,120,0.35), transparent),
        radial-gradient(1px 1px at 50% 80%, rgba(232,200,120,0.3), transparent);
    opacity: 0.7;
    pointer-events: none;
}
.subpage-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
    opacity: 0.3;
}
.subpage-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.subpage-hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 4.2vw, 52px);
    color: var(--light);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.subpage-hero__subtitle {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--light-muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   SUPPORT (contact) CARDS
   ============================================================ */
.support-section {
    padding: clamp(60px, 8vw, 100px) var(--section-x);
    max-width: 960px;
    margin: 0 auto;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.support-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 44px 36px 36px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
}
.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}
.support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}
.support-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 30%, rgba(232,200,120,0.3), var(--gold-faint));
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--gold-dark);
}
.support-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.005em;
}
.support-card__desc {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.support-card__link {
    font-family: var(--font-roman);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s, color 0.25s;
}
.support-card__link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* ============================================================
   UNINSTALL PAGE
   ============================================================ */
.uninstall-section {
    padding: clamp(60px, 8vw, 100px) var(--section-x);
    max-width: 800px;
    margin: 0 auto;
}
.uninstall-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}
.uninstall-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.uninstall-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold-gradient);
}
.uninstall-step:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}
.uninstall-step__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--navy);
    font-family: var(--font-roman);
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(184,134,11,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
}
.uninstall-step__content {
    flex: 1;
    padding-top: 4px;
}
.uninstall-step__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 8px;
}
.uninstall-step__desc {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.7;
}
.uninstall-step__desc strong {
    color: var(--ink);
    font-weight: 600;
}

.uninstall-feedback {
    padding: 40px;
    background: var(--parchment);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    text-align: center;
}
.uninstall-feedback__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 10px;
}
.uninstall-feedback__text {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============================================================
   APP PAGE
   ============================================================ */
.hero--app {
    text-align: center;
    padding: 140px var(--section-x) 80px;
}
.hero--app .hero__inner {
    max-width: 900px;
}
.hero--app .hero__visual {
    margin-top: 48px;
}

.app-shot {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(184,134,11,0.08);
    border: 1px solid rgba(184,134,11,0.15);
}
.app-shot img {
    display: block;
    width: 100%;
    height: auto;
}
.app-shot--hero {
    max-width: 760px;
    margin: 0 auto;
}

.app-features {
    padding: var(--section-y) var(--section-x) 0;
}
.app-features__header {
    text-align: center;
    margin-bottom: 64px;
}
.app-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto 90px;
}
.app-feature--reverse { direction: rtl; }
.app-feature--reverse > * { direction: ltr; }

.app-feature__visual { position: relative; }
.app-feature__text { padding: 16px 0; }

.app-feature__tag {
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: 14px;
    display: block;
}
.app-feature__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 2.7vw, 34px);
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.app-feature__desc {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.75;
    margin-bottom: 22px;
}
.app-feature__list {
    list-style: none;
    padding: 0;
}
.app-feature__list li {
    font-size: 15px;
    color: var(--ink-body);
    padding: 7px 0 7px 28px;
    position: relative;
    line-height: 1.6;
}
.app-feature__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0.75;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .site-header__nav { display: none; }
    .site-header .btn-install:not(.btn-install--mobile) { display: none; }
    .site-header__toggle { display: flex; }

    .features-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .concept-steps { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

    .app-feature { grid-template-columns: 1fr; gap: 36px; }
    .app-feature--reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .hero { padding: 120px 20px 80px; }
    .hero__logo { width: 96px; height: 96px; }
    .hero__title { font-size: 34px; }
    .hero__subtitle { font-size: 16px; }

    .categories__inner { gap: 0; padding: 18px 12px; }
    .categories__item span { font-size: 11px; letter-spacing: 0.15em; }

    .timeline::before { left: 23px; }
    .timeline-item { gap: 22px; }
    .timeline-item__number { width: 48px; height: 48px; font-size: 18px; }
    .timeline-item__title { font-size: 22px; }

    .concept-hero { padding: 120px 20px 72px; }
    .concept-usecases { grid-template-columns: 1fr 1fr; }

    .scripture-quote__mark { font-size: 80px; margin-bottom: -24px; }
}

@media (max-width: 480px) {
    .categories__divider { display: none; }
    .categories__inner { flex-wrap: wrap; gap: 10px; }
    .categories__item { flex: none; }

    .verse-card { margin-left: -4px; margin-right: -4px; border-radius: 10px; }
    .concept-usecases { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE-CENTERED — used by 404, thanks-page, removed
   ============================================================ */
.page-centered {
    min-height: calc(100vh - 220px);
    max-width: 640px;
    margin: 0 auto;
    padding: 160px var(--section-x) 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-centered__icon {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(64px, 9vw, 110px);
    line-height: 1;
    margin-bottom: 28px;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-bottom: 0.15em;
}
.page-centered__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(30px, 3.6vw, 46px);
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.page-centered__desc {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--ink-muted);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 36px;
}

/* Return-to-top floating button (template hook) */
.return-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--navy);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 800;
    box-shadow: 0 4px 16px rgba(184,134,11,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: transform 0.2s, filter 0.2s;
}
.return-to-top.show { display: flex; }
.return-to-top:hover { transform: translateY(-2px); filter: brightness(1.08); color: var(--navy); }

/* Modal — minimal styling on top of Bootstrap 4 defaults to match brand */
.modal-content {
    background: var(--cream);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}
.modal-header { border-bottom: 1px solid var(--border-light); padding: 14px 18px; }
.modal-header .close { color: var(--ink-muted); opacity: 0.8; font-size: 28px; }
.modal-body {
    font-family: var(--font-body);
    color: var(--ink-body);
    padding: 24px 28px;
    line-height: 1.7;
}
.modal .pix-btn.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-roman);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold-gradient);
    border: none;
    border-radius: 8px;
    padding: 12px 26px;
    box-shadow: 0 2px 8px rgba(184,134,11,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: transform 0.2s, filter 0.2s;
}
.modal .pix-btn.btn:hover { color: var(--navy); transform: translateY(-1px); filter: brightness(1.08); }

/* Scrolled state for fixed header */
.site-header--scrolled {
    background: rgba(11, 17, 32, 0.96);
}
