/* ═══════════════════════════════════════
   ZERKESH — Luxury Light Theme
   Brand: Teal #1a5e72 · Gold #c8a76a
   ═══════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --teal:        #1a5e72;
  --teal-dark:   #103d4d;
  --teal-light:  #2a7a92;
  --gold:        #c8a76a;
  --gold-light:  #dfc07a;
  --gold-pale:   #f0e4c4;

  --bg:          #f7f3eb;
  --bg-2:        #ede8da;
  --bg-3:        #e4ddd0;
  --dark:        #0d0b08;
  --dark-2:      #181410;

  --text:        #1a1208;
  --text-body:   #4a3f30;
  --text-muted:  #8c7d6a;
  --text-light:  #f0e8d8;
  --text-light-muted: #b0a090;

  --border:      rgba(0,0,0,.08);
  --border-gold: rgba(200,167,106,.25);

  --radius:      4px;
  --ease:        cubic-bezier(.25,.1,.25,1);
  --ease-out:    cubic-bezier(.0,.0,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ─── BILINGUAL ─── */
html[lang="ar"] .en { display: none; }
html[lang="en"] .ar { display: none; }
html[lang="en"] { direction: ltr; }
html[lang="ar"] { direction: rtl; }

/* ─── TYPOGRAPHY ─── */
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] .hero__title,
html[lang="en"] .eyebrow { font-family: 'Cormorant Garamond', serif; }

html[lang="ar"] body { font-family: 'Amiri', serif; }
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4 { font-family: 'Amiri', serif; }

h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 300; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400; line-height: 1.25; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: .02em; }
p  { color: var(--text-body); line-height: 1.75; }

/* ─── UTILITIES ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-light); }

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0;
}

.section-header { max-width: 640px; margin-bottom: 64px; }
.section-sub { margin-top: 16px; font-size: .95rem; color: var(--text-muted); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-size: .88rem; font-weight: 500; letter-spacing: .06em;
  border-radius: var(--radius);
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--ivory { background: #f0e8d8; color: var(--text); }
.btn--ivory:hover { background: #fff; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dark); }
.btn--ghost-light { border: 1px solid rgba(255,255,255,.5); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); }
.btn--outline-teal { border: 1.5px solid var(--teal); color: var(--teal); }
.btn--outline-teal:hover { background: var(--teal); color: #fff; }
.btn--ghost-dark { border: 1.5px solid var(--border); color: var(--text-muted); }
.btn--ghost-dark:hover { border-color: var(--teal); color: var(--teal); }

.products-cta {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  padding: 56px 24px 80px;
  background: var(--bg);
}

/* ─── LOADER ─── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold-pale);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s;
  padding: 0;
}
.header.scrolled {
  background: rgba(247,243,235,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header.hero-mode .header__logo img { filter: brightness(0) invert(1); }
.header.hero-mode .header__links a { color: rgba(255,255,255,.85); }
.header.hero-mode .header__links a:hover { color: #fff; }
.header.hero-mode .lang-btn { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.3); }
.header.hero-mode .menu-btn span { background: rgba(255,255,255,.9); }

.header__inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; gap: 24px;
}
.header__logo img { height: 56px; width: auto; transition: filter .3s; }
.header__nav {
  display: flex; align-items: center; gap: 24px;
  margin-inline-start: auto;
}
.header__links { display: flex; gap: 28px; }
.header__links a {
  font-size: .85rem; font-weight: 500; letter-spacing: .04em;
  color: var(--text); opacity: .8;
  transition: opacity .2s;
  position: relative;
}
.header__links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.header__links a:hover { opacity: 1; }
.header__links a:hover::after { transform: scaleX(1); }

.btn-order {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: var(--teal); color: #fff;
  font-size: .82rem; font-weight: 600; letter-spacing: .05em;
  border-radius: var(--radius);
  transition: background .2s;
  white-space: nowrap;
}
.btn-order:hover { background: var(--teal-dark); }

.header__actions { display: flex; align-items: center; gap: 10px; margin-inline-start: auto; }
html[lang="ar"] .header__logo { order: 0; margin-inline-end: auto; }
html[lang="ar"] .header__nav { order: 1; margin-inline-start: 0; }
html[lang="ar"] .header__actions { order: 2; margin-inline-start: 0; }
html[lang="en"] .header__actions { margin-inline-start: 0; }

.lang-btn {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  color: var(--text-muted); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: var(--radius);
  transition: all .2s;
}
.lang-btn:hover { color: var(--teal); border-color: var(--teal); }

.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 2px 0;
}
.menu-btn span {
  display: block; height: 1.5px; width: 100%;
  background: var(--text); border-radius: 2px; transition: all .3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 98; }
.nav-overlay.show { display: block; }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero__media {
  position: absolute; inset: 0;
  will-change: transform;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,.18) 0%,
    rgba(10,8,5,.38) 50%,
    rgba(10,8,5,.62) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 880px; color: #fff;
}
.hero__eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px; display: block;
}
.hero__title {
  font-family: 'Amiri', serif;
  font-weight: 300; color: #fff; margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
html[lang="en"] .hero__title { font-family: 'Cormorant Garamond', serif; }
.hero__sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.78); margin-bottom: 36px; line-height: 1.7;
}
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.55);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ─── PILLARS ─── */
.pillars { padding: 72px 0; background: var(--bg); }
.pillars__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.pillar { text-align: center; }
.pillar__icon { width: 52px; height: 52px; margin: 0 auto 16px; color: var(--teal); }
.pillar__icon svg { width: 100%; height: 100%; }
.pillar h4 { font-size: .9rem; margin-bottom: 6px; color: var(--text); }
.pillar p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* ─── PRODUCTS ─── */
.products-section { padding-top: 90px; }
.products-section .container .section-header { padding-bottom: 0; }

