/* =====================================================
   LAZORD CERAMICS — Premium RTL Stylesheet
   ===================================================== */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Design Tokens ── */
:root {
    /* Palette */
    --clr-white:      #FFFFFF;
    --clr-off-white:  #F8F5F1;
    --clr-light:      #EDE8E2;
    --clr-stone:      #D5C9BA;
    --clr-warm-mid:   #A8998A;
    --clr-charcoal:   #3A3530;
    --clr-dark:       #1A1714;
    --clr-accent:     #B8956A;
    --clr-accent-dk:  #8F7048;

    /* Typography */
    --ff:             'IBM Plex Sans Arabic', 'Segoe UI', system-ui, sans-serif;
    --ff-en:          'Readex Pro', system-ui, sans-serif;

    /* Spacing scale */
    --sp-xs:  8px;
    --sp-sm:  16px;
    --sp-md:  32px;
    --sp-lg:  64px;
    --sp-xl:  100px;

    /* Radius */
    --r-sm:   4px;
    --r-md:   8px;
    --r-lg:   16px;

    /* Shadows */
    --sh-sm:  0 1px 8px rgba(0,0,0,0.05);
    --sh-md:  0 4px 20px rgba(0,0,0,0.07);
    --sh-lg:  0 10px 36px rgba(0,0,0,0.09);
    --sh-xl:  0 18px 48px rgba(0,0,0,0.11);

    /* Transitions */
    --tr:     0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --tr-sl:  0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Base ── */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family:           var(--ff);
    color:                 var(--clr-dark);
    background:            var(--clr-white);
    direction:             rtl;
    text-align:            right;
    line-height:           1.7;
    overflow-x:            hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 3px;
}

a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Container ── */
.container {
    max-width: 1240px;
    margin:    0 auto;
    padding:   0 40px;
}

/* ─────────────────────────────────────────
   UTILITY: Section Base
───────────────────────────────────────── */
.section { padding: var(--sp-xl) 0; }

.section-header {
    text-align:     center;
    margin-bottom:  var(--sp-lg);
}

.section-label {
    display:        inline-block;
    font-size:      11px;
    font-weight:    600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color:          var(--clr-accent);
    margin-bottom:  12px;
}

.section-label::before { content: '— '; opacity: .5; }
.section-label::after  { content: ' —'; opacity: .5; }

.section-label.light { color: rgba(255,255,255,0.65); }
.section-label.light::before,
.section-label.light::after { color: rgba(255,255,255,0.35); }

.section-title {
    font-size:      clamp(30px, 5vw, 50px);
    font-weight:    700;
    color:          var(--clr-dark);
    line-height:    1.18;
    letter-spacing: -0.4px;
}

.section-intro {
    font-size:   17px;
    color:       var(--clr-warm-mid);
    max-width:   680px;
    margin:      18px auto 0;
    line-height: 1.85;
}

/* ─────────────────────────────────────────
   UTILITY: Scroll Animations
───────────────────────────────────────── */
.fade-up {
    opacity:   1;
    transform: translateY(44px);
    transition: opacity .75s ease, transform .75s ease;
}

.fade-up.visible {
    opacity:   1;
    transform: translateY(0);
}

/* Stagger siblings */
.about-editorial.fade-up:nth-child(2),
.why-editorial .fade-up:nth-child(2),
.collection-grid .fade-up:nth-child(2) { transition-delay: 0.12s; }
.collection-grid .fade-up:nth-child(3) { transition-delay: 0.18s; }
.collection-grid .fade-up:nth-child(4) { transition-delay: 0.24s; }

/* ─────────────────────────────────────────
   UTILITY: Buttons
───────────────────────────────────────── */
.btn {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    gap:             6px;
    padding:         13px 34px;
    font-family:     var(--ff);
    font-size:       15px;
    font-weight:     600;
    border-radius:   var(--r-sm);
    border:          2px solid transparent;
    cursor:          pointer;
    transition:      var(--tr);
    white-space:     nowrap;
    letter-spacing:  0.3px;
}

.btn-primary {
    background:   var(--clr-accent);
    color:        var(--clr-white);
    border-color: var(--clr-accent);
}
.btn-primary:hover {
    background:   var(--clr-accent-dk);
    border-color: var(--clr-accent-dk);
    transform:    translateY(-2px);
    box-shadow:   0 10px 28px rgba(201,168,112,.35);
}

.btn-outline {
    background:   transparent;
    color:        var(--clr-white);
    border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
    background:   rgba(255,255,255,0.1);
    border-color: var(--clr-white);
    transform:    translateY(-2px);
}

.btn-white {
    background:   var(--clr-white);
    color:        var(--clr-dark);
    border-color: var(--clr-white);
}
.btn-white:hover {
    background: var(--clr-off-white);
    transform:  translateY(-2px);
    box-shadow: var(--sh-lg);
}

.btn-outline-white {
    background:   transparent;
    color:        var(--clr-white);
    border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
    background:   rgba(255,255,255,0.1);
    border-color: var(--clr-white);
    transform:    translateY(-2px);
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.site-header {
    position:   fixed;
    top:        0;
    inset-inline: 0;
    z-index:    1000;
    transition: background var(--tr), box-shadow var(--tr), padding var(--tr);
}

.site-header.is-transparent {
    background: transparent;
}

.site-header.is-solid {
    background:              rgba(255, 255, 255, 0.97);
    backdrop-filter:         blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:              0 1px 28px rgba(0, 0, 0, 0.07);
}

.header-inner {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    height:          76px;
}

/* Brand */
.brand {
    display:     flex;
    align-items: center;
    gap:         10px;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-logo {
    height:      62px;
    width:       auto;
    max-width:   44px;
    object-fit:  contain;
    display:     block;
    flex-shrink: 0;
}

.brand-text {
    position: absolute;
    width:    1px;
    height:   1px;
    padding:  0;
    margin:   -1px;
    overflow: hidden;
    clip:     rect(0, 0, 0, 0);
    border:   0;
}

.brand-name {
    font-size:      20px;
    font-weight:    800;
    color:          var(--clr-dark);
    line-height:    1.15;
    letter-spacing: -0.2px;
    transition:     color var(--tr);
}

.brand-sub {
    font-size:      10.5px;
    font-weight:    400;
    letter-spacing: 1.2px;
    color:          var(--clr-warm-mid);
    transition:     color var(--tr);
}

.is-transparent .brand-name  { color: var(--clr-white); }
.is-transparent .brand-sub   { color: rgba(255,255,255,.65); }

.is-solid .brand-logo {
    filter: invert(1);
}

/* Desktop nav */
.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
    display:     flex;
    align-items: center;
    gap:         2px;
}

.nav-link {
    position:       relative;
    font-size:      14px;
    font-weight:    500;
    padding:        8px 14px;
    border-radius:  var(--r-sm);
    color:          var(--clr-charcoal);
    transition:     color var(--tr), background var(--tr);
}

.nav-link::after {
    content:          '';
    position:         absolute;
    bottom:           5px;
    inset-inline:     14px;
    height:           1.5px;
    background:       var(--clr-accent);
    transform:        scaleX(0);
    transform-origin: right;
    transition:       transform var(--tr);
}

.nav-link:hover       { color: var(--clr-dark); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }

.is-transparent .nav-link { color: rgba(255,255,255,.88); }
.is-transparent .nav-link:hover { color: var(--clr-white); }

/* CTA nav pill */
.contact-nav-btn {
    background:   var(--clr-accent);
    color:        var(--clr-white) !important;
    padding:      9px 20px;
    border-radius: var(--r-md);
    margin-right: 4px;
    font-weight:  600;
}
.contact-nav-btn:hover { background: var(--clr-accent-dk); }
.contact-nav-btn::after { display: none; }

.is-transparent .contact-nav-btn { background: rgba(201,168,112,.85); }

/* Hamburger */
.hamburger {
    display:        none;
    flex-direction: column;
    gap:            5px;
    background:     none;
    border:         none;
    cursor:         pointer;
    padding:        8px;
    border-radius:  var(--r-sm);
    flex-shrink:    0;
    transition:     var(--tr);
}

.hamburger span {
    display:        block;
    width:          24px;
    height:         2px;
    background:     var(--clr-dark);
    border-radius:  2px;
    transition:     var(--tr);
}

.is-transparent .hamburger span { background: var(--clr-white); }

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position:   absolute;
    top:        100%;
    inset-inline: 0;
    background: var(--clr-white);
    box-shadow: var(--sh-lg);
    max-height: 0;
    overflow:   hidden;
    transition: max-height .42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.is-open { max-height: 440px; }

.mobile-nav-list {
    padding:        20px 28px 28px;
    display:        flex;
    flex-direction: column;
    gap:            2px;
}

.mobile-nav-link {
    display:        block;
    font-size:      17px;
    font-weight:    500;
    color:          var(--clr-dark);
    padding:        13px 16px;
    border-radius:  var(--r-sm);
    border-bottom:  1px solid var(--clr-light);
    transition:     background var(--tr), color var(--tr);
}

.mobile-nav-link:hover {
    background: var(--clr-off-white);
    color:      var(--clr-accent);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
    position:   relative;
    height:     100svh;
    min-height: 680px;
    max-height: 1080px;
    display:    flex;
    align-items: center;
    overflow:   hidden;
}

.hero-bg {
    position: absolute;
    inset:    0;
    z-index:  0;
}

.hero-img {
    width:           100%;
    height:          100%;
    object-fit:      cover;
    object-position: center 35%;
    transform:       scale(1.04);
    animation:       heroZoom 18s ease-in-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.00); }
}

.hero-overlay {
    position: absolute;
    inset:    0;
    background: linear-gradient(
        115deg,
        rgba(18,14,11,.82) 0%,
        rgba(18,14,11,.58) 48%,
        rgba(18,14,11,.24) 100%
    );
}

.hero-content {
    position:   relative;
    z-index:    2;
    padding-top: 80px;
}

.hero-intro {
    display:     flex;
    align-items: center;
    gap:         clamp(20px, 3vw, 36px);
    max-width:   920px;
}

.hero-logo {
    height:      clamp(110px, 14vw, 150px);
    width:       auto;
    max-width:   clamp(72px, 9vw, 110px);
    object-fit:  contain;
    flex-shrink: 0;
    opacity:     0;
    filter:      drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
    animation:   heroFadeUp .8s ease .15s forwards;
}

.hero-text { max-width: 720px; min-width: 0; }

/* Hero animations */
.hero-eyebrow,
.hero-title,
.hero-subtitle,
.hero-actions { opacity: 0; }

.hero-eyebrow  { animation: heroFadeUp .8s ease .3s forwards; }
.hero-title    { animation: heroFadeUp .8s ease .5s forwards; }
.hero-subtitle { animation: heroFadeUp .8s ease .72s forwards; }
.hero-actions  { animation: heroFadeUp .8s ease .95s forwards; }

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.hero-eyebrow {
    font-size:      11px;
    font-weight:    600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color:          var(--clr-accent);
    margin-bottom:  18px;
}

.hero-title {
    font-size:      clamp(32px, 5.8vw, 58px);
    font-weight:    700;
    color:          var(--clr-white);
    line-height:    1.14;
    margin-bottom:  22px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size:   clamp(15px, 1.8vw, 18px);
    color:       rgba(255,255,255,.78);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width:   560px;
}

.hero-actions {
    display:   flex;
    gap:       16px;
    flex-wrap: wrap;
}

/* Scroll cue */
.hero-scroll-cue {
    position:  absolute;
    bottom:    36px;
    left:      50%;
    transform: translateX(-50%);
    z-index:   2;
    animation: fadeInDelay 1s ease 1.4s both;
}

@keyframes fadeInDelay {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.scroll-line {
    width:      1px;
    height:     56px;
    background: linear-gradient(to bottom, rgba(255,255,255,.55), transparent);
    margin:     0 auto;
    animation:  scrollPulse 2.2s ease infinite;
}

@keyframes scrollPulse {
    0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
    45%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
    55%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-section { background: var(--clr-off-white); }

.about-editorial {
    display:               grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap:                   72px;
    align-items:           center;
}

.about-editorial-media {
    position: relative;
    min-height: 560px;
}

.about-figure-main {
    margin: 0;
    height: 520px;
    overflow: hidden;
}

.about-figure-main img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    transition: transform .9s ease;
}

.about-figure-main:hover img { transform: scale(1.03); }

.about-figure-accent {
    position:   absolute;
    bottom:     0;
    inset-inline-start: -28px;
    width:      46%;
    margin:     0;
    border:     6px solid var(--clr-white);
    box-shadow: var(--sh-lg);
    overflow:   hidden;
}

.about-figure-accent img {
    width:      100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .9s ease;
}

.about-editorial-content { max-width: 560px; }

.about-badge {
    display:        inline-block;
    font-size:      11px;
    font-weight:    600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color:          var(--clr-accent);
    border:         1px solid var(--clr-accent);
    padding:        6px 18px;
    border-radius:  var(--r-sm);
    margin-bottom:  24px;
}

.about-text {
    font-size:     16px;
    color:         var(--clr-warm-mid);
    line-height:   1.9;
    margin-bottom: 18px;
}

.about-highlights {
    display:        flex;
    flex-direction: column;
    gap:            14px;
    margin-top:     34px;
    padding-top:    28px;
    border-top:     1px solid var(--clr-light);
}

.about-highlight {
    display:         flex;
    align-items:     baseline;
    justify-content: space-between;
    gap:             16px;
    padding-bottom:  14px;
    border-bottom:   1px solid rgba(0,0,0,.04);
}

.about-highlight-label {
    font-size:      13px;
    font-weight:    700;
    letter-spacing: 1px;
    color:          var(--clr-accent-dk);
}

.about-highlight-text {
    font-size: 14px;
    color:     var(--clr-warm-mid);
}

/* ─────────────────────────────────────────
   CINEMA BANDS
───────────────────────────────────────── */
.cinema-band {
    position:   relative;
    min-height: 340px;
    max-height: 520px;
    overflow:   hidden;
}

.cinema-band img {
    width:           100%;
    height:          100%;
    min-height:      340px;
    object-fit:      cover;
    object-position: center;
}

.cinema-band-overlay {
    position: absolute;
    inset:    0;
    background: linear-gradient(to top, rgba(18,14,11,.62), rgba(18,14,11,.12));
}

.cinema-band-caption,
.cinema-band-content {
    position:  absolute;
    inset-inline: 40px;
    bottom:    36px;
    z-index:   2;
    color:     var(--clr-white);
}

.cinema-band-caption {
    font-size:   clamp(18px, 2.5vw, 28px);
    font-weight: 600;
    max-width:   640px;
    line-height: 1.35;
}

.cinema-band-content h3 {
    font-size:     clamp(22px, 3vw, 34px);
    font-weight:   700;
    margin-bottom: 8px;
}

.cinema-band-content p {
    font-size: 15px;
    color:     rgba(255,255,255,.78);
}

.cinema-band--inset {
    margin-top: 56px;
}

/* ─────────────────────────────────────────
   COLLECTIONS
───────────────────────────────────────── */
.collections-section {
    background: var(--clr-white);
    padding-bottom: var(--sp-xl);
}

.collection-rows {
    display:        flex;
    flex-direction: column;
    gap:            0;
    margin-top:     48px;
}

/* Showcase — full-width cinematic cards with text overlay */
.collection-showcase {
    display:        flex;
    flex-direction: column;
    gap:            6px;
    margin-top:     48px;
    width:          100%;
}

.showcase-card {
    position:       relative;
    display:        block;
    width:          100%;
    min-height:     clamp(320px, 52vh, 620px);
    padding:        0;
    border:         none;
    background:     var(--clr-dark);
    cursor:         pointer;
    text-align:     inherit;
    font-family:    inherit;
    overflow:       hidden;
    isolation:      isolate;
}

.showcase-card-img {
    position:   absolute;
    inset:      0;
    width:      100%;
    height:     100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.1s ease;
}

.showcase-card:hover .showcase-card-img {
    transform: scale(1.03);
}

.showcase-card-shade {
    position:   absolute;
    inset:      0;
    background: linear-gradient(
        105deg,
        rgba(10,8,6,.72) 0%,
        rgba(10,8,6,.38) 42%,
        rgba(10,8,6,.12) 100%
    );
    transition: background var(--tr);
    pointer-events: none;
}

.showcase-card:hover .showcase-card-shade {
    background: linear-gradient(
        105deg,
        rgba(10,8,6,.78) 0%,
        rgba(10,8,6,.45) 45%,
        rgba(10,8,6,.18) 100%
    );
}

.showcase-card-content {
    position:       absolute;
    inset-inline:   clamp(24px, 6vw, 80px);
    bottom:         clamp(28px, 5vh, 56px);
    z-index:        2;
    display:        flex;
    flex-direction: column;
    align-items:    flex-start;
    gap:            10px;
    max-width:      min(560px, 88%);
    text-align:     start;
}

.showcase-card-title {
    font-size:      clamp(28px, 4.5vw, 46px);
    font-weight:    700;
    color:          var(--clr-white);
    line-height:    1.15;
    letter-spacing: -0.4px;
    text-shadow:    0 2px 24px rgba(0,0,0,.35);
}

.showcase-card-action {
    font-size:      clamp(14px, 1.6vw, 16px);
    font-weight:    500;
    color:          rgba(255,255,255,.82);
    line-height:    1.5;
    text-shadow:    0 1px 12px rgba(0,0,0,.4);
}

.showcase-card-action::after {
    content:     ' ←';
    color:       var(--clr-accent);
    font-weight: 600;
}

html.lang-en .showcase-card-action::after {
    content: ' →';
}

.collection-row {
    display:               grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap:                   0;
    align-items:           stretch;
    min-height:            420px;
}

.collection-row.is-reverse { direction: ltr; }
.collection-row.is-reverse .collection-row-content { direction: rtl; }

.collection-row-media {
    overflow: hidden;
    min-height: 360px;
}

.collection-row-media img {
    width:      100%;
    height:     100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform .85s ease;
}

.collection-row:hover .collection-row-media img { transform: scale(1.03); }

.collection-row-content {
    display:         flex;
    flex-direction:  column;
    justify-content: center;
    padding:         56px 64px;
    background:      var(--clr-off-white);
    border-top:      1px solid var(--clr-light);
}

.collection-index {
    font-size:      12px;
    font-weight:    600;
    letter-spacing: 2px;
    color:          var(--clr-accent);
    margin-bottom:  16px;
}

.collection-row-content h3 {
    font-size:     clamp(24px, 3vw, 34px);
    font-weight:   700;
    color:         var(--clr-dark);
    margin-bottom: 12px;
    line-height:   1.25;
}

.collection-row-content p {
    font-size:   16px;
    color:       var(--clr-warm-mid);
    line-height: 1.85;
    max-width:   420px;
}

.collection-grid {
    display:               grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:                   24px;
    margin-top:            72px;
}

.collection-card {
    display:        flex;
    flex-direction: column;
    background:     var(--clr-off-white);
    border:         1px solid var(--clr-light);
    overflow:       hidden;
    transition:     border-color var(--tr), transform var(--tr);
}

.collection-card:hover {
    border-color: rgba(184,149,106,.35);
    transform:    translateY(-3px);
}

.collection-card-media {
    aspect-ratio: 16 / 10;
    overflow:     hidden;
}

.collection-card-media img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    transition: transform .85s ease;
}

.collection-card:hover .collection-card-media img { transform: scale(1.04); }

.collection-card-body {
    padding: 24px 28px 28px;
}

.collection-card-body h3 {
    font-size:     20px;
    font-weight:   700;
    margin-bottom: 8px;
    color:         var(--clr-dark);
}

.collection-card-body p {
    font-size:   14px;
    color:       var(--clr-warm-mid);
    line-height: 1.75;
}

/* ─────────────────────────────────────────
   PARTNERSHIP
───────────────────────────────────────── */
.partnership-section { background: var(--clr-off-white); }

.partnership-layout {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   72px;
    align-items:           center;
}

.section-title--left { text-align: start; }

.partnership-text {
    font-size:   17px;
    color:       var(--clr-warm-mid);
    line-height: 1.9;
    max-width:   520px;
    margin-top:  18px;
}

.partnership-media {
    margin: 0;
    overflow: hidden;
    min-height: 360px;
}

.partnership-media img {
    width:      100%;
    height:     100%;
    min-height: 360px;
    object-fit: cover;
}

/* ─────────────────────────────────────────
   WHY LAZORD
───────────────────────────────────────── */
.why-section { background: var(--clr-white); }

.why-editorial {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   72px;
    align-items:           start;
}

.why-editorial-media {
    margin:     0;
    overflow:   hidden;
    min-height: 520px;
}

.why-editorial-media img {
    width:      100%;
    height:     100%;
    min-height: 520px;
    object-fit: cover;
}

.why-list {
    list-style: none;
    counter-reset: why-counter;
    display:        flex;
    flex-direction: column;
    gap:            0;
    border-top:     1px solid var(--clr-light);
}

.why-list li {
    counter-increment: why-counter;
    position:          relative;
    padding-block:     22px;
    padding-inline-start: 56px;
    padding-inline-end: 0;
    border-bottom:     1px solid var(--clr-light);
    font-size:         17px;
    font-weight:       500;
    color:             var(--clr-charcoal);
    line-height:       1.6;
}

.why-list li::before {
    content:        counter(why-counter, decimal-leading-zero);
    position:       absolute;
    inset-inline-start: 0;
    top:            22px;
    font-size:      13px;
    font-weight:    700;
    letter-spacing: 1px;
    color:          var(--clr-accent);
}

/* ─────────────────────────────────────────
   NEWS
───────────────────────────────────────── */
.news-section { background: var(--clr-off-white); }

.news-feature {
    display:               grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap:                   48px;
    align-items:           start;
}

.news-feature-copy { max-width: 560px; }

.news-gallery {
    display:        flex;
    flex-direction: column;
    gap:            12px;
}

.news-gallery button {
    border:     none;
    padding:    0;
    background: none;
    cursor:     pointer;
    overflow:   hidden;
    display:    block;
    width:      100%;
}

.news-gallery-lead {
    aspect-ratio: 16 / 11;
}

.news-gallery-lead img,
.news-gallery-support button img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    transition: transform .75s ease;
}

.news-gallery button:hover img { transform: scale(1.03); }

.news-gallery-support {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:     12px;
}

.news-gallery-support button { aspect-ratio: 4 / 3; }

.news-meta {
    display:       flex;
    align-items:   center;
    gap:           10px;
    margin-bottom: 14px;
}

.news-date, .news-sep, .news-cat {
    font-size:      12px;
    font-weight:    500;
    letter-spacing: .8px;
    text-transform: uppercase;
    color:          var(--clr-stone);
}

.news-cat { color: var(--clr-accent); }

.news-featured-title {
    font-size:     clamp(22px, 3vw, 30px);
    font-weight:   700;
    color:         var(--clr-dark);
    line-height:   1.35;
    margin-bottom: 14px;
}

.news-featured-text {
    font-size:     15px;
    color:         var(--clr-warm-mid);
    line-height:   1.88;
    margin-bottom: 24px;
}

.news-location {
    display:     flex;
    align-items: center;
    gap:         8px;
    font-size:   13px;
    color:       var(--clr-stone);
    padding-top: 20px;
    border-top:  1px solid var(--clr-light);
}

.news-location svg {
    width:       14px;
    height:      14px;
    color:       var(--clr-accent);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-section {
    position: relative;
    padding:  120px 0;
    overflow: hidden;
}

.contact-bg-wrap {
    position: absolute;
    inset:    0;
    z-index:  0;
}

.contact-bg-img {
    width:           100%;
    height:          100%;
    object-fit:      cover;
    object-position: center;
}

.contact-overlay {
    position:   absolute;
    inset:      0;
    background: linear-gradient(130deg, rgba(12,9,6,.88) 0%, rgba(20,14,8,.76) 100%);
}

.contact-inner {
    position:   relative;
    z-index:    2;
}

.contact-content { direction: rtl; }

.contact-header {
    text-align:     center;
    margin-bottom:  56px;
}

.contact-title {
    font-size:      clamp(28px, 5vw, 48px);
    font-weight:    700;
    color:          var(--clr-white);
    line-height:    1.18;
    margin-bottom:  16px;
    letter-spacing: -0.4px;
}

.contact-intro {
    font-size:   16px;
    color:       rgba(255,255,255,.68);
    max-width:   540px;
    margin:      0 auto;
    line-height: 1.88;
}

/* Contact cards */
.contact-cards {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   20px;
    max-width:             740px;
    margin:                0 auto 48px;
}

.contact-card {
    display:         flex;
    align-items:     flex-start;
    gap:             18px;
    padding:         28px 30px;
    background:      rgba(255,255,255,.07);
    border:          1px solid rgba(255,255,255,.1);
    border-radius:   var(--r-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    direction:       rtl;
    transition:      background var(--tr), border-color var(--tr);
}

.contact-card:hover {
    background:   rgba(255,255,255,.11);
    border-color: rgba(201,168,112,.28);
}

.contact-card-icon {
    width:      34px;
    height:     34px;
    color:      var(--clr-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card-icon svg { width: 100%; height: 100%; }

.contact-card-text h4 {
    font-size:     12px;
    font-weight:   500;
    letter-spacing: .6px;
    text-transform: uppercase;
    color:         rgba(255,255,255,.55);
    margin-bottom: 7px;
}

.contact-card-text p {
    font-size:   16px;
    font-weight: 600;
    color:       var(--clr-white);
    line-height: 1.55;
}

.contact-phone {
    font-size:      22px !important;
    font-weight:    700 !important;
    letter-spacing: 1px;
    direction:      ltr;
    display:        inline-block;
    text-align:     left;
}

.contact-phone a {
    color: inherit;
    transition: color var(--tr);
}

.contact-phone a:hover { color: var(--clr-accent); }

.btn-icon { margin-inline-start: 8px; }

.contact-actions {
    display:         flex;
    gap:             16px;
    justify-content: center;
    flex-wrap:       wrap;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
    background: #111010;
    color:      rgba(255,255,255,.55);
    padding:    80px 0 0;
}

.footer-grid {
    display:               grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap:                   64px;
    padding-bottom:        56px;
    border-bottom:         1px solid rgba(255,255,255,.07);
    direction:             rtl;
}

.footer-logo {
    display:        flex;
    flex-direction: column;
    gap:            5px;
    margin-bottom:  18px;
}

.footer-brand-ar {
    font-size:      22px;
    font-weight:    700;
    color:          var(--clr-white);
    line-height:    1.15;
    display:        block;
}

.footer-brand-en {
    font-size:      11px;
    letter-spacing: 1px;
    color:          var(--clr-accent);
    display:        block;
}

.footer-tagline {
    font-size:     15px;
    color:         rgba(255,255,255,.65);
    margin-bottom: 10px;
    font-weight:   500;
}

.footer-desc {
    font-size:   13px;
    color:       rgba(255,255,255,.35);
    line-height: 1.6;
}

.footer-col-title {
    font-size:      11px;
    font-weight:    600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color:          rgba(255,255,255,.75);
    margin-bottom:  22px;
}

.footer-links {
    display:        flex;
    flex-direction: column;
    gap:            10px;
}

.footer-links a {
    font-size:  14px;
    color:      rgba(255,255,255,.45);
    transition: color var(--tr);
}

.footer-links a:hover { color: var(--clr-accent); }

.footer-address {
    font-style: normal;
}

.footer-address p {
    font-size:     14px;
    color:         rgba(255,255,255,.45);
    line-height:   1.7;
    margin-bottom: 14px;
}

.footer-phone {
    display:        inline-block;
    font-size:      20px;
    font-weight:    700;
    color:          var(--clr-accent);
    letter-spacing: 1px;
    direction:      ltr;
    transition:     color var(--tr);
}

.footer-phone:hover { color: var(--clr-white); }

.footer-bottom {
    padding:    24px 0;
    text-align: center;
    direction:  rtl;
}

.footer-bottom p {
    font-size: 12.5px;
    color:     rgba(255,255,255,.25);
}

/* ─────────────────────────────────────────
   STICKY CONTACT + LIGHTBOX
───────────────────────────────────────── */
.sticky-contact {
    position:        fixed;
    inset-inline-end: 18px;
    bottom:          18px;
    z-index:         900;
    display:         none;
    align-items:     center;
    gap:             8px;
    padding:         12px 18px;
    background:      var(--clr-accent);
    color:           var(--clr-white);
    border-radius:   999px;
    box-shadow:      var(--sh-md);
    font-size:       14px;
    font-weight:     600;
    transition:      transform var(--tr), background var(--tr);
}

.sticky-contact svg { width: 18px; height: 18px; }

.sticky-contact:hover {
    background: var(--clr-accent-dk);
    transform:  translateY(-2px);
}

.lightbox {
    position:        fixed;
    inset:           0;
    z-index:         2000;
    display:         flex;
    align-items:     center;
    justify-content: center;
    padding:         24px;
    background:      rgba(10,8,6,.92);
}

.lightbox[hidden] { display: none !important; }

.lightbox-content {
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    gap:             16px;
    width:           min(1100px, 94vw);
    max-height:      92vh;
}

.lightbox-image {
    width:      100%;
    max-height: min(68vh, 720px);
    object-fit: contain;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.04);
}

.lightbox-caption {
    margin:      0;
    font-size:   15px;
    font-weight: 600;
    color:       rgba(255,255,255,.88);
    text-align:  center;
}

.lightbox-thumbs {
    display:         flex;
    gap:             10px;
    flex-wrap:       wrap;
    justify-content: center;
    max-width:       100%;
    padding-top:     4px;
}

.lightbox-thumb {
    width:      72px;
    height:     54px;
    padding:    0;
    border:     2px solid transparent;
    border-radius: var(--r-sm);
    overflow:   hidden;
    cursor:     pointer;
    background: none;
    opacity:    .65;
    transition: opacity var(--tr), border-color var(--tr), transform var(--tr);
}

.lightbox-thumb.is-active,
.lightbox-thumb:hover {
    opacity:      1;
    border-color: var(--clr-accent);
    transform:    translateY(-2px);
}

.lightbox-thumb img {
    width:      100%;
    height:     100%;
    object-fit: cover;
}

.lightbox-nav {
    position:   absolute;
    top:        50%;
    transform:  translateY(-50%);
    z-index:    3;
    width:      48px;
    height:     48px;
    border:     1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color:      var(--clr-white);
    font-size:  28px;
    line-height: 1;
    cursor:     pointer;
    transition: background var(--tr), border-color var(--tr);
}

.lightbox-nav:hover {
    background:   rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.45);
}

.lightbox-prev { inset-inline-start: 20px; }
.lightbox-next { inset-inline-end: 20px; }

.lightbox-close {
    position:   absolute;
    top:        20px;
    inset-inline-end: 24px;
    z-index:    4;
    border:     none;
    background: none;
    color:      var(--clr-white);
    font-size:  36px;
    line-height: 1;
    cursor:     pointer;
}

body.menu-open { overflow: hidden; }

/* ─────────────────────────────────────────
   RESPONSIVE — Large tablets (≤1100px)
───────────────────────────────────────── */
@media (max-width: 1100px) {
    .container { padding: 0 32px; }

    .about-editorial,
    .partnership-layout,
    .why-editorial,
    .news-feature { gap: 48px; }

    .collection-row-content { padding: 40px 40px; }

    .footer-grid { gap: 40px; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — Tablets (≤900px)
───────────────────────────────────────── */
@media (max-width: 900px) {

    :root { --sp-xl: 80px; --sp-lg: 48px; }

    .container { padding: 0 28px; }

    .main-nav  { display: none; }
    .hamburger { display: flex; }

    .about-editorial,
    .partnership-layout,
    .why-editorial,
    .news-feature,
    .collection-row {
        grid-template-columns: 1fr;
    }

    .about-editorial-media { min-height: 420px; }
    .about-figure-main { height: 380px; }
    .about-figure-accent {
        inset-inline-start: 16px;
        width: 52%;
    }

    .collection-row.is-reverse { direction: rtl; }

    .collection-row-content {
        padding: 32px 28px;
        order: 2;
    }

    .collection-row-media { order: 1; min-height: 280px; }
    .collection-row-media img { min-height: 280px; }

    .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .collection-showcase { gap: 4px; margin-top: 36px; }

    .showcase-card {
        min-height: clamp(260px, 44vh, 420px);
    }

    .showcase-card-content {
        max-width: 92%;
    }

    .partnership-media,
    .why-editorial-media { min-height: 300px; }
    .why-editorial-media img { min-height: 300px; }

    .contact-cards { grid-template-columns: 1fr; max-width: 440px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-col { grid-column: span 2; }

    .sticky-contact { display: inline-flex; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — Mobile (≤640px)
───────────────────────────────────────── */
@media (max-width: 640px) {

    :root { --sp-xl: 64px; --sp-lg: 40px; }

    .container { padding: 0 20px; }

    .header-inner { height: 64px; }
    .brand-logo   { height: 52px; max-width: 36px; }

    .hero { min-height: 100svh; }
    .hero-img { object-position: center 42%; }
    .hero-intro {
        flex-direction: column;
        align-items:    flex-start;
        gap:            16px;
    }
    .hero-logo {
        height:    88px;
        max-width: 58px;
    }
    .hero-title { line-height: 1.18; font-size: clamp(28px, 8vw, 40px); }

    .hero-actions {
        flex-direction: column;
        gap:            12px;
    }

    .hero-actions .btn {
        width:     100%;
        max-width: 300px;
    }

    .about-editorial-media { min-height: 320px; }
    .about-figure-main { height: 280px; }
    .about-figure-accent {
        width: 58%;
        inset-inline-start: 8px;
        border-width: 4px;
    }

    .about-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .cinema-band { min-height: 240px; max-height: 320px; }
    .cinema-band img { min-height: 240px; }
    .cinema-band-caption,
    .cinema-band-content {
        inset-inline: 20px;
        bottom: 20px;
    }

    .collection-row-content { padding: 24px 20px; }
    .collection-row-media,
    .collection-row-media img { min-height: 220px; }

    .collection-grid { grid-template-columns: 1fr; }

    .showcase-card { min-height: clamp(240px, 40vh, 360px); }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-prev { inset-inline-start: 10px; }
    .lightbox-next { inset-inline-end: 10px; }

    .lightbox-thumb { width: 64px; height: 48px; }

    .why-list li {
        padding-inline-start: 48px;
        font-size: 15px;
    }

    .news-gallery-support { grid-template-columns: 1fr; }

    .contact-section  { padding: 80px 0 96px; }
    .contact-cards    { grid-template-columns: 1fr; }
    .contact-phone { font-size: 20px !important; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap:                   40px;
    }
    .footer-brand-col { grid-column: auto; }

    .section-label::before,
    .section-label::after { content: ''; margin: 0; }

    .sticky-contact {
        inset-inline: 16px;
        bottom: 16px;
        justify-content: center;
    }
}

/* ─────────────────────────────────────────
   RESPONSIVE — Extra small (≤400px)
───────────────────────────────────────── */
@media (max-width: 400px) {
    .contact-actions .btn { width: 100%; max-width: 320px; }
}

/* ─────────────────────────────────────────
   LANGUAGE TOGGLE BUTTON
───────────────────────────────────────── */
.header-end {
    display:     flex;
    align-items: center;
    gap:         10px;
    flex-shrink: 0;
}

.lang-toggle {
    display:         flex;
    align-items:     center;
    gap:             6px;
    background:      transparent;
    border:          1.5px solid rgba(255,255,255,.55);
    color:           var(--clr-white);
    font-family:     var(--ff);
    font-size:       12px;
    font-weight:     700;
    letter-spacing:  0.6px;
    padding:         6px 13px;
    border-radius:   20px;
    cursor:          pointer;
    transition:      var(--tr);
    white-space:     nowrap;
    flex-shrink:     0;
}

.lang-toggle:hover {
    background:   rgba(255,255,255,.12);
    border-color: var(--clr-white);
    transform:    translateY(-1px);
}

.is-solid .lang-toggle {
    border-color: var(--clr-stone);
    color:        var(--clr-charcoal);
}

.is-solid .lang-toggle:hover {
    border-color: var(--clr-accent);
    color:        var(--clr-accent);
    background:   transparent;
}

.lang-icon {
    width:  14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Facebook / Social link in header ── */
.social-link {
    display:         flex;
    align-items:     center;
    justify-content: center;
    width:           34px;
    height:          34px;
    border-radius:   50%;
    border:          1.5px solid rgba(255,255,255,.45);
    color:           var(--clr-white);
    transition:      var(--tr);
    flex-shrink:     0;
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
    background:   #1877F2;
    border-color: #1877F2;
    color:        var(--clr-white);
    transform:    translateY(-2px);
    box-shadow:   0 6px 18px rgba(24,119,242,.35);
}

.is-solid .social-link {
    border-color: var(--clr-stone);
    color:        var(--clr-charcoal);
}

.is-solid .social-link:hover {
    background:   #1877F2;
    border-color: #1877F2;
    color:        var(--clr-white);
}

/* ── Facebook button in footer ── */
.footer-socials { margin-top: 20px; }

.footer-social-btn {
    display:         inline-flex;
    align-items:     center;
    gap:             10px;
    background:      rgba(24,119,242,.12);
    border:          1px solid rgba(24,119,242,.3);
    color:           #6BA3F5;
    font-family:     var(--ff);
    font-size:       13px;
    font-weight:     500;
    padding:         9px 18px;
    border-radius:   var(--r-md);
    transition:      var(--tr);
    text-decoration: none;
}

.footer-social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-social-btn:hover {
    background:   #1877F2;
    border-color: #1877F2;
    color:        var(--clr-white);
    transform:    translateY(-2px);
    box-shadow:   0 6px 20px rgba(24,119,242,.3);
}

/* ─────────────────────────────────────────
   ENGLISH MODE OVERRIDES  (html.lang-en)
───────────────────────────────────────── */

/* Switch to Latin font */
html.lang-en body {
    font-family: var(--ff-en);
    direction:   ltr;
    text-align:  left;
}

html.lang-en .about-editorial-content,
html.lang-en .partnership-content,
html.lang-en .news-feature-copy,
html.lang-en .collection-row-content,
html.lang-en .why-list,
html.lang-en .contact-content,
html.lang-en .footer-bottom,
html.lang-en .news-meta,
html.lang-en .news-location,
html.lang-en .mobile-nav-list,
html.lang-en .about-highlights { direction: ltr; text-align: left; }

html.lang-en .section-header { text-align: center; direction: ltr; }
html.lang-en .section-title--left { text-align: left; }

html.lang-en .contact-card { direction: ltr; }
html.lang-en .footer-grid { direction: ltr; }
html.lang-en .nav-list { direction: ltr; }
html.lang-en .brand-text { align-items: flex-start; }
html.lang-en .hero-text { text-align: left; }
html.lang-en .hero-intro { flex-direction: row; align-items: center; }
html.lang-en .footer-address { direction: ltr; }
html.lang-en .contact-actions { justify-content: center; }

html.lang-en .why-list li {
    padding-inline-start: 56px;
}

html.lang-en .collection-row.is-reverse { direction: rtl; }
html.lang-en .collection-row.is-reverse .collection-row-content { direction: ltr; }

html.lang-en .about-highlight {
    flex-direction: row;
    justify-content: space-between;
}

html.lang-en .showcase-card-content { text-align: left; align-items: flex-start; }

html.lang-en .section-label::before { content: '— '; }
html.lang-en .section-label::after  { content: ' —'; }

html.lang-en .btn-icon {
    margin-inline-start: 0;
    margin-inline-end: 8px;
}

.contact-phone,
.footer-phone { direction: ltr; }

/* Smooth language transition */
body,
body * { transition-property: opacity; transition-duration: 0s; }

body.lang-switching,
body.lang-switching * { opacity: 0; transition-duration: .15s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-up {
        opacity: 1;
        transform: none;
    }

    .hero-img { animation: none; transform: none; }
}
