/* ============================================================
   NURSHAUS FOUNDATION — Flagship Site Stylesheet
   Playfair Display + Inter. Black & White.
   The Foundation Called Magnificent.
   ============================================================ */

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

:root {
    --black:      #000000;
    --white:      #ffffff;
    --off:        #f7f7f7;
    --gray-100:   #eeeeee;
    --gray-200:   #d4d4d4;
    --gray-300:   #a3a3a3;
    --gray-400:   #737373;
    --gray-500:   #525252;
    --gray-600:   #404040;
    --gray-700:   #262626;
    --gray-800:   #171717;
    --gray-900:   #0a0a0a;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --section-pad:    clamp(5rem, 10vw, 9rem);
    --container-max:  1100px;
    --narrow-max:     780px;
    --transition:     0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--black);
    color: var(--white);
}

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

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow {
    max-width: var(--narrow-max);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: var(--white);
    box-shadow: 0 1px 0 var(--gray-100);
}

.nav.scrolled .nav-logo-text,
.nav.scrolled .nav-logo-sub,
.nav.scrolled .nav-links a {
    color: var(--black);
}

.nav.scrolled .nav-toggle span {
    background: var(--black);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: var(--white);
    transition: color var(--transition);
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-300);
    transition: color var(--transition);
}

.nav.scrolled .nav-logo-sub {
    color: var(--gray-400);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a:hover { color: var(--black); }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    position: absolute;
    left: 0;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 6rem clamp(1.5rem, 5vw, 4rem) 4rem;
    position: relative;
}

.hero-inner {
    max-width: 900px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
}

.hero-eyebrow .latin {
    font-style: italic;
    letter-spacing: 0.2em;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray-200);
    max-width: 680px;
    margin: 0 auto 3rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gray-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--gray-500);
}

.btn-ghost:hover {
    border-color: var(--white);
    color: var(--white);
}

.btn-black {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-black:hover {
    background: transparent;
    color: var(--black);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: var(--section-pad) 0;
}

.section--light {
    background: var(--white);
    color: var(--black);
}

.section--dark {
    background: var(--gray-900);
    color: var(--white);
}

.section--dark a { color: var(--gray-200); }
.section--dark a:hover { color: var(--white); }

.section--off {
    background: var(--off);
    color: var(--black);
}

/* Section Typography */
.section-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.section-intro {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: var(--narrow-max);
    margin-bottom: 3.5rem;
}

.section--dark .section-intro {
    color: var(--gray-200);
}

.section-body {
    max-width: var(--narrow-max);
    margin-bottom: 3rem;
}

.section-body p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-600);
}

.section--dark .section-body p {
    color: var(--gray-200);
}

.section-body--large p {
    font-size: 1.15rem;
    line-height: 1.9;
}

.section-body--prose p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.95;
    color: var(--gray-700);
}

.section-closing {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    line-height: 1.5;
    margin-top: 3rem;
    max-width: var(--narrow-max);
}

.section--dark .section-closing {
    color: var(--gray-200);
}

.section--dark .section-closing a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-declaration {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.section--dark .section-declaration {
    border-top-color: var(--gray-700);
}

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.stat-label {
    display: block;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--gray-500);
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.program {
    padding: 4rem 0;
}

.program-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.program-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gray-200);
    flex-shrink: 0;
}

.program-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.program-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

.program-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    margin: 0 0 2rem 0;
    padding: 0;
    border: none;
    color: var(--gray-600);
}

.program-body {
    max-width: var(--narrow-max);
    margin-bottom: 2.5rem;
}

.program-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

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

.feature {
    padding: 1.75rem;
    border: 1px solid var(--gray-100);
}

.feature h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
}

.feature p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-500);
}

.program-origin {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: var(--narrow-max);
}

.program-divider {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 0;
}

/* ============================================================
   GRANTMAKING
   ============================================================ */
.grant-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.grant-type h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.grant-type p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-200);
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--gray-100);
    border: 1px solid var(--gray-100);
    margin: 3rem 0;
}

.serve-card {
    background: var(--white);
    padding: 2rem;
}

.serve-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.serve-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ============================================================
   FUNDING
   ============================================================ */