.product-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px; margin-bottom: 2px; overflow: hidden;
}
.product-feature--flip .product-feature__img { order: 2; }
.product-feature--flip .product-feature__body { order: 1; }

.product-feature__img {
  overflow: hidden; position: relative; background: var(--bg-2);
}
.product-feature__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 1s var(--ease);
}
.product-feature:hover .product-feature__img img { transform: scale(1.04); }

.product-feature__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 72px; background: var(--bg); position: relative;
}
.product-feature--flip .product-feature__body { background: var(--bg-2); }

.product-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--gold-pale); line-height: 1;
  margin-bottom: 8px; display: block;
}
.product-feature__body h3 {
  color: var(--text);
  font-family: 'Amiri', serif; font-weight: 600;
}
html[lang="en"] .product-feature__body h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }

.product-divider { width: 36px; height: 1px; background: var(--gold); margin: 20px 0; }

.product-feature__body p {
  font-size: .92rem; line-height: 1.8; color: var(--text-body);
  margin-bottom: 28px; max-width: 400px;
}

/* ─── OCCASIONS ─── */
.occasions {
  position: relative; min-height: 520px;
  display: flex; align-items: center; overflow: hidden; color: #fff;
}
.occasions__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; will-change: transform;
}
.occasions__overlay { position: absolute; inset: 0; background: rgba(10,8,5,.72); }
.occasions .container { position: relative; z-index: 2; padding: 100px 24px; }
.occasions__content { max-width: 680px; }
.occasions__content h2 {
  font-family: 'Amiri', serif;
  font-weight: 300; color: #fff; margin-bottom: 20px;
}
html[lang="en"] .occasions__content h2 { font-family: 'Cormorant Garamond', serif; }
.occasions__content p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.8; margin-bottom: 32px; }
.occasions__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.occasions__tags span {
  padding: 7px 18px;
  border: 1px solid rgba(200,167,106,.4); color: var(--gold-light);
  font-size: .78rem; letter-spacing: .1em; border-radius: 100px;
}

/* ─── ABOUT ─── */
.about { padding: 100px 0; background: var(--bg-2); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__img { position: relative; }
.about__img img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.about__frame {
  position: absolute; inset: -12px;
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  pointer-events: none; z-index: -1;
}
.about__body h2 { margin-bottom: 0; }
.about__body p { margin-bottom: 16px; font-size: .93rem; }

.about__stats {
  display: flex; flex-wrap: wrap; gap: 32px 40px; margin: 36px 0 32px;
  padding: 28px 0; justify-content: center; align-items: flex-end;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: var(--teal); line-height: 1;
}
.stat__plus { font-size: 1.4rem; color: var(--gold); margin-inline-start: 2px; }
.stat__label { font-size: .78rem; color: var(--text-muted); margin-top: 4px; letter-spacing: .06em; }

/* ─── GALLERY ─── */
.gallery-section { padding: 100px 0 0; background: var(--bg); }
.gallery-section .section-header { text-align: center; margin: 0 auto 48px; }
.gallery-section .section-header .gold-rule { margin: 18px auto; }

.gallery-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-row: span 2; }
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer; background: var(--bg-2);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__hover {
  position: absolute; inset: 0;
  background: rgba(26,94,114,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; color: #fff;
}
.gallery-item:hover .gallery-item__hover { opacity: 1; }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__wrap { max-width: 90vw; max-height: 90vh; }
.lightbox__img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 2px; }
.lightbox__close, .lightbox__arrow {
  position: absolute; color: rgba(255,255,255,.8);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.2); transition: all .2s;
}
.lightbox__close:hover, .lightbox__arrow:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ─── INSTAGRAM ─── */
.instagram-section { padding: 100px 0; background: var(--bg-2); }
.instagram__header { text-align: center; margin-bottom: 48px; }
.instagram__header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.instagram__header .gold-rule { margin: 18px auto; }
.instagram__header p { color: var(--text-muted); font-size: .92rem; }

.insta-handle { color: var(--teal); font-family: 'Cormorant Garamond', serif; font-weight: 400; transition: color .2s; }
html[lang="ar"] .insta-handle { font-family: inherit; }
.insta-handle:hover { color: var(--gold); }

