/* ======== BRAND VARIABLES (GLOBAL) ======== */
:root {
    --gili-cream:    #FBF8F4;   /* רקע ראשי */
    --gili-blush:    #F5E6E0;   /* ורוד פודרה עדין */
    --gili-nude:     #E8D5C4;   /* נוד חם */
    --gili-stone:    #D4C4B0;   /* בז'/אבן */
    --gili-gold:     #C9A678;   /* זהב רך */
    --gili-gold-dk:  #A8854F;   /* זהב כהה לאקסנט */
    --gili-ink:      #3A2E26;   /* חום עמוק לטקסט */
    --gili-muted:    #8A7A6B;   /* טקסט משני */
    --gili-border:   #EADFD3;   /* קו עדין */
    --gili-white:    #ffffff;
    --gili-wa:       #25D366;   /* ירוק WhatsApp */
    --gili-wa-dk:    #128C7E;
    --gili-gradient: linear-gradient(135deg, #C9A678, #E8D5C4);
    --gili-gradient-dk: linear-gradient(135deg, #A8854F, #C9A678);
    --shadow-sm: 0 2px 8px rgba(58, 46, 38, 0.06);
    --shadow-md: 0 4px 14px rgba(58, 46, 38, 0.08);
    --shadow-lg: 0 10px 30px rgba(58, 46, 38, 0.10);
    --shadow-xl: 0 20px 50px rgba(58, 46, 38, 0.14);
}

/* ======== RESET & BASE ======== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Assistant', sans-serif;
    background-color: var(--gili-cream);
    color: var(--gili-ink);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: 'Noto Sans Hebrew', sans-serif; line-height: 1.15; font-weight: 800; color: var(--gili-ink); }

/* ======== HEADER ======== */
.nexus-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    direction: ltr;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(251, 248, 244, 0.95) 0%, rgba(251, 248, 244, 0) 100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease, background 0.3s ease;
}
.nexus-header.scrolled {
    background: rgba(251, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(58, 46, 38, 0.06);
}
.header-logo { display: flex; align-items: center; z-index: 10001; }
.header-logo img { height: 76px; width: auto; display: block; transition: height 0.3s ease; }
.nexus-header.scrolled .header-logo img { height: 64px; }
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}
.menu-text {
    font-family: 'Assistant', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gili-ink);
    transition: color 0.3s;
}
.hamburger-lines {
    width: 28px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.line {
    width: 100%;
    height: 2px;
    background-color: var(--gili-ink);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}
.menu-open .line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background-color: var(--gili-gold); }
.menu-open .line:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-open .line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background-color: var(--gili-gold); }
.menu-open .menu-text { color: var(--gili-gold); }

/* ======== FULLSCREEN MENU ======== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--gili-ink);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    clip-path: circle(0% at 95% 5%);
    direction: ltr;
}
.menu-bg-texture {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(201, 166, 120, 0.18) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
}
.nav-links { list-style: none; padding: 0; margin: 0; text-align: center; position: relative; z-index: 2; }
.nav-item { margin: 15px 0; overflow: hidden; }
.nav-link {
    display: block;
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--gili-cream);
    text-decoration: none;
    transition: all 0.4s ease;
    transform: translateY(100%);
}
.nav-link:hover { color: var(--gili-gold); transform: translateX(10px); }
.menu-footer {
    position: absolute;
    bottom: 50px;
    display: flex;
    gap: 40px;
    color: rgba(251, 248, 244, 0.5);
    font-family: 'Assistant', sans-serif;
    font-size: 0.85rem;
    opacity: 0;
}
.menu-footer a { color: inherit; text-decoration: none; transition: color 0.3s; }
.menu-footer a:hover { color: var(--gili-gold); }

/* ======== SECTION 1: HERO ======== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background-color: var(--gili-cream);
    overflow: hidden;
}
.hero-bg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(251, 248, 244, 0.35) 0%, rgba(251, 248, 244, 0.65) 75%),
        linear-gradient(135deg, rgba(245, 230, 224, 0.25), rgba(232, 213, 196, 0.2));
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    position: relative;
    z-index: 2;
    max-width: 780px;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--gili-border);
    border-radius: 50px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gili-gold);
    animation: pulse 2s ease-in-out infinite;
}
.label-text {
    font-family: 'Assistant', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gili-gold-dk);
    font-weight: 700;
}
.hero-title {
    font-size: 4.6rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gili-ink);
    font-family: 'Noto Sans Hebrew', sans-serif;
}
.gradient-text {
    background: var(--gili-gradient-dk);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gili-muted);
    max-width: 600px;
}
.hero-cta-wrapper { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gili-gradient-dk);
    color: var(--gili-white);
    font-family: 'Assistant', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--gili-cream), 0 0 0 4px var(--gili-gold);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--gili-ink);
    font-family: 'Assistant', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: 1.5px solid var(--gili-border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    border-color: var(--gili-gold);
    background: rgba(245, 230, 224, 0.5);
    color: var(--gili-gold-dk);
}
.btn-ghost svg { transition: transform 0.3s ease; }
.btn-ghost:hover svg { transform: translateX(-4px); }

/* ======== SECTION 2: ABOUT ======== */
.about-section {
    position: relative;
    background-color: var(--gili-blush);
    color: var(--gili-ink);
    padding: 120px 60px;
    overflow: hidden;
}
.about-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 166, 120, 0.10) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.6;
    pointer-events: none;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gili-border);
    background: var(--gili-nude);
}
.about-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(58, 46, 38, 0.15) 100%);
    pointer-events: none;
}
.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-content { display: flex; flex-direction: column; gap: 20px; }
.section-label {
    display: inline-block;
    font-family: 'Assistant', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gili-gold-dk);
    font-weight: 700;
    margin-bottom: 8px;
}
.about-heading {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 8px;
}
.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gili-ink);
}
.about-text strong { color: var(--gili-gold-dk); font-weight: 700; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--gili-border);
}
.about-stat { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gili-gold-dk);
    line-height: 1;
}
.stat-label {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--gili-muted);
    letter-spacing: 0.5px;
}

/* ======== SECTION 3: WORKSHOPS ======== */
.workshops-section {
    position: relative;
    background-color: var(--gili-cream);
    padding: 120px 60px;
}
.workshops-container { max-width: 1200px; margin: 0 auto; }
.workshops-header { text-align: center; margin-bottom: 60px; }
.workshops-title { font-size: 3.4rem; line-height: 1.15; margin-top: 12px; }
.workshops-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gili-muted);
    max-width: 620px;
    margin: 22px auto 0;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pillar-item {
    position: relative;
    background: var(--gili-white);
    border: 1px solid var(--gili-border);
    border-radius: 20px;
    padding: 0 0 28px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}
.pillar-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gili-gold);
}
.pillar-image-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gili-blush);
    position: relative;
}
.pillar-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.pillar-item:hover .pillar-image-wrap img { transform: scale(1.06); }
.pillar-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gili-gradient-dk);
    color: var(--gili-white);
    font-family: 'Assistant', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}
.pillar-title {
    font-size: 1.25rem;
    margin: 22px 24px 10px;
    color: var(--gili-ink);
}
.pillar-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gili-muted);
    margin: 0 24px;
}

/* ======== SECTION 4: VALUES (BENTO) ======== */
.values-section {
    background-color: var(--gili-blush);
    padding: 120px 60px;
    position: relative;
}
.values-container { max-width: 1200px; margin: 0 auto; }
.values-title {
    font-size: 3.4rem;
    line-height: 1.15;
    margin: 12px 0 60px;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 22px;
}
.bento-card {
    background: var(--gili-white);
    border: 1px solid var(--gili-border);
    border-radius: 20px;
    padding: 36px 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gili-gold);
}
.bento-large {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--gili-white) 0%, var(--gili-blush) 100%);
}
.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gili-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gili-ink);
    box-shadow: var(--shadow-sm);
}
.bento-card h3 {
    font-size: 1.25rem;
    color: var(--gili-ink);
}
.bento-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gili-muted);
}

/* ======== SECTION 5: GALLERY ======== */
.gallery-section {
    background-color: var(--gili-cream);
    padding: 120px 60px;
}
.gallery-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.gallery-title {
    font-size: 3.4rem;
    line-height: 1.15;
    margin: 12px 0 16px;
}
.gallery-subtitle {
    font-size: 1.05rem;
    color: var(--gili-muted);
    margin-bottom: 50px;
}
.gallery-slider-wrap {
    position: relative;
    margin-top: 50px;
}
.gallery-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    direction: ltr;
    scrollbar-width: none;
}
.gallery-slider::-webkit-scrollbar { display: none; }
.gallery-track {
    display: flex;
    gap: 18px;
    width: max-content;
}
.gallery-slide {
    flex: 0 0 320px;
    width: 320px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--gili-border);
    background: var(--gili-blush);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-slide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gallery-slide:hover img { transform: scale(1.05); }
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gili-white);
    border: 1px solid var(--gili-border);
    color: var(--gili-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 5;
    padding: 0;
}
.gallery-arrow:hover {
    background: var(--gili-gold);
    border-color: var(--gili-gold);
    color: var(--gili-white);
    box-shadow: var(--shadow-lg);
}
.gallery-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.gallery-arrow-right { right: 4px; }
.gallery-arrow-left { left: 4px; }
@media (prefers-reduced-motion: reduce) {
    .gallery-slider { scroll-behavior: auto; }
}
html.a11y-motion .gallery-slider { scroll-behavior: auto !important; }

/* ======== SECTION 6: SERVICES ======== */
.services-section {
    background-color: var(--gili-blush);
    padding: 120px 60px;
}
.services-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.services-title {
    font-size: 3.4rem;
    line-height: 1.15;
    margin: 12px 0 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.service-card {
    background: var(--gili-white);
    border: 1px solid var(--gili-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: right;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gili-gold);
}
.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gili-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gili-gold-dk);
    border: 1px solid var(--gili-border);
}
.service-card h3 {
    font-size: 1.4rem;
    color: var(--gili-ink);
}
.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gili-muted);
}
.services-conditions {
    background: var(--gili-white);
    border-radius: 24px;
    border: 1px solid var(--gili-border);
    box-shadow: var(--shadow-md);
    padding: 50px 56px;
    max-width: 760px;
    margin: 0 auto;
    text-align: right;
}
.services-conditions h4 {
    font-size: 1.5rem;
    color: var(--gili-ink);
    margin-bottom: 20px;
}
.services-conditions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-conditions li {
    position: relative;
    padding: 10px 24px 10px 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--gili-ink);
    border-bottom: 1px dashed var(--gili-border);
}
.services-conditions li:last-child { border-bottom: none; }
.services-conditions li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--gili-gradient-dk);
    border-radius: 50%;
}
.services-conditions strong { color: var(--gili-gold-dk); font-weight: 700; }

/* ======== SECTION 7: IMPACT QUOTE ======== */
.impact-section {
    padding: 140px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(232, 213, 196, 0.94), rgba(245, 230, 224, 0.94)),
        url('./images/gallery/atmosphere-1.webp') center/cover no-repeat;
}
.impact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 166, 120, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
    pointer-events: none;
}
.impact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.impact-quote-mark {
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-size: 180px;
    line-height: 0.5;
    color: var(--gili-gold);
    opacity: 0.4;
    margin-bottom: 20px;
    font-weight: 800;
}
.impact-quote {
    font-family: 'Noto Sans Hebrew', sans-serif;
    font-size: 2rem;
    line-height: 1.5;
    color: var(--gili-ink);
    font-weight: 400;
    margin-bottom: 30px;
}
.impact-attribution {
    font-family: 'Assistant', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gili-gold-dk);
    font-weight: 700;
}

/* ======== SECTION 8: CONTACT (TEAM) ======== */
.team-section {
    position: relative;
    padding: 120px 60px;
    background-color: var(--gili-ink);
    color: var(--gili-cream);
    text-align: center;
    overflow: hidden;
}
.team-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 166, 120, 0.16) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.5;
    pointer-events: none;
}
.team-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.team-label {
    display: inline-block;
    font-family: 'Assistant', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gili-gold);
    font-weight: 700;
    margin-bottom: 30px;
}
.team-heading {
    font-size: 3.4rem;
    color: var(--gili-cream);
    line-height: 1.15;
    margin-bottom: 18px;
}
.team-accent {
    background: linear-gradient(135deg, var(--gili-gold), var(--gili-nude));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.team-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(251, 248, 244, 0.7);
    margin: 0 auto 36px;
    max-width: 520px;
}
.team-cta-row { margin-bottom: 36px; }
.team-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: var(--gili-wa);
    color: var(--gili-white);
    font-family: 'Assistant', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.30);
}
.team-btn-whatsapp:hover {
    transform: translateY(-2px);
    background: var(--gili-wa-dk);
    box-shadow: 0 0 50px rgba(37, 211, 102, 0.45);
}
.team-btn-whatsapp:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--gili-ink), 0 0 0 4px var(--gili-gold);
}

/* ===== Contact Form ===== */
.contact-form {
    background: rgba(251, 248, 244, 0.06);
    border: 1px solid rgba(201, 166, 120, 0.25);
    border-radius: 24px;
    padding: 36px;
    text-align: right;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.form-field-full { margin-bottom: 18px; }
.form-field label {
    font-family: 'Assistant', sans-serif;
    font-size: 0.85rem;
    color: var(--gili-gold);
    font-weight: 600;
    letter-spacing: 0.3px;
}
.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(251, 248, 244, 0.08);
    border: 1px solid rgba(201, 166, 120, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Assistant', sans-serif;
    font-size: 0.98rem;
    color: var(--gili-cream);
    transition: border-color 0.3s, background 0.3s;
    direction: rtl;
    width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(251, 248, 244, 0.4); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gili-gold);
    background: rgba(251, 248, 244, 0.12);
}
.form-field select { cursor: pointer; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gili-gold) 50%), linear-gradient(135deg, var(--gili-gold) 50%, transparent 50%); background-position: calc(0% + 14px) calc(50% - 2px), calc(0% + 19px) calc(50% - 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-left: 36px; }
.form-field select option { background-color: var(--gili-cream); color: var(--gili-ink); padding: 8px; font-weight: 500; }
.form-field select option:checked { background-color: var(--gili-nude); color: var(--gili-ink); }
.form-field select option:disabled, .form-field select option[value=""] { color: var(--gili-muted); }
.form-field textarea { resize: vertical; min-height: 86px; font-family: 'Assistant', sans-serif; }
.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gili-gradient-dk);
    color: var(--gili-white);
    font-family: 'Assistant', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(201, 166, 120, 0.25);
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(201, 166, 120, 0.45);
}
.form-submit:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--gili-ink), 0 0 0 4px var(--gili-gold); }
.form-hint {
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(251, 248, 244, 0.45);
    text-align: center;
}

.team-links-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.team-link-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(251, 248, 244, 0.55);
    transition: color 0.3s ease;
    text-decoration: none;
}
.team-link-item:hover { color: var(--gili-gold); }
.team-link-item svg { flex-shrink: 0; }
.team-link-divider {
    width: 1px;
    height: 16px;
    background: rgba(251, 248, 244, 0.18);
}

/* ======== FOOTER ======== */
.gili-footer-section {
    background-color: var(--gili-ink);
    color: var(--gili-cream);
    direction: rtl;
    padding: 80px 40px 0;
    border-top: 1px solid rgba(201, 166, 120, 0.12);
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    align-items: start;
}
.footer-col { display: flex; flex-direction: column; align-items: flex-start; text-align: right; }
.footer-col h4 {
    color: var(--gili-gold);
    font-family: 'Assistant', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-logo {
    height: 96px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}
.footer-desc {
    color: rgba(251, 248, 244, 0.6);
    line-height: 1.8;
    max-width: 320px;
    font-size: 0.9rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; width: 100%; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(251, 248, 244, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.9rem;
    display: block;
}
.footer-links a:hover { color: var(--gili-gold); padding-right: 5px; }
.footer-contact-item { margin-bottom: 16px; font-style: normal; }
.footer-contact-label {
    display: block;
    font-family: 'Assistant', sans-serif;
    font-size: 0.65rem;
    color: rgba(251, 248, 244, 0.4);
    margin-bottom: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-contact-value {
    color: rgba(251, 248, 244, 0.88);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-contact-value:hover { color: var(--gili-gold); }
.footer-bottom {
    border-top: 1px solid rgba(201, 166, 120, 0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(251, 248, 244, 0.3);
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-bottom-links a {
    color: rgba(251, 248, 244, 0.3);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
    font-size: 0.78rem;
}
.footer-bottom-links a:hover { color: var(--gili-gold); }

/* ======== FLOATING WHATSAPP BUTTON ======== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: var(--gili-wa);
    color: var(--gili-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9990;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--gili-wa-dk);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--gili-cream), 0 0 0 6px var(--gili-wa);
}
.wa-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--gili-wa);
    opacity: 0.4;
    animation: waRing 2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* ======== LEGAL PAGES (accessibility.html, disclaimer.html) ======== */
.legal-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gili-border);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: ltr;
}
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--gili-border);
    border-radius: 50px;
    color: var(--gili-ink);
    font-family: 'Assistant', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--gili-white);
    transition: all 0.3s ease;
}
.legal-back:hover { border-color: var(--gili-gold); background: var(--gili-blush); color: var(--gili-gold-dk); }
.legal-back svg { transition: transform 0.3s ease; }
.legal-back:hover svg { transform: translateX(-3px); }
.legal-logo-link img { height: 64px; width: auto; display: block; }

.legal-main {
    background: var(--gili-cream);
    min-height: calc(100vh - 200px);
    padding: 80px 40px 100px;
    direction: rtl;
}
.legal-container {
    max-width: 820px;
    margin: 0 auto;
    background: var(--gili-white);
    padding: 60px 70px;
    border-radius: 24px;
    border: 1px solid var(--gili-border);
    box-shadow: var(--shadow-md);
}
.legal-title {
    font-size: 3rem;
    font-family: 'Noto Sans Hebrew', sans-serif;
    line-height: 1.15;
    font-weight: 800;
    color: var(--gili-ink);
    margin: 12px 0 24px;
}
.legal-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gili-muted);
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gili-border);
}
.legal-section {
    margin-bottom: 38px;
}
.legal-section h2 {
    font-size: 1.45rem;
    color: var(--gili-ink);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gili-blush);
}
.legal-section p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gili-ink);
    margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section p strong, .legal-section li strong { color: var(--gili-gold-dk); font-weight: 700; }
.legal-section a {
    color: var(--gili-gold-dk);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}
.legal-section a:hover { color: var(--gili-ink); }
.legal-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}
.legal-list li {
    position: relative;
    padding: 8px 22px 8px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gili-ink);
}
.legal-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 17px;
    width: 7px;
    height: 7px;
    background: var(--gili-gold);
    border-radius: 50%;
}
.legal-contact-card {
    background: var(--gili-blush);
    border: 1px solid var(--gili-border);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 18px 0;
}
.legal-contact-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--gili-border);
    align-items: baseline;
}
.legal-contact-row:last-child { border-bottom: none; }
.legal-contact-label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gili-gold-dk);
    font-weight: 700;
}
.legal-contact-value {
    color: var(--gili-ink);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}
a.legal-contact-value { color: var(--gili-gold-dk); text-decoration: underline; text-underline-offset: 3px; }
a.legal-contact-value:hover { color: var(--gili-ink); }
.legal-note {
    background: var(--gili-blush);
    border-right: 4px solid var(--gili-gold);
    padding: 16px 22px;
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gili-muted);
    border-radius: 0 12px 12px 0;
}
.legal-back-btn {
    margin-top: 40px;
    padding: 14px 32px;
}
.legal-back-btn svg { transition: transform 0.3s ease; }
.legal-back-btn:hover svg { transform: translateX(-4px); }
.legal-footer { margin-top: 0; }

/* ======== ACCESSIBILITY WIDGET ======== */
.a11y-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gili-ink);
    color: var(--gili-cream);
    border: 2px solid var(--gili-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9990;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(58, 46, 38, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    padding: 0;
}
.a11y-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--gili-gold-dk);
    box-shadow: 0 10px 28px rgba(58, 46, 38, 0.4);
}
.a11y-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--gili-cream), 0 0 0 6px var(--gili-gold);
}

.a11y-panel {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 320px;
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: var(--gili-cream);
    border: 1px solid var(--gili-border);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(58, 46, 38, 0.25);
    z-index: 9991;
    direction: rtl;
    color: var(--gili-ink);
    transform-origin: bottom right;
    animation: a11yPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.a11y-panel[hidden] { display: none; }
.a11y-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--gili-border);
    background: var(--gili-blush);
    border-radius: 20px 20px 0 0;
}
.a11y-panel-head h2 {
    font-size: 1.1rem;
    color: var(--gili-ink);
    margin: 0;
    font-family: 'Noto Sans Hebrew', sans-serif;
}
.a11y-close {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--gili-ink);
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.a11y-close:hover { background: var(--gili-nude); }
.a11y-close:focus-visible {
    outline: 2px solid var(--gili-gold);
    outline-offset: 2px;
}
.a11y-panel-body { padding: 16px 20px 20px; }
.a11y-group { margin-bottom: 18px; }
.a11y-group-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gili-gold-dk);
    font-weight: 700;
    margin-bottom: 10px;
}
.a11y-row { display: flex; gap: 8px; }
.a11y-btn {
    flex: 1;
    padding: 10px 0;
    background: var(--gili-white);
    border: 1px solid var(--gili-border);
    border-radius: 10px;
    font-family: 'Assistant', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gili-ink);
    cursor: pointer;
    transition: all 0.2s;
}
.a11y-btn:hover { border-color: var(--gili-gold); background: var(--gili-blush); }
.a11y-btn.a11y-btn-mid { font-size: 0.85rem; }
.a11y-btn:focus-visible { outline: 2px solid var(--gili-gold); outline-offset: 2px; }

.a11y-toggle-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    background: var(--gili-white);
    border: 1px solid var(--gili-border);
    border-radius: 10px;
    font-family: 'Assistant', sans-serif;
    font-size: 0.92rem;
    color: var(--gili-ink);
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
    text-align: right;
}
.a11y-toggle-btn:last-child { margin-bottom: 0; }
.a11y-toggle-btn:hover { border-color: var(--gili-gold); background: var(--gili-blush); }
.a11y-toggle-btn:focus-visible { outline: 2px solid var(--gili-gold); outline-offset: 2px; }
.a11y-tb-label { font-weight: 600; }
.a11y-switch {
    position: relative;
    width: 36px;
    height: 20px;
    background: var(--gili-border);
    border-radius: 50px;
    transition: background 0.25s;
    flex-shrink: 0;
}
.a11y-switch-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: var(--gili-white);
    border-radius: 50%;
    transition: transform 0.25s, background 0.25s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.a11y-toggle-btn[aria-pressed="true"] .a11y-switch { background: var(--gili-gold-dk); }
.a11y-toggle-btn[aria-pressed="true"] .a11y-switch-dot { transform: translateX(-16px); background: var(--gili-cream); }

.a11y-reset {
    width: 100%;
    padding: 12px;
    background: var(--gili-ink);
    color: var(--gili-cream);
    border: none;
    border-radius: 10px;
    font-family: 'Assistant', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.a11y-reset:hover { background: var(--gili-gold-dk); }
.a11y-reset:focus-visible { outline: 2px solid var(--gili-gold); outline-offset: 2px; }
.a11y-statement-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 8px;
    color: var(--gili-gold-dk);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: underline;
}
.a11y-statement-link:hover { color: var(--gili-ink); }

