/* ============================================================
   בונים משכן קבע - בית חב"ד רובע ט"ז אשדוד
   Landing Page Styles
   ============================================================ */

/* ---- 1. KARMA DL FONT (loaded from /fonts) ---- */
@font-face {
    font-family: 'Karma DL';
    src: url('fonts/karma-ultralight-aaa.otf') format('opentype');
    font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Karma DL';
    src: url('fonts/karma-light-aaa.otf') format('opentype');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Karma DL';
    src: url('fonts/karma-regular-aaa.otf') format('opentype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Karma DL';
    src: url('fonts/karma-medium-aaa.otf') format('opentype');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Karma DL';
    src: url('fonts/karma-demibold-aaa.otf') format('opentype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Karma DL';
    src: url('fonts/karma-bold-aaa.otf') format('opentype');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* ---- 2. DESIGN TOKENS (Campaign Colors) ---- */
:root {
    /* Greens - from the campaign swatch */
    --teal-deep:    #133939;   /* C=86 M=64 Y=63 K=70 - darkest */
    --teal-mid:     #1d4e4e;   /* C=88 M=50 Y=55 K=30 - mid */
    --teal-bright:  #2b6b6b;   /* lighter accent */
    --teal-glow:    #3a8a8a;   /* highlights */

    /* Gold tones */
    --gold:         #e0bf7c;   /* R=224 G=191 B=124 */
    --gold-bright:  #f0d394;
    --gold-deep:    #b8924f;
    --gold-shadow:  #8a6a35;

    /* Neutrals */
    --cream:        #fbf6ec;   /* C=3 M=5 Y=10 K=0 */
    --ink:          #0c1f1f;
    --white:        #ffffff;

    /* Type */
    --font-display: 'Karma DL', 'Frank Ruhl Libre', 'Heebo', system-ui, serif;
    --font-body:    'Karma DL', 'Heebo', system-ui, sans-serif;

    /* Spacing */
    --container:    1240px;
    --radius:       18px;
    --radius-lg:    28px;

    /* Shadows */
    --shadow-soft:  0 10px 40px rgba(12, 31, 31, 0.15);
    --shadow-deep:  0 20px 60px rgba(12, 31, 31, 0.35);
    --shadow-gold:  0 10px 40px rgba(224, 191, 124, 0.35);
}

/* ---- 3. RESET / BASE ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px);
}

.section { padding-block: clamp(60px, 9vw, 110px); }

.section-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold-deep);
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    padding-inline-start: 60px;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    width: 44px; height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    color: var(--teal-deep);
    margin-bottom: 18px;
}

.section-sub {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(12, 31, 31, 0.7);
    max-width: 640px;
    margin-bottom: 50px;
}

/* ---- 4. HERO (stacked: logo → rendering → text) ---- */
.hero {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg,
        var(--teal-deep) 0%,
        var(--teal-mid) 35%,
        var(--teal-deep) 100%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(58, 138, 138, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 100%, rgba(224, 191, 124, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-badge {
    position: absolute;
    top: 22px;
    right: 28px;
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 17px;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Top: Logo (sits close to the rendering below) */
.hero-header {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 40px) clamp(8px, 1.5vw, 20px);
    animation: fadeUp 0.9s ease-out;
    margin-bottom: -8%;
}
.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}
.hero-logo-img {
    max-width: min(780px, 88vw);
    height: auto;
    filter: drop-shadow(0 14px 50px rgba(0, 0, 0, 0.55));
}
.hero-subtitle {
    position: absolute;
    top: 8%;
    inset-inline: 0;
    text-align: center;
    z-index: 3;
    font-family: var(--font-display);
    font-size: clamp(18px, 4vw, 46px);
    line-height: 1.25;
    color: var(--gold-bright);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7),
                 0 2px 8px rgba(0, 0, 0, 0.5);
    padding-inline: 16px;
}

/* Building index - horizontal pill bar below subtitle */
.hero-rooms-bar {
    position: absolute;
    top: 23%;
    inset-inline: 0;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 14px;
    padding-inline: clamp(16px, 4vw, 40px);
    direction: rtl;
}

.hero-room-chip {
    background: rgba(19, 57, 57, 0.85);
    color: var(--gold-bright);
    border: 1.5px solid rgba(224, 191, 124, 0.45);
    border-radius: 999px;
    padding: 9px 18px;
    font-family: var(--font-display);
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
    white-space: nowrap;
}

.hero-room-chip:hover {
    background: var(--gold);
    color: var(--teal-deep);
    border-color: var(--gold-bright);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-rooms-bar {
        top: 26%;
        gap: 6px 8px;
    }
    .hero-room-chip {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Middle: Main rendering full-width (image shown in full) */
.hero-stage {
    position: relative;
    z-index: 1;
    width: 100%;
    line-height: 0;
    animation: fadeUp 1.1s ease-out 0.15s backwards;
}
.hero-stage-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}
/* Top fade - image emerges from the dark teal background */
.hero-stage::before {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 40%;
    background: linear-gradient(180deg,
        var(--teal-deep) 0%,
        rgba(19, 57, 57, 0.75) 30%,
        rgba(19, 57, 57, 0.25) 70%,
        transparent 100%);
    pointer-events: none;
    z-index: 2;
}
/* Bottom fade - merges into the footer text */
.hero-stage::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 25%;
    background: linear-gradient(180deg, transparent 0%, var(--teal-deep) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Bottom: Tagline + CTAs */
.hero-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 40px) clamp(20px, 4vw, 40px) clamp(50px, 7vw, 90px);
    animation: fadeUp 1.1s ease-out 0.3s backwards;
}

/* Editable hotspot labels - overlay on building image */
.hotspot {
    position: absolute;
    text-decoration: none;
    z-index: 5;
    display: flex;
    align-items: center;
    cursor: pointer;
    direction: rtl;
}
.hotspot-label {
    background: var(--teal-deep);
    color: var(--gold-bright);
    padding: 10px 20px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 700;
    white-space: nowrap;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55),
                0 0 0 1px rgba(224, 191, 124, 0.2);
    transition: background 0.25s, color 0.25s, transform 0.25s;
    position: relative;
    z-index: 2;
    letter-spacing: 0.02em;
}
.hotspot-line {
    width: 70px; height: 2px;
    background: linear-gradient(90deg, var(--gold-bright) 0%, var(--gold) 100%);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(224, 191, 124, 0.5);
}
.hotspot-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--gold-bright);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 5px rgba(224, 191, 124, 0.3),
                0 0 16px rgba(224, 191, 124, 0.6),
                0 2px 10px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    animation: hotspotPulse 2.5s ease-in-out infinite;
}
@keyframes hotspotPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(224, 191, 124, 0.25), 0 2px 8px rgba(0, 0, 0, 0.4); }
    50%      { box-shadow: 0 0 0 10px rgba(224, 191, 124, 0.0), 0 2px 8px rgba(0, 0, 0, 0.4); }
}