.instagram__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-bottom: 36px; }
.insta-item { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--bg-3); display: block; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta-item:hover img { transform: scale(1.06); }
.insta-item__overlay {
  position: absolute; inset: 0; background: rgba(26,94,114,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; color: #fff;
}
.insta-item:hover .insta-item__overlay { opacity: 1; }
.instagram__cta { text-align: center; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonials .section-header { text-align: center; margin: 0 auto 60px; }
.testimonials .section-header .gold-rule { margin: 18px auto; }

.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial {
  padding: 36px 32px; background: var(--bg-2);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.testimonial:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.testimonial__stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial__text { font-size: .9rem; line-height: 1.75; color: var(--text-body); margin-bottom: 24px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 40px; height: 40px; background: var(--teal); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 600; flex-shrink: 0;
}
.testimonial__author > div { display: flex; flex-direction: column; }
.testimonial__author strong { font-size: .88rem; color: var(--text); }
.testimonial__author span { font-size: .78rem; color: var(--text-muted); }

/* ─── CONTACT ─── */
.contact {
  position: relative; overflow: hidden;
  padding: 100px 0; color: #fff;
}
.contact__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; will-change: transform;
}
.contact__overlay { position: absolute; inset: 0; background: rgba(10,8,5,.80); }
.contact .container { position: relative; z-index: 2; }
.contact .section-header { text-align: center; margin: 0 auto 48px; }
.contact h2 { color: #fff; }
.contact .gold-rule { margin: 18px auto; }

.contact__cards { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 36px 40px; border: 1px solid rgba(200,167,106,.25);
  border-radius: var(--radius); color: var(--text-light);
  min-width: 180px; transition: all .25s; text-align: center;
}
.contact-card:hover { border-color: var(--gold); background: rgba(200,167,106,.08); transform: translateY(-3px); }
.contact-card__icon { color: var(--gold); }
.contact-card h4 { font-size: .88rem; letter-spacing: .06em; color: var(--text-light); }
.contact-card span { font-size: .82rem; color: var(--text-light-muted); direction: ltr; }

/* ─── FOOTER ─── */
.footer { background: var(--dark-2); color: var(--text-light-muted); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer__brand { max-width: 280px; }
.footer__logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: .85rem; line-height: 1.7; color: var(--text-light-muted); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-light-muted); transition: all .2s;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__links h5, .footer__contact-info h5 {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .85rem; color: var(--text-light-muted); transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__contact-info p { margin-bottom: 10px; font-size: .85rem; }
.footer__contact-info a { color: var(--text-light-muted); transition: color .2s; }
.footer__contact-info a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; text-align: center; }
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .product-feature { grid-template-columns: 1fr; min-height: auto; }
  .product-feature--flip .product-feature__img,
  .product-feature--flip .product-feature__body { order: 0; }
  .product-feature__img { height: 400px; }
  .product-feature__body { padding: 48px 40px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img { max-width: 600px; }
  .pillars__grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; max-width: 100%; }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--bg);
    flex-direction: column; align-items: flex-start;
    padding: 80px 32px 40px; gap: 0;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 99;
    box-shadow: -4px 0 24px rgba(0,0,0,.1);
    margin-inline-start: 0;
  }
  html[lang="ar"] .header__nav { right: auto; left: 0; transform: translateX(-100%); }
  .header__nav.open { transform: translateX(0); }
  html[lang="ar"] .header__nav.open { transform: translateX(0); }
  .header__links { flex-direction: column; gap: 0; width: 100%; margin-bottom: 24px; }
  .header__links li { border-bottom: 1px solid var(--border); }
  .header__links a { display: block; padding: 16px 0; font-size: 1rem; color: var(--text); opacity: 1; }
  .header.hero-mode .header__links a,
  .header.hero-mode .header__links a:hover { color: var(--text); opacity: 1; }
  .btn-order { width: 100%; justify-content: center; }
  html[lang="ar"] .header__nav { order: 0; }
  html[lang="ar"] .header__actions { margin-inline-start: auto; }
  html[lang="en"] .header__actions { margin-inline-start: auto; }
  .menu-btn { display: flex; }

  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-row: span 1; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .instagram__grid { grid-template-columns: repeat(2,1fr); }
  .contact__cards { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 340px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: span 1; }
  .about__stats { gap: 24px; }
  .about__frame { display: none; }
  .about { padding: 64px 0; }
  .gallery-section { padding: 64px 0 0; }
  .instagram-section { padding: 64px 0; }
  .testimonials { padding: 64px 0; }
  .occasions .container { padding: 64px 24px; }
  .contact { padding: 72px 0; }
  .product-feature__img { height: 260px; }
  .product-feature__body { padding: 36px 24px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; justify-content: center; max-width: 280px; }
  .pillars__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .section-header { margin-bottom: 40px; }
  .instagram__grid { grid-template-columns: 1fr 1fr; }
  .product-num { font-size: 2.5rem; }
  .about__stats { flex-direction: row; gap: 12px 16px; justify-content: space-evenly; }
  .stat__num { font-size: 1.4rem; }
  .header__inner { padding: 0 16px; }
}
