/* ============================================================
   SAUCE HUB — ABOUT PAGE  (Bold Storytelling)
   ============================================================ */

   @font-face {
    font-family: "Graphik Arabic";
    src: url("Graphik-Arabic-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Graphik Arabic";
    src: url("Graphik-Arabic-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --red:    #e4002b;
    --purple: #4d1226;
    --cream:  #fcf2df;
    --white:  #ffffff;
    --fa:     "Graphik Arabic", sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--fa);
    background: var(--purple);
    color: var(--cream);
    overflow-x: hidden;
    direction: rtl;
}

/* ══════════════════
   NAVBAR
══════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #C10427;
}
.nav-container {
    padding: 0 50px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.nav-left-group { display: flex; align-items: center; gap: 36px; z-index: 10; }
.nav-lang { display: flex; align-items: center; gap: 5px; }
.lang-link { font-size: 12px; font-weight: 700; color: white; text-decoration: none; letter-spacing: 1px; opacity: 0.85; cursor: pointer; }
.lang-link.active, .lang-link:hover { opacity: 1; }
.lang-sep { color: white; opacity: 0.6; font-size: 11px; }
.nav-socials { display: flex; align-items: center; gap: 18px; }
.social-link { display: flex; align-items: center; transition: opacity 0.2s, transform 0.2s; }
.social-link:hover { opacity: 0.8; transform: translateY(-1px); }
.social-link img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 36px; z-index: 10; }
.nav-link { font-family: var(--fa); font-size: 15px; font-weight: 500; color: white; text-decoration: none; transition: opacity 0.2s; }
.nav-link:hover { opacity: 0.8; }
.nav-right { display: flex; align-items: center; position: relative; }
.logo { height: 52px; filter: brightness(0) invert(1); display: block; position: relative; z-index: 2; }
.nav-drip { position: absolute; top: 0; right: 0; width: 55%; height: 170px; pointer-events: none; z-index: 0; object-fit: cover; object-position: right; transition: opacity 0.4s ease; }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 10; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s ease; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu { display: flex; flex-direction: column; background: #C10427; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 24px; }
.nav-mobile-menu.open { max-height: 400px; padding: 20px 24px 28px; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 4px; direction: rtl; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px; margin-bottom: 20px; }
.nav-mobile-link { font-family: var(--fa); font-size: 20px; font-weight: 600; color: white; text-decoration: none; padding: 10px 0; }
.nav-mobile-btn { display: inline-flex; align-items: center; justify-content: center; margin-top: 12px; padding: 14px 28px; background: var(--purple); color: white; text-decoration: none; border-radius: 14px; font-family: var(--fa); font-weight: 600; font-size: 16px; }
.nav-mobile-bottom { display: flex; justify-content: space-between; align-items: center; direction: rtl; }
.nav-mobile-socials { display: flex; gap: 16px; align-items: center; }

/* ══════════════════════════════════════════
   HERO — two column side by side
══════════════════════════════════════════ */
.s-hero {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
    background: var(--purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 80px 60px;
    position: relative;
    overflow: hidden;
}

.s-hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228,0,43,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.s-hero-inner {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.s-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.s-hero-tag {
    display: inline-block;
    border: 1px solid rgba(228,0,43,0.5);
    color: var(--red);
    font-family: var(--fa);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.s-hero-title {
    font-family: var(--fa);
    font-weight: 600;
    font-size: clamp(44px, 6vw, 80px);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 28px;
    text-align: right;
}

.s-hero-title .t-red { color: var(--red); }
.s-hero-title .t-dim { opacity: 0.35; }

.s-hero-sub {
    font-family: var(--fa);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(252,242,223,0.55);
    text-align: right;
}

.s-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-hero-kitchen {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
    animation: floatKitchen 5s ease-in-out infinite;
}

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

/* scroll cue */
.s-scroll-cue {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 1; opacity: 0.4;
    animation: scrollBounce 2s ease-in-out infinite;
}
.s-scroll-cue span { font-family: var(--fa); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--cream); }
.s-scroll-cue svg { width: 20px; height: 20px; stroke: var(--cream); }
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════
   CHAPTER SYSTEM  — two-column on desktop
══════════════════════════════════════════ */
.s-chapter {
    padding: 120px 0;
    position: relative;
}

.s-chapter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
}

/* chapter number + label — spans full width above grid */
.s-ch-meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
    direction: rtl;
}
.s-ch-num {
    font-family: var(--fa);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0;
    color: var(--red);
    text-transform: none;
    white-space: nowrap;
}
.s-ch-line {
    flex: 1;
    height: 1px;
    background: rgba(228,0,43,0.25);
}

/* LEFT column — sticky title */
.s-ch-left {
    position: sticky;
    top: 120px;
}

/* big chapter title */
.s-ch-title {
    font-family: var(--fa);
    font-weight: 600;
    font-size: clamp(36px, 4vw, 60px);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 24px;
}
.s-ch-title .t-red { color: var(--red); }
.s-ch-title .t-dim  { opacity: 0.3; }

/* intro body text under title */
.s-ch-intro {
    font-family: var(--fa);
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    color: rgba(252,242,223,0.5);
}

/* RIGHT column — body + points */
.s-ch-right {
    padding-top: 8px;
}

/* body text */
.s-ch-body {
    font-family: var(--fa);
    font-weight: 500;
    font-size: 17px;
    line-height: 2.1;
    color: rgba(252,242,223,0.6);
    margin-bottom: 20px;
}
.s-ch-body em { font-style: normal; color: var(--cream); font-weight: 600; }

/* ── POINTS LIST ── */
.s-points {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.s-point {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(252,242,223,0.07);
    direction: rtl;
    transition: background 0.2s;
}
.s-point:first-child { border-top: 1px solid rgba(252,242,223,0.07); }

.s-point-num {
    width: 52px; height: 52px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.s-point-num img {
    width: 48px;
    height: 48px;
    display: block;
    flex-shrink: 0;
}
/* numbered points (chapters 2 & 4) */
.s-point-num-text {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(228,0,43,0.12);
    border: 1px solid rgba(228,0,43,0.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: var(--fa);
    font-weight: 600;
    font-size: 13px;
    color: var(--red);
    letter-spacing: 0;
}

.s-point-content {
    flex: 1;
}

.s-point-title {
    font-family: var(--fa);
    font-weight: 600;
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 6px;
}

.s-point-desc {
    font-family: var(--fa);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(252,242,223,0.5);
}

/* ── IMAGE BLOCK inside chapter ── */
.s-ch-image {
    margin: 40px 0 0;
}
.s-ch-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.4));
    transition: transform 0.4s ease;
}
.s-ch-image img:hover { transform: scale(1.02); }
.s-ch-image-caption {
    text-align: center;
    margin-top: 14px;
    font-family: var(--fa);
    font-size: 13px;
    color: rgba(252,242,223,0.3);
    letter-spacing: 0;
}

/* ══════════════════════════════════════════
   DIVIDER — red full-width stripe
══════════════════════════════════════════ */
.s-divider {
    background: var(--red);
    padding: 50px 40px;
    overflow: hidden;
}

.s-divider-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.s-divider-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 120px;
    text-align: center;
}
.s-divider-num {
    font-family: var(--fa);
    font-weight: 600;
    font-size: clamp(36px, 5vw, 60px);
    color: var(--cream);
    line-height: 1;
}
.s-divider-lbl {
    font-family: var(--fa);
    font-weight: 500;
    font-size: 13px;
    color: rgba(252,242,223,0.65);
}
.s-divider-sep {
    width: 1px; height: 60px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   MARQUEE — pure CSS infinite, no JS
══════════════════════════════════════════ */
.s-marquee {
    background: rgba(0,0,0,0.15);
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.s-marquee-track {
    display: flex;
    width: max-content;
}

.s-marquee-row {
    display: flex;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
    flex-shrink: 0;
    animation: marqueeScroll 40s linear infinite;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.s-marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.s-marquee-item img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(228,0,43,0.35);
    flex-shrink: 0;
}
.s-marquee-item span {
    font-family: var(--fa);
    font-weight: 600;
    font-size: 16px;
    color: rgba(252,242,223,0.7);
    white-space: nowrap;
}

/* ── IMAGE inside left column ── */
.s-ch-image-left {
    margin-top: 28px;
}
.s-ch-image-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.4));
}

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.s-cta {
    padding: 100px 40px;
    background: var(--purple);
}