/* ===== A11Y MODES (applied to <html>) ===== */
html.a11y-fs-1 { font-size: 110%; }
html.a11y-fs-2 { font-size: 120%; }
html.a11y-fs-3 { font-size: 135%; }
html.a11y-fs-n1 { font-size: 92%; }
html.a11y-fs-n2 { font-size: 85%; }

html.a11y-grayscale body { filter: grayscale(1); }
html.a11y-invert body { filter: invert(1) hue-rotate(180deg); }
html.a11y-grayscale.a11y-invert body { filter: invert(1) grayscale(1) hue-rotate(180deg); }

html.a11y-contrast body {
    background: #000 !important;
    color: #fff !important;
}
html.a11y-contrast a,
html.a11y-contrast h1,
html.a11y-contrast h2,
html.a11y-contrast h3,
html.a11y-contrast h4,
html.a11y-contrast .gradient-text,
html.a11y-contrast .team-accent { color: #ffd84d !important; -webkit-text-fill-color: #ffd84d !important; background: transparent !important; }
html.a11y-contrast section,
html.a11y-contrast header,
html.a11y-contrast footer,
html.a11y-contrast .pillar-item,
html.a11y-contrast .bento-card,
html.a11y-contrast .service-card,
html.a11y-contrast .gallery-item,
html.a11y-contrast .services-conditions,
html.a11y-contrast .contact-form { background: #000 !important; color: #fff !important; border-color: #ffd84d !important; }
html.a11y-contrast .hero-overlay,
html.a11y-contrast .hero-bg-img,
html.a11y-contrast .about-texture,
html.a11y-contrast .impact-section::before,
html.a11y-contrast .team-texture { display: none !important; }
html.a11y-contrast .impact-section { background: #000 !important; }

html.a11y-links a:not(.a11y-toggle):not(.a11y-close):not(.a11y-statement-link) {
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 3px !important;
    outline: 2px dashed currentColor;
    outline-offset: 2px;
}

html.a11y-readable,
html.a11y-readable body,
html.a11y-readable h1,
html.a11y-readable h2,
html.a11y-readable h3,
html.a11y-readable h4,
html.a11y-readable p,
html.a11y-readable span,
html.a11y-readable a,
html.a11y-readable button,
html.a11y-readable input,
html.a11y-readable select,
html.a11y-readable textarea,
html.a11y-readable label { font-family: Arial, "Segoe UI", "Helvetica Neue", sans-serif !important; letter-spacing: 0.02em; line-height: 1.7 !important; }

html.a11y-motion *,
html.a11y-motion *::before,
html.a11y-motion *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
}

@keyframes a11yPop {
    0% { opacity: 0; transform: scale(0.92) translateY(8px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ======== KEYFRAMES ======== */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes waRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* ======== RESPONSIVE (TABLET - 1024px) ======== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section { padding: 120px 40px 80px; }
    .hero-title { font-size: 3.8rem; }

    .about-section { padding: 100px 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-image-wrap { max-width: 420px; margin: 0 auto; aspect-ratio: 4/5; }
    .about-heading { font-size: 3rem; }

    .workshops-section { padding: 100px 40px; }
    .workshops-title, .values-title, .gallery-title, .services-title, .team-heading { font-size: 2.8rem; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }

    .values-section { padding: 100px 40px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; }

    .gallery-section { padding: 100px 0; }
    .gallery-section .gallery-container { padding: 0 40px; }
    .gallery-slide { flex: 0 0 280px; width: 280px; }

    .services-section { padding: 100px 40px; }
    .services-grid { grid-template-columns: 1fr; }

    .impact-section { padding: 110px 40px; }
    .impact-quote { font-size: 1.7rem; }

    .team-section { padding: 100px 40px; }

    .footer-container { grid-template-columns: 1fr 1fr; gap: 50px; }
    .footer-col:first-child { grid-column: 1 / span 2; }
}

/* ======== RESPONSIVE (MOBILE - 768px) ======== */
@media (max-width: 768px) {
    .nexus-header { padding: 15px 20px; }
    .header-logo img { height: 58px; }
    .nexus-header.scrolled .header-logo img { height: 50px; }
    .menu-text { display: none; }
    .nav-link { font-size: 1.9rem; }
    .menu-footer { flex-direction: column; gap: 14px; text-align: center; bottom: 30px; }

    .hero-section { padding: 110px 20px 60px; min-height: 90vh; }
    .hero-title { font-size: 2.6rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta-wrapper { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
    .btn-primary, .btn-ghost { justify-content: center; }
    .hero-label { padding: 6px 14px; }
    .label-text { font-size: 0.62rem; letter-spacing: 2px; }

    .about-section { padding: 80px 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrap { max-width: 360px; margin: 0 auto; }
    .about-heading { font-size: 2.4rem; }
    .about-text { font-size: 1rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.72rem; }

    .workshops-section { padding: 80px 20px; }
    .workshops-title { font-size: 2.2rem; }
    .pillars-grid { grid-template-columns: 1fr; gap: 20px; }

    .values-section { padding: 80px 20px; }
    .values-title { font-size: 2.2rem; margin-bottom: 40px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card { padding: 28px 24px; }
    .bento-large { grid-column: 1; }

    .gallery-section { padding: 80px 0; }
    .gallery-section .gallery-container { padding: 0 20px; }
    .gallery-title { font-size: 2.2rem; }
    .gallery-slide { flex: 0 0 230px; width: 230px; border-radius: 16px; }
    .gallery-track { gap: 12px; }
    .gallery-arrow { width: 38px; height: 38px; }
    .gallery-arrow-right { right: -2px; }
    .gallery-arrow-left { left: -2px; }

    .services-section { padding: 80px 20px; }
    .services-title { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; gap: 18px; }
    .service-card { padding: 32px 24px; }
    .services-conditions { padding: 32px 24px; }

    .impact-section { padding: 90px 20px; }
    .impact-quote { font-size: 1.4rem; }
    .impact-quote-mark { font-size: 110px; }

    .team-section { padding: 80px 20px; }
    .team-heading { font-size: 2.2rem; }
    .team-btn-whatsapp { padding: 16px 28px; font-size: 1rem; width: 100%; max-width: 320px; justify-content: center; }
    .team-links-row { flex-direction: column; gap: 14px; }
    .team-link-divider { display: none; }
    .contact-form { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 14px; }
    .form-submit { width: 100%; justify-content: center; }

    .gili-footer-section { padding: 60px 20px 0; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-col { align-items: center; text-align: center; }
    .footer-desc { margin: 0 auto; }
    .footer-links a:hover { padding-right: 0; }
    .footer-bottom { flex-direction: column; gap: 12px; }

    .whatsapp-float { width: 54px; height: 54px; bottom: 18px; left: 18px; }
    .whatsapp-float svg { width: 24px; height: 24px; }

    .a11y-toggle { width: 50px; height: 50px; bottom: 18px; right: 18px; }
    .a11y-toggle svg { width: 24px; height: 24px; }
    .a11y-panel { bottom: 80px; right: 12px; left: 12px; width: auto; max-width: none; }

    .legal-header { padding: 14px 18px; }
    .legal-back { padding: 7px 12px; font-size: 0.82rem; }
    .legal-logo-link img { height: 50px; }
    .legal-main { padding: 50px 14px 70px; }
    .legal-container { padding: 36px 22px; border-radius: 18px; }
    .legal-title { font-size: 2.1rem; }
    .legal-lead { font-size: 1rem; }
    .legal-section h2 { font-size: 1.2rem; }
    .legal-section p, .legal-list li { font-size: 0.95rem; }
    .legal-contact-row { grid-template-columns: 1fr; gap: 4px; }
    .legal-contact-card { padding: 18px 20px; }
}