.hotspot:hover .hotspot-label {
    background: var(--gold);
    color: var(--teal-deep);
    transform: translateY(-2px);
}
.hotspot:hover .hotspot-dot {
    transform: scale(1.3);
    animation: none;
}

/* Variants - line direction */
.hotspot-right { flex-direction: row; }
.hotspot-left  { flex-direction: row-reverse; }
.hotspot-left .hotspot-line {
    background: linear-gradient(270deg, var(--gold) 0%, transparent 100%);
}
.hotspot-top {
    flex-direction: column;
    align-items: center;
}
.hotspot-top .hotspot-line {
    width: 2px; height: 100px;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
    box-shadow: 0 0 8px rgba(224, 191, 124, 0.5);
}

.hero-bottom {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-top: clamp(28px, 4vw, 48px);
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease-out 0.3s backwards;
}
.hero-note {
    margin-top: 18px;
    font-size: 11px;
    color: rgba(224, 191, 124, 0.45);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    /* Hide hotspots on mobile - too crowded over a small rendering */
    .hero-stage .hotspot { display: none; }
    .hero-logo-img { max-width: 280px; }
    .hero-stage::after { height: 18%; }
}

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

.hero-tagline {
    font-size: clamp(17px, 2vw, 23px);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 44px;
    font-weight: 400;
}
.hero-tagline strong {
    color: var(--gold-bright);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-deep) 100%);
    color: var(--teal-deep);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 50px rgba(224, 191, 124, 0.55);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold-bright);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    inset-inline: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    letter-spacing: 0.2em;
}
.scroll-arrow {
    width: 1px; height: 30px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    margin: 8px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50%      { opacity: 1; transform: scaleY(1); }
}

/* ---- 5. STORY ---- */
.section-story {
    background: var(--teal-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-block: clamp(70px, 9vw, 130px);
}
.story-bg-collage {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.story-bg-collage img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(19, 57, 57, 0.3) 0%, rgba(19, 57, 57, 0.7) 50%, rgba(19, 57, 57, 0.95) 100%),
        linear-gradient(180deg, var(--teal-deep) 0%, transparent 20%, transparent 80%, var(--teal-deep) 100%);
    z-index: 1;
}

.story-card {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(160deg,
        rgba(19, 57, 57, 0.85) 0%,
        rgba(12, 31, 31, 0.95) 100%);
    border: 1px solid rgba(224, 191, 124, 0.25);
    border-radius: var(--radius-lg);
    padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 56px);
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.story-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--gold-bright);
    text-align: center;
    margin-bottom: 36px;
}
.story-title-em {
    color: var(--gold);
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.story-title-em::after {
    content: '';
    position: absolute;
    bottom: -8px;
    inset-inline-start: 50%;
    transform: translateX(50%);
    width: 60px; height: 3px;
    background: var(--gold);
    border-radius: 999px;
}

.story-text p {
    font-size: clamp(16px, 1.5vw, 18.5px);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 14px;
}
.story-text strong {
    color: var(--gold-bright);
    font-weight: 600;
}

.story-cta-block {
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px dashed rgba(224, 191, 124, 0.35);
    text-align: center;
}
.story-highlight {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--gold-bright);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.story-question {
    font-size: clamp(16px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ---- 6. PROGRESS METER (visual + animated) ---- */
.section-progress {
    background: linear-gradient(180deg, var(--cream) 0%, #f0e9d8 100%);
    padding-block: clamp(60px, 8vw, 100px);
}
.progress-eyebrow {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold-deep);
    margin-bottom: 14px;
}
.progress-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--teal-deep);
    margin-bottom: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.progress-pulse-dot {
    width: 12px; height: 12px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Campaign video */
.campaign-video {
    max-width: 920px;
    margin: 0 auto 36px;
}
.campaign-video-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(19, 57, 57, 0.25),
                0 0 0 2px rgba(224, 191, 124, 0.25);
    background: var(--teal-deep);
}
.campaign-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.progress-tracker {
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 28px;
    padding: clamp(32px, 4vw, 50px);
    box-shadow: 0 25px 60px rgba(19, 57, 57, 0.15),
                0 0 0 1px rgba(224, 191, 124, 0.2);
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: clamp(28px, 4vw, 50px);
    align-items: center;
    direction: rtl;
}

/* Circular progress */
.progress-circle-wrap {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto;
}
.progress-circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.progress-circle-track {
    fill: none;
    stroke: #e9e2cf;
    stroke-width: 18;
}
.progress-circle-fill {
    fill: none;
    stroke: url(#progressGrad);
    stroke-width: 18;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-circle-glow {
    fill: none;
    stroke: url(#progressGrad);
    stroke-width: 18;
    stroke-linecap: round;
    opacity: 0.4;
    filter: blur(8px);
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-circle-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.progress-circle-percent {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    color: var(--teal-deep);
    line-height: 1;
    display: flex;
    align-items: baseline;
}
.progress-circle-percent-sign {
    font-size: 32px;
    color: var(--gold-deep);
    margin-inline-start: 4px;
}
.progress-circle-label {
    font-size: 14px;
    color: rgba(12, 31, 31, 0.6);
    letter-spacing: 0.15em;
    margin-top: 6px;
}

/* Right side - numbers */
.progress-numbers {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.progress-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 20px;
    background: rgba(19, 57, 57, 0.04);
    border-radius: 14px;
    border-inline-start: 4px solid transparent;
    transition: background 0.25s;
}
.progress-row-label {
    font-size: 14px;
    color: rgba(12, 31, 31, 0.6);
    letter-spacing: 0.04em;
    font-weight: 500;
}
.progress-row-value {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: var(--teal-deep);
    letter-spacing: -0.01em;
}
.progress-row-value-up {
    color: #2d7a3e;
}

/* Highlighted row - "remaining" */
.progress-row-highlight {
    background: linear-gradient(135deg, rgba(224, 191, 124, 0.18) 0%, rgba(224, 191, 124, 0.06) 100%);
    border-inline-start-color: var(--gold);
}
.progress-row-highlight .progress-row-label {
    color: var(--gold-deep);
    font-weight: 700;
}
.progress-row-highlight .progress-row-value {
    color: var(--gold-deep);
    font-size: clamp(24px, 3vw, 32px);
}

.progress-donors-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 57, 57, 0.06);
    color: var(--teal-deep);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
}
.progress-donors-pill strong {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--teal-deep);
    font-size: 17px;
}
.progress-donors-pill svg {
    color: var(--teal-mid);
}

.btn-progress {
    margin-top: 6px;
    padding: 16px 32px;
    font-size: 17px;
    text-align: center;
    align-self: flex-start;
}
.progress-live-indicator {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(12, 31, 31, 0.5);
    margin-top: 4px;
    letter-spacing: 0.04em;
}
.live-dot {
    width: 7px; height: 7px;
    background: #2d7a3e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(45, 122, 62, 0.7);
    animation: liveDot 2s ease-in-out infinite;
}
@keyframes liveDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45, 122, 62, 0.7); }
    50%      { box-shadow: 0 0 0 7px rgba(45, 122, 62, 0); }
}

.progress-note {
    font-size: 12px;
    color: rgba(12, 31, 31, 0.45);
    margin-top: 24px;
    font-style: italic;
    text-align: center;
}
.progress-note a {
    color: var(--gold-deep);
    text-decoration: none;
}
.progress-note a:hover { color: var(--teal-deep); }

@media (max-width: 768px) {
    .progress-tracker {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .progress-circle-wrap { width: 200px; height: 200px; }
    .progress-circle-percent { font-size: 52px; }
    .progress-circle-percent-sign { font-size: 26px; }
    .btn-progress { width: 100%; align-self: stretch; }
    .progress-donors-pill { justify-content: center; align-self: stretch; }
}

/* Mini stats below the progress card */
.stats-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
}
.stat-mini {
    padding: 14px 8px;
}
.stat-mini-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--teal-deep);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-mini-unit {
    font-size: 0.55em;
    color: var(--gold-deep);
    margin-inline-start: 4px;
    font-weight: 600;
}
.stat-mini-label {
    font-size: 13px;
    color: rgba(12, 31, 31, 0.6);
    letter-spacing: 0.04em;
}

@media (max-width: 600px) {
    .stats-mini-grid { gap: 6px; }
}

/* ---- 7. DONATION LEVELS ---- */
.section-levels {
    background: linear-gradient(180deg, var(--cream) 0%, #f0e9d8 100%);
    position: relative;
}
.levels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.level-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 26px 28px;
    position: relative;
    transition: transform 0.35s, box-shadow 0.35s;
    border: 1px solid rgba(19, 57, 57, 0.08);
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 24px rgba(12, 31, 31, 0.08);
}
.level-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}

.level-card.level-featured {
    background: linear-gradient(160deg, var(--teal-mid) 0%, var(--teal-deep) 100%);
    color: var(--white);
    border: 1px solid rgba(224, 191, 124, 0.3);
    transform: scale(1.04);
}
.level-card.level-featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.level-card.level-premium {
    background:
        linear-gradient(160deg, var(--teal-deep) 0%, #081d1d 100%);
    color: var(--white);
    border: 2px solid var(--gold);
    box-shadow: 0 12px 40px rgba(19, 57, 57, 0.25), 0 0 0 1px rgba(224, 191, 124, 0.2);
}
.level-card.level-premium::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gold) 0%, transparent 30%, transparent 70%, var(--gold) 100%);
    z-index: -1;
    opacity: 0.6;
}

.level-ribbon, .level-ribbon-premium {
    position: absolute;
    top: -14px;
    inset-inline-end: 24px;
    background: var(--gold);
    color: var(--teal-deep);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-gold);
}
.level-ribbon-premium {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
}

.level-header {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(224, 191, 124, 0.25);
}
.level-card:not(.level-featured):not(.level-premium) .level-header {
    border-bottom-color: rgba(19, 57, 57, 0.1);
}

.level-title {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--teal-deep);
    line-height: 1;
}
.level-card.level-featured .level-title,
.level-card.level-premium .level-title {
    color: var(--gold-bright);
}

.level-meters {
    display: inline-block;
    margin-top: 6px;
    font-size: 14px;
    color: var(--gold-deep);
    font-weight: 600;
    letter-spacing: 0.05em;
}
.level-card.level-featured .level-meters,
.level-card.level-premium .level-meters {
    color: var(--gold);
}

.level-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}
.price-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--teal-deep);
    line-height: 1;
    letter-spacing: -0.02em;
}
.price-currency {
    font-size: 24px;
    color: var(--teal-deep);
    font-weight: 600;
}
.level-card.level-featured .price-num,
.level-card.level-featured .price-currency,
.level-card.level-premium .price-num,
.level-card.level-premium .price-currency {
    color: var(--white);
}

.level-period {
    font-size: 14px;
    color: rgba(12, 31, 31, 0.6);
    margin-bottom: 18px;
}
.level-card.level-featured .level-period,
.level-card.level-premium .level-period {
    color: rgba(255, 255, 255, 0.7);
}

.level-gift {
    background: linear-gradient(135deg, rgba(224, 191, 124, 0.18) 0%, rgba(224, 191, 124, 0.08) 100%);
    color: var(--gold-shadow);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    border-inline-start: 3px solid var(--gold);
    line-height: 1.4;
}
.level-card.level-featured .level-gift,
.level-card.level-premium .level-gift {
    background: rgba(224, 191, 124, 0.15);
    color: var(--gold-bright);
    border-inline-start-color: var(--gold);
}

.level-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}
.level-features li {
    font-size: 14.5px;
    padding-block: 6px;
    padding-inline-start: 22px;
    position: relative;
    line-height: 1.5;
    color: rgba(12, 31, 31, 0.8);
}
.level-features li::before {
    content: '✦';
    position: absolute;
    inset-inline-start: 0;
    color: var(--gold);
    font-size: 12px;
    top: 9px;
}
.level-card.level-featured .level-features li,
.level-card.level-premium .level-features li {
    color: rgba(255, 255, 255, 0.85);
}

.btn-level {
    background: var(--teal-deep);
    color: var(--white);
    padding: 13px 20px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 15.5px;
    transition: background 0.25s, transform 0.25s;
    margin-top: auto;
}
.btn-level:hover {
    background: var(--teal-mid);
    transform: translateY(-2px);
}
.level-card.level-featured .btn-level,
.level-card.level-premium .btn-level {
    background: var(--gold);
    color: var(--teal-deep);
}
.level-card.level-featured .btn-level:hover,
.level-card.level-premium .btn-level:hover {
    background: var(--gold-bright);
}

/* ---- 8. ROOMS DETAILED ---- */
.section-rooms {
    background: var(--cream);
    padding-block: clamp(70px, 9vw, 110px);
}
.section-rooms .container:first-child {
    text-align: center;
    margin-bottom: 60px;
}
.section-rooms .section-eyebrow,
.section-rooms .section-title,
.section-rooms .section-sub {
    text-align: center;
    margin-inline: auto;
}
.section-rooms .section-eyebrow {
    padding-inline-start: 0;
    padding-inline-end: 0;
}
.section-rooms .section-eyebrow::before {
    inset-inline-start: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -10px;
    width: 60px;
}

.rooms-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.room-feature {
    background: var(--white);
    overflow: hidden;
    border-block: 1px solid rgba(19, 57, 57, 0.06);
}
.room-feature-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    padding-block: clamp(40px, 6vw, 70px);
}
.room-feature-reverse .room-feature-inner {
    direction: ltr;
}
.room-feature-reverse .room-info {
    direction: rtl;
}

.room-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/3;
}
.room-image > img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-feature:hover .room-image > img {
    transform: scale(1.04);
}
.room-image::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(224, 191, 124, 0.4);
    border-radius: calc(var(--radius-lg) - 14px);
    pointer-events: none;
    z-index: 2;
}

/* Dedication overlay tags on room renderings */
.ded-tag {
    position: absolute;
    z-index: 4;
    background: linear-gradient(160deg, rgba(19, 57, 57, 0.96) 0%, rgba(12, 31, 31, 0.98) 100%);
    border: 1.5px solid var(--gold);
    border-radius: 14px;
    padding: 9px 14px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45),
                0 0 0 1px rgba(224, 191, 124, 0.15);
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 130px;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    direction: rtl;
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.ded-tag:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: var(--gold-bright);
    box-shadow: 0 16px 40px rgba(224, 191, 124, 0.5),
                0 0 0 2px rgba(224, 191, 124, 0.25);
}

.ded-tag-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-bright);
    line-height: 1.3;
}
.ded-tag-price {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
    direction: ltr;
    text-align: end;
}

@media (max-width: 768px) {
    .ded-tag {
        padding: 6px 10px;
        min-width: 90px;
        max-width: 130px;
        border-radius: 10px;
    }
    .ded-tag-name { font-size: 10px; }
    .ded-tag-price { font-size: 13px; }
}

.room-hint {
    font-size: 13px;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 18px;
    padding: 10px 14px;
    background: rgba(224, 191, 124, 0.12);
    border-radius: 10px;
    border-inline-start: 3px solid var(--gold);
}

.room-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-deep);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.room-number::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    max-width: 80px;
}

.room-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--teal-deep);
    margin-bottom: 18px;
}

.room-desc {
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.7;
    color: rgba(12, 31, 31, 0.75);
    margin-bottom: 24px;
}

.room-pricing {
    background: linear-gradient(135deg, rgba(224, 191, 124, 0.12) 0%, rgba(224, 191, 124, 0.04) 100%);
    border-inline-end: 4px solid var(--gold);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 24px;
}
.room-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.room-price-label {
    font-size: 14.5px;
    color: var(--teal-deep);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.room-price-value {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--gold-deep);
    letter-spacing: -0.01em;
}
.room-price-note {
    font-size: 12px;
    color: rgba(12, 31, 31, 0.5);
    margin-top: 6px;
    font-style: italic;
}

.btn-room {
    padding: 14px 32px;
    font-size: 16px;
    display: inline-flex;
}

/* Highlighted room (with confirmed price) */
.room-feature-highlight {
    background: linear-gradient(135deg, var(--cream) 0%, #f0e9d8 100%);
}
.room-feature-highlight .room-pricing {
    background: linear-gradient(135deg, rgba(224, 191, 124, 0.22) 0%, rgba(224, 191, 124, 0.08) 100%);
    border-inline-end-color: var(--gold-deep);
}
.room-feature-highlight .room-price-note {
    color: var(--gold-deep);
    font-style: normal;
    font-weight: 600;
}

/* Project total banner */
.section-total {
    background: linear-gradient(180deg, var(--cream) 0%, #f0e9d8 100%);
    padding-block: clamp(40px, 6vw, 70px);
}
.total-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 4vw, 50px) clamp(24px, 4vw, 50px);
    border: 2px solid rgba(224, 191, 124, 0.4);
    box-shadow: 0 20px 60px rgba(19, 57, 57, 0.25);
    position: relative;
    overflow: hidden;
}
.total-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(224, 191, 124, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(58, 138, 138, 0.25) 0%, transparent 60%);
    pointer-events: none;
}
.total-card > * { position: relative; z-index: 1; }

.total-label {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--gold-bright);
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    font-weight: 500;
}
.total-amount {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}
.total-amount-num {
    font-family: var(--font-display);
    font-size: clamp(64px, 9vw, 110px);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, var(--gold-bright) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}
.total-amount-unit {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 600;
    color: var(--gold-bright);
}
.total-desc {
    font-size: clamp(15px, 1.6vw, 17.5px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin: 0 auto;
}
.total-desc strong {
    color: var(--gold-bright);
    font-weight: 600;
}

/* Facade dedications section */
.section-facade {
    background: var(--cream);
    text-align: center;
}
.section-facade .section-eyebrow,
.section-facade .section-title,
.section-facade .section-sub {
    text-align: center;
}
.section-facade .section-eyebrow {
    padding-inline-start: 0;
    padding-inline-end: 0;
}
.section-facade .section-eyebrow::before {
    inset-inline-start: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -10px;
    width: 60px;
}
.section-facade .section-sub {
    margin-inline: auto;
    margin-bottom: 50px;
}

.facade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.facade-card {
    background: linear-gradient(160deg, var(--white) 0%, #fbf6ec 100%);
    border: 2px solid rgba(224, 191, 124, 0.4);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 4vw, 44px) clamp(22px, 3vw, 36px);
    text-decoration: none;
    color: var(--teal-deep);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.facade-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(224, 191, 124, 0.3);
}
.facade-card-primary {
    background: linear-gradient(160deg, var(--teal-deep) 0%, #081d1d 100%);
    color: var(--white);
    border-color: var(--gold);
}
.facade-card-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(224, 191, 124, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.facade-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: var(--shadow-gold);
}
.facade-icon svg {
    width: 32px; height: 32px;
}

.facade-tier {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-deep);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}
.facade-card-primary .facade-tier {
    color: var(--gold);
}

.facade-name {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 700;
    margin-bottom: 12px;
    color: inherit;
}
.facade-card-primary .facade-name {
    color: var(--gold-bright);
}

.facade-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(12, 31, 31, 0.7);
    margin-bottom: 22px;
    flex-grow: 1;
}
.facade-card-primary .facade-desc {
    color: rgba(255, 255, 255, 0.82);
}

.facade-cta {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold-deep);
    font-size: 15px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.facade-card-primary .facade-cta {
    color: var(--gold-bright);
}

.facade-note {
    margin-top: 30px;
    font-size: 14px;
    color: rgba(12, 31, 31, 0.55);
    font-style: italic;
}

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

/* ---- 9. QUOTE ---- */
.section-quote {
    background:
        linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
    color: var(--white);
    text-align: center;
    padding-block: clamp(70px, 10vw, 130px);
    position: relative;
    overflow: hidden;
}
.section-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(224, 191, 124, 0.15) 0%, transparent 60%);
}
.quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--gold-bright);
    position: relative;
    max-width: 900px;
    margin-inline: auto;
}
.quote-mark {
    color: var(--gold);
    opacity: 0.6;
    font-size: 1.1em;
    margin: 0 6px;
}
.quote-source {
    margin-top: 24px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    position: relative;
}

/* ---- 10. DONATION IFRAME ---- */
.section-donate {
    background:
        linear-gradient(180deg, var(--cream) 0%, #ebe2cc 100%);
    text-align: center;
}
.section-donate .section-eyebrow {
    padding-inline-start: 0;
    padding-inline-end: 0;
}
.section-donate .section-eyebrow::before {
    inset-inline-start: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -10px;
    width: 60px;
}
.section-donate .section-eyebrow,
.section-donate .section-title,
.section-donate .section-sub {
    text-align: center;
    margin-inline: auto;
}
.section-donate .section-sub { margin-bottom: 40px; }

.donate-cta-card {
    background: linear-gradient(160deg, var(--teal-mid) 0%, var(--teal-deep) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 56px);
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(19, 57, 57, 0.3);
    border: 2px solid rgba(224, 191, 124, 0.35);
    position: relative;
    overflow: hidden;
}
.donate-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(224, 191, 124, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(58, 138, 138, 0.3) 0%, transparent 50%);
    pointer-events: none;
}
.donate-cta-card > * { position: relative; z-index: 1; }