.s-cta-inner {
    max-width: 860px;
    margin: 0 auto;
    background: var(--red);
    border-radius: 28px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.s-cta-inner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(77,18,38,0.35);
    border-radius: 50%;
    bottom: -180px; right: -100px;
    pointer-events: none;
}

.s-cta-label {
    font-family: var(--fa); font-weight: 600; font-size: 13px;
    letter-spacing: 0; text-transform: none;
    color: rgba(252,242,223,0.45);
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.s-cta-title {
    font-family: var(--fa); font-weight: 600;
    font-size: clamp(36px, 5vw, 64px);
    color: white; line-height: 1.15; margin-bottom: 12px;
    position: relative; z-index: 1;
}
.s-cta-sub {
    font-family: var(--fa); font-weight: 500; font-size: 16px;
    color: rgba(255,255,255,0.6); margin-bottom: 44px;
    position: relative; z-index: 1;
}
.s-cta-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 56px;
    background: var(--cream); color: var(--red);
    text-decoration: none; border-radius: 50px;
    font-family: var(--fa); font-weight: 600; font-size: 18px;
    transition: all 0.3s ease;
    position: relative; z-index: 1;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.s-cta-btn:hover { background: white; transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.3); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.s-footer {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 40px 30px;
}
.s-footer-inner {
    max-width: 860px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 2fr;
    gap: 4rem; margin-bottom: 40px;
}
.s-footer-logo { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.8; }
.s-footer-brand p { font-family: var(--fa); font-size: 14px; color: rgba(252,242,223,0.4); line-height: 1.9; }
.s-footer-socials { display: flex; gap: 14px; margin-top: 18px; }
.s-footer-socials .social-link img { width: 18px; height: 18px; filter: brightness(0) invert(1); opacity: 0.4; transition: opacity 0.2s; }
.s-footer-socials .social-link:hover img { opacity: 0.9; }
.s-footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.s-footer-col h4 { font-family: var(--fa); font-weight: 600; font-size: 13px; color: var(--red); text-transform: none; letter-spacing: 0; margin-bottom: 16px; }
.s-footer-col a { display: block; font-family: var(--fa); font-size: 14px; color: rgba(252,242,223,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; direction: rtl; }
.s-footer-col a:hover { color: var(--cream); }
.s-footer-bottom { max-width: 860px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; font-family: var(--fa); font-size: 13px; color: rgba(252,242,223,0.2); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   MOBILE
══════════════════════════════════════════ */
/* stop floating animation on mobile — major lag source */
@media (max-width: 768px) {
    .s-hero-kitchen { animation: none !important; }
}

@media (max-width: 768px) {
    .nav-left-group { display: none; }
    .nav-container  { height: 64px; padding: 0 20px; flex-direction: row-reverse; }
    .logo           { height: 36px; }
    .nav-drip       { width: 100%; height: 150px; top: 0; left: 0; right: auto; z-index: -1; }
    .nav-hamburger  { display: flex; }

    .s-hero         { margin-top: 64px; padding: 50px 24px 80px; min-height: auto; }
    .s-hero-inner   { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .s-hero-text    { align-items: center; }
    .s-hero-title   { font-size: clamp(42px, 10vw, 64px); text-align: center; }
    .s-hero-sub     { text-align: center; font-size: 16px; }
    .s-hero-kitchen { max-width: 100%; }

    /* fix cut labels — already handled globally above */
    .s-ch-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    .s-ch-line { min-width: 40px; }

    .s-chapter      { padding: 70px 0; }
    .s-chapter-inner {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .s-ch-left      { position: static; }
    .s-ch-title     { font-size: clamp(34px, 8vw, 52px); }
    .s-ch-body      { font-size: 16px; }

    .s-point        { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; }
    .s-point-num    { width: 44px; height: 44px; border-radius: 12px; font-size: 12px; }
    .s-point-num img { width: 40px; height: 40px; }
    .s-point-title  { font-size: 17px; }

    .s-divider      { padding: 40px 24px; }
    .s-divider-inner { gap: 16px; }
    .s-divider-sep  { display: none; }
    .s-divider-stat { flex: 0 0 40%; }

    .s-cta          { padding: 60px 24px; }
    .s-cta-inner    { padding: 48px 24px; }
    .s-cta-title    { font-size: 34px; }

    .s-footer       { padding: 50px 24px 24px; }
    .s-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .s-footer-links { grid-template-columns: 1fr; }

    .s-ch-image     { margin: 40px auto; }
    .s-ch-image img { border-radius: 16px; }
}