/* =============================================================
   DAYOMI — Style principal
   Palette : parchemin (cream) / encre (navy deep) / laiton (gold)
   Polices :
     - Cormorant Garamond : titres élégants serif
     - Frank Ruhl Libre   : hébreu raffiné
     - Heebo              : hébreu sans-serif
     - Inter              : corps de texte moderne
   ============================================================= */

/* -----------------------------
   Tokens & reset
   ----------------------------- */
:root {
    /* Palette */
    --parchment:        #f4e8cf;
    --parchment-light:  #fbf5e6;
    --parchment-deep:   #ead7ad;
    --ink:              #15243d;      /* navy profond, l'encre */
    --ink-soft:         #2a3a5a;
    --ink-light:        #4a5a7a;
    --brass:            #b48a3a;      /* laiton */
    --brass-light:      #d8b260;
    --brass-deep:       #8c6420;
    --terracotta:       #b3593e;
    --olive:            #6a7a3e;
    --text:             #2a2418;
    --text-soft:        #5a5040;
    --bg:               var(--parchment-light);

    /* Typography */
    --font-display:     'Cormorant Garamond', 'Times New Roman', serif;
    --font-body:        'Inter', system-ui, -apple-system, sans-serif;
    --font-hebrew:      'Frank Ruhl Libre', 'David', serif;
    --font-hebrew-sans: 'Heebo', sans-serif;

    /* Sizes */
    --container:        1200px;
    --radius:           4px;
    --radius-lg:        12px;

    /* Shadows (soft, like ink on parchment) */
    --shadow-sm:  0 1px 2px rgba(21,36,61,0.08);
    --shadow-md:  0 4px 16px rgba(21,36,61,0.10);
    --shadow-lg:  0 12px 40px rgba(21,36,61,0.15);

    /* Motion */
    --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast:     200ms;
    --t-mid:      400ms;
    --t-slow:     700ms;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    /* Texture parchemin subtile via gradient */
    background-image:
        radial-gradient(ellipse at top left, rgba(180, 138, 58, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(21, 36, 61, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--parchment-light) 0%, var(--parchment) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a { color: var(--ink); text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--brass-deep); }

[lang="he"] {
    font-family: var(--font-hebrew);
    direction: rtl;
    unicode-bidi: isolate;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* -----------------------------
   Boutons
   ----------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--t-fast) var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--ink);
    color: var(--parchment-light);
    border-color: var(--ink);
}
.btn--primary:hover {
    background: var(--ink-soft);
    color: var(--brass-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--ghost:hover {
    background: var(--ink);
    color: var(--parchment-light);
    transform: translateY(-2px);
}

/* -----------------------------
   Header / Navigation
   ----------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(251, 245, 230, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(180, 138, 58, 0.18);
    transition: background var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 24px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav__logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
}
.nav__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: 0.12em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav__menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.04em;
    position: relative;
    padding: 6px 0;
}
.nav__menu a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-fast) var(--ease-out);
}
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__menu .nav__cta {
    background: var(--ink);
    color: var(--parchment-light);
    padding: 10px 22px;
    border-radius: var(--radius);
    letter-spacing: 0.08em;
}
.nav__menu .nav__cta:hover {
    background: var(--brass);
    color: var(--ink);
}
.nav__menu .nav__cta::after { display: none; }

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.nav__toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 1px;
    transition: transform var(--t-fast), opacity var(--t-fast);
}

@media (max-width: 920px) {
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0; right: 0;
        background: var(--parchment-light);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--t-mid) var(--ease-out);
        box-shadow: var(--shadow-md);
    }
    .nav__menu.is-open { max-height: 480px; }
    .nav__menu li { padding: 14px 24px; }
    .nav__menu .nav__cta { margin: 8px 24px; text-align: center; }
}

/* -----------------------------
   HERO
   ----------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(216, 178, 96, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(21, 36, 61, 0.06) 0%, transparent 50%);
}

/* Ornement type étoiles diffuses */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 138, 58, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero::before { top: -200px; left: -200px; }
.hero::after  { bottom: -200px; right: -200px; }

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero__hebrew-top {
    font-family: var(--font-hebrew);
    font-size: 18px;
    color: var(--brass-deep);
    letter-spacing: 0.04em;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    direction: rtl;
}
.hero__hebrew-top span { display: inline-block; }
.hero__star {
    color: var(--brass);
    font-size: 22px;
    transform: translateY(-2px);
}

.hero__logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(180, 138, 58, 0.3),
        0 0 0 12px rgba(180, 138, 58, 0.08),
        var(--shadow-lg);
    animation: floatLogo 6s var(--ease-out) infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-family: var(--font-display);
}
.hero__name {
    font-size: clamp(60px, 11vw, 110px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.08em;
    line-height: 1;
}
.hero__hebrew {
    font-family: var(--font-hebrew);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--brass-deep);
    line-height: 1.2;
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 26px);
    font-style: italic;
    color: var(--ink-soft);
    margin: 4px 0 48px;
    letter-spacing: 0.03em;
}

.hero__verse {
    border-top: 1px solid rgba(180, 138, 58, 0.35);
    border-bottom: 1px solid rgba(180, 138, 58, 0.35);
    padding: 28px 16px;
    margin: 0 auto 48px;
    max-width: 600px;
    position: relative;
}
.hero__verse::before, .hero__verse::after {
    content: '✦';
    position: absolute;
    color: var(--brass);
    font-size: 14px;
    background: var(--parchment-light);
    padding: 0 10px;
}
.hero__verse::before { top: -8px; left: 50%; transform: translateX(-50%); }
.hero__verse::after  { bottom: -8px; left: 50%; transform: translateX(-50%); }

.verse__hebrew {
    font-family: var(--font-hebrew);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 12px;
    direction: rtl;
    letter-spacing: 0.02em;
}
.verse__french {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--text-soft);
    margin: 0 0 6px;
}
.verse__ref {
    font-size: 13px;
    color: var(--brass-deep);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

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

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: fadeInOut 2.4s ease-in-out infinite;
}
.hero__scroll-line {
    width: 1px;
    height: 32px;
    background: var(--ink);
}
.hero__scroll-text {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
    50%      { opacity: 0.9; transform: translateX(-50%) translateY(8px); }
}

/* -----------------------------
   Section générique
   ----------------------------- */
.section {
    padding: 120px 0;
    position: relative;
}
.section--alt {
    background:
        linear-gradient(180deg, rgba(180, 138, 58, 0.05) 0%, transparent 100%),
        var(--parchment);
}

.section__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 72px;
}
.section__eyebrow {
    display: inline-block;
    font-family: var(--font-hebrew);
    font-size: 18px;
    color: var(--brass-deep);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    padding: 4px 16px;
    border: 1px solid rgba(180, 138, 58, 0.3);
    border-radius: 100px;
    direction: rtl;
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.section__lead {
    font-size: 18px;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
}
.section__lead em { font-style: italic; color: var(--brass-deep); }

/* -----------------------------
   Piliers
   ----------------------------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 72px;
}

@media (max-width: 900px) {
    .pillars { grid-template-columns: 1fr; gap: 24px; }
}

.pillar {
    background: var(--parchment-light);
    border: 1px solid rgba(180, 138, 58, 0.2);
    border-radius: var(--radius-lg);
    padding: 48px 32px 40px;
    text-align: center;
    position: relative;
    transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out), border-color var(--t-mid) var(--ease-out);
}
.pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--brass);
}
.pillar:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brass);
}

.pillar__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: var(--brass-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pillar__icon svg { width: 100%; height: 100%; }

.pillar__name {
    font-family: var(--font-hebrew);
    font-size: 44px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
    line-height: 1;
}
.pillar__translit {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--brass-deep);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 24px;
}
.pillar__desc {
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

.pillars__plus {
    background: var(--ink);
    color: var(--parchment-light);
    border-radius: var(--radius-lg);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
}
.plus__decor {
    font-size: 96px;
    font-family: var(--font-display);
    color: var(--brass-light);
    line-height: 1;
    flex-shrink: 0;
}
.plus__label {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass-light);
    margin: 0 0 8px;
}
.plus__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--parchment-light);
    margin: 0 0 12px;
}
.plus__desc {
    margin: 0;
    color: rgba(244, 232, 207, 0.85);
    line-height: 1.7;
}
@media (max-width: 700px) {
    .pillars__plus { flex-direction: column; text-align: center; padding: 40px 28px; gap: 16px; }
    .plus__decor { font-size: 72px; }
}

/* -----------------------------
   Fonctionnalités
   ----------------------------- */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature {
    background: var(--parchment-light);
    border: 1px solid rgba(180, 138, 58, 0.18);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brass);
}
.feature__icon {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--brass-deep);
    line-height: 1;
    height: 48px;
    display: flex;
    align-items: center;
}
.feature__icon span[lang="he"] {
    font-size: 44px;
    color: var(--ink);
}
.feature__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 12px;
    line-height: 1.3;
}
.feature__desc {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
    margin: 0;
}

/* -----------------------------
   Sécurité
   ----------------------------- */
.security__container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: center;
}
@media (max-width: 900px) {
    .security__container { grid-template-columns: 1fr; gap: 40px; }
}

.security__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.security__star {
    width: 320px;
    height: 320px;
    color: var(--brass);
    position: relative;
    animation: rotateStar 60s linear infinite;
}
.security__star::before {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 138, 58, 0.12) 0%, transparent 70%);
    z-index: -1;
}
.security__star svg { width: 100%; height: 100%; }

@keyframes rotateStar {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.security__content .section__title { text-align: left; }
.security__content .section__lead { text-align: left; }

.security__list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}
.security__list li {
    position: relative;
    padding: 14px 0 14px 36px;
    border-bottom: 1px dashed rgba(180, 138, 58, 0.25);
    color: var(--text-soft);
    font-size: 16px;
}
.security__list li:last-child { border-bottom: none; }
.security__list li::before {
    content: '✦';
    position: absolute;
    left: 4px;
    top: 14px;
    color: var(--brass);
    font-size: 14px;
}
.security__list strong { color: var(--ink); }

/* -----------------------------
   Audience
   ----------------------------- */
.audience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.audience__card {
    background: var(--parchment-light);
    border: 1px solid rgba(180, 138, 58, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.audience__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.audience__hebrew {
    font-family: var(--font-hebrew);
    font-size: 48px;
    font-weight: 700;
    color: var(--brass-deep);
    margin: 0 0 8px;
    line-height: 1;
}
.audience__card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--ink);
    margin: 0 0 14px;
    font-weight: 600;
}
.audience__card p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
    margin: 0;
}

/* -----------------------------
   Roadmap timeline
   ----------------------------- */
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--brass) 0%, rgba(180, 138, 58, 0.2) 100%);
}
.timeline__item {
    position: relative;
    padding: 8px 0 36px 64px;
}
.timeline__marker {
    position: absolute;
    left: 8px; top: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--brass-light);
    font-family: var(--font-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--bg);
}
.timeline__item:last-child .timeline__marker { background: var(--brass); color: var(--ink); }
.timeline__content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink);
    margin: 0 0 4px;
    font-weight: 600;
}
.timeline__when {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass-deep);
    margin: 0 0 12px;
}
.timeline__content > p:not(.timeline__when) {
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0;
}

/* -----------------------------
   Contact
   ----------------------------- */
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact__container { grid-template-columns: 1fr; gap: 48px; }
}

.contact__lead .section__title { text-align: left; }
.contact__lead .section__lead { text-align: left; }

.contact__verse {
    font-family: var(--font-hebrew);
    font-size: 24px;
    color: var(--ink);
    direction: rtl;
    margin: 32px 0 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(180, 138, 58, 0.3);
    text-align: right;
}
.contact__verse-fr {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brass-deep);
    margin: 0;
    font-size: 15px;
}

.contact__form {
    background: var(--parchment-light);
    border: 1px solid rgba(180, 138, 58, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.form__field span {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.04em;
}
.form__field input,
.form__field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid rgba(21, 36, 61, 0.18);
    border-radius: var(--radius);
    color: var(--text);
    transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
    resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--brass);
    box-shadow: 0 0 0 3px rgba(180, 138, 58, 0.15);
}

.form__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.form__status {
    margin: 0;
    font-size: 14px;
    color: var(--olive);
}
.form__status.is-error { color: var(--terracotta); }

.form__rgpd {
    margin: 18px 0 0;
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* -----------------------------
   Footer
   ----------------------------- */
.footer {
    background: var(--ink);
    color: rgba(244, 232, 207, 0.85);
    padding: 72px 0 24px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass) 50%, transparent);
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
@media (max-width: 800px) {
    .footer__container { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
    .footer__container { grid-template-columns: 1fr; }
}

.footer__logo {
    width: 64px; height: 64px;
    border-radius: 50%;
    margin-bottom: 16px;
}
.footer__tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--brass-light);
    margin: 0 0 8px;
}
.footer__hebrew {
    font-family: var(--font-hebrew);
    color: rgba(244, 232, 207, 0.7);
    margin: 0;
    direction: rtl;
    text-align: right;
    max-width: 320px;
}

.footer__col h4 {
    font-family: var(--font-display);
    color: var(--parchment-light);
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a {
    color: rgba(244, 232, 207, 0.75);
    font-size: 14px;
    transition: color var(--t-fast) var(--ease-out);
}
.footer__col a:hover { color: var(--brass-light); }

.footer__bottom {
    border-top: 1px solid rgba(180, 138, 58, 0.2);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(244, 232, 207, 0.6);
}
.footer__bracha {
    font-family: var(--font-hebrew);
    font-size: 16px;
    color: var(--brass-light);
    margin: 0 0 8px;
    direction: rtl;
}

/* -----------------------------
   Animations on scroll
   ----------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
    transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* -----------------------------
   Mobile fine-tuning
   ----------------------------- */
@media (max-width: 600px) {
    body { font-size: 16px; }
    .section { padding: 80px 0; }
    .section__header { margin-bottom: 48px; }
    .hero { padding-top: 120px; }
    .hero__logo { width: 140px; height: 140px; }
    .pillar { padding: 36px 24px 32px; }
    .contact__form { padding: 28px; }
}