.donate-cta-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-gold);
}

.donate-cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--gold-bright);
    margin-bottom: 12px;
    text-align: center;
}
.donate-cta-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
.donate-amount-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(224, 191, 124, 0.3);
    border-radius: 14px;
    padding: 18px 8px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.donate-amount-btn:hover {
    background: rgba(224, 191, 124, 0.18);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.donate-amount-btn .amount-value {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-bright);
}
.donate-amount-btn .amount-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
}
.donate-amount-featured {
    background: rgba(224, 191, 124, 0.18);
    border-color: var(--gold);
}

.btn-large {
    padding: 18px 50px;
    font-size: 19px;
    width: 100%;
    margin-bottom: 24px;
}

.donate-secure {
    display: flex;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid rgba(224, 191, 124, 0.2);
}
.secure-badge {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.secure-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .donate-amounts { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 11. CONTACT MINI ---- */
.section-contact-mini {
    background: var(--cream);
    padding-block: 18px;
    border-top: 1px solid rgba(19, 57, 57, 0.08);
    border-bottom: 1px solid rgba(19, 57, 57, 0.08);
}
.contacts-mini {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 14px;
    font-size: 13px;
    color: rgba(12, 31, 31, 0.65);
}
.contacts-mini-label {
    color: var(--teal-deep);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.contacts-mini-sep {
    color: rgba(12, 31, 31, 0.3);
}
.contact-mini {
    text-decoration: none;
    color: var(--teal-deep);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    transition: color 0.2s;
}
.contact-mini:hover { color: var(--gold-deep); }
.contact-mini-name {
    font-weight: 500;
}
.contact-mini-phone {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold-deep);
    direction: ltr;
    display: inline-block;
}

/* ---- 12. FOOTER ---- */
.site-footer {
    background: var(--teal-deep);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 32px 20px;
    font-size: 14px;
}
.site-footer p { margin: 4px 0; }
.footer-copy { font-size: 12px; color: rgba(255, 255, 255, 0.4); }

/* ---- 13. FLOATING CTA ---- */
.floating-cta {
    position: fixed;
    bottom: 24px;
    inset-inline-start: 24px;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    color: var(--teal-deep);
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(224, 191, 124, 0.5);
    z-index: 100;
    transition: transform 0.25s, box-shadow 0.25s;
    animation: pulseCta 3s ease-in-out infinite;
}
.floating-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 40px rgba(224, 191, 124, 0.65);
}
@keyframes pulseCta {
    0%, 100% { box-shadow: 0 10px 30px rgba(224, 191, 124, 0.5); }
    50%      { box-shadow: 0 10px 40px rgba(224, 191, 124, 0.8); }
}

/* ---- 14. RESPONSIVE ---- */
@media (max-width: 1024px) {
    .levels-grid { grid-template-columns: repeat(2, 1fr); }
    .level-card.level-featured { transform: none; }
    .level-card.level-featured:hover { transform: translateY(-8px); }
    .mini-dedications-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 16px;
    }
    .stat { border-inline-start: none; }
    .levels-grid { grid-template-columns: 1fr; }
    .room-feature-inner { grid-template-columns: 1fr; }
    .room-feature-reverse .room-feature-inner { direction: rtl; }
    .hero-cta { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
    .btn { padding: 14px 28px; }
    .floating-cta { padding: 12px 22px; font-size: 14px; }
    .mini-dedications-grid { grid-template-columns: 1fr; }
    .mini-dedication-name { min-height: 0; }
}

/* ---- 15. SCROLL REVEAL (basic) ---- */
@media (prefers-reduced-motion: no-preference) {
    .section-title,
    .section-sub,
    .level-card,
    .room-card,
    .stat,
    .mission-image,
    .mission-text,
    .contact-card {
        opacity: 0;
        transform: translateY(20px);
        animation: revealUp 0.8s ease-out forwards;
        animation-timeline: view();
        animation-range: entry 0% entry 70%;
    }
}
@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}