.funding-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.funding-block h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.funding-block p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.funding-block p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   GET HELP
   ============================================================ */
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.help-card {
    border: 1px solid var(--gray-700);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.help-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.help-card-sub {
    font-size: 0.85rem;
    color: var(--gray-300);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.help-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-200);
    margin-bottom: 1.5rem;
}

.help-card .btn {
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 1rem;
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

.help-card .btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--white);
}

.help-card-note {
    font-size: 0.8rem !important;
    color: var(--gray-400) !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

/* ============================================================
   SUPPORT
   ============================================================ */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    border: 1px solid var(--gray-100);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.support-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.support-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.support-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-block h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.contact-detail {
    font-size: 0.95rem;
    color: var(--white) !important;
    font-weight: 500;
}

.site-contact-form {
    max-width: 640px;
}

.site-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.site-contact-form .form-group {
    margin-bottom: 1rem;
}

.site-contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 0.35rem;
}

.site-contact-form input,
.site-contact-form textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

.site-contact-form input:focus,
.site-contact-form textarea:focus {
    border-color: var(--white);
}

.site-contact-form input::placeholder,
.site-contact-form textarea::placeholder {
    color: var(--gray-500);
}

.site-contact-form .btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.site-contact-form .btn-primary:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {
    .site-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 4rem 0 3rem;
    border-top: 1px solid var(--gray-800);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-800);
}

.footer-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-latin {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gray-500);
    margin-bottom: 0.15rem;
}

.footer-tagline-en {
    font-size: 0.78rem;
    color: var(--gray-500);
    letter-spacing: 0.04em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-legal {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--gray-500);
}

.footer-legal p {
    margin-bottom: 0.75rem;
}

.footer-links-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links-legal a {
    text-decoration: none;
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-links-legal a:hover { color: var(--white); }

.footer-copyright {
    color: var(--gray-600);
    margin-top: 1rem !important;
    font-size: 0.75rem;
}

/* ---- Footer Social ---- */
.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-800);
}

.footer-social__link {
    color: var(--gray-400);
    transition: color var(--transition);
    display: flex;
    align-items: center;
}

.footer-social__link:hover {
    color: var(--white);
}

/* ---- Disabled Links ---- */
.nav-link--disabled,
.footer-link--disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--black);
    z-index: 1001;
    width: 0;
    transition: none;
}

.nav.scrolled ~ .scroll-progress,
.scroll-progress {
    background: var(--black);
}

/* ---- Mobile Menu Backdrop ---- */
.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 999;
}

.nav-backdrop.open {
    display: block;
}

/* ---- Mobile Bottom Social Bar ---- */
.mobile-social-bar {
    display: none;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero entrance animations */
.anim-fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.9s ease forwards;
}

.anim-delay-1 { animation-delay: 0.25s; }
.anim-delay-2 { animation-delay: 0.5s; }
.anim-delay-3 { animation-delay: 0.75s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-features {
        grid-template-columns: 1fr;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .grant-types {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--black);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        color: var(--gray-300) !important;
        font-size: 1rem;
        padding: 0.75rem 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--gray-800);
        letter-spacing: 0.08em;
    }

    .nav-links a:hover {
        color: var(--white) !important;
    }

    .nav-links a::after {
        display: none;
    }

    .hero-headline {
        font-size: clamp(2.75rem, 10vw, 3.5rem);
    }

    .hero-headline br { display: none; }

    .section-headline br { display: none; }

    .program-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .program-number {
        font-size: 2.5rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer .container {
        padding-bottom: 4.5rem;
    }

    .mobile-social-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-100);
        padding: 0.6rem 1rem;
        z-index: 9000;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }

    .mobile-social-bar a {
        display: flex;
        align-items: center;
        color: var(--black);
        transition: opacity var(--transition);
    }

    .mobile-social-bar a:hover {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .feature {
        padding: 1.25rem;
    }
}

/* ---- Print ---- */
@media print {
    .nav, .hero-scroll-hint, .hero-ctas, .btn { display: none; }
    .section { padding: 2rem 0; }
    .hero { min-height: auto; padding: 3rem 1rem; }
    .reveal { opacity: 1; transform: none; }
}
