/* ═══════════════════════════════════════════
   4SEASONS FURNITURE – STYLESHEET
   Color Palette: Teal #2A6B6B, Gold #C9A84C, Off-white #FAF8F5
   ═══════════════════════════════════════════ */

:root {
  --teal: #2A6B6B;
  --teal-dark: #1e5050;
  --teal-light: #3d8080;
  --gold: #C9A84C;
  --gold-light: #dfc07a;
  --gold-dark: #a8872e;
  --cream: #FAF8F5;
  --cream2: #F0ECE5;
  --dark: #1a1a18;
  --dark2: #2c2c28;
  --mid: #6b6b60;
  --light-border: rgba(201, 168, 76, 0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --font-arabic: 'Noto Kufi Arabic', sans-serif;

  --nav-h: 72px;
  --transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* Arabic & Kurdish RTL */
body.lang-ar, body.lang-ku {
  direction: rtl;
  font-family: var(--font-arabic);
}

/* ═══ PAGES ═══ */
.page { display: none; }
.page.active { display: block; }

/* ═══ LANG BAR ═══ */
.lang-bar {
  position: fixed;
  top: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px;
  background: rgba(42,107,107,0.97);
  border-bottom-left-radius: 8px;
}
body.lang-ar .lang-bar, body.lang-ku .lang-bar {
  right: auto; left: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 8px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 2px 4px;
  transition: var(--transition);
  text-transform: uppercase;
}
.lang-btn.active { color: var(--gold); font-weight: 500; }
.lang-btn:hover { color: #fff; }
.lang-sep { color: rgba(255,255,255,0.3); font-size: 10px; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250,248,245,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 48px; width: 48px; object-fit: cover; border-radius: 50%; border: 2px solid var(--gold); }
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-link {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 400;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover { color: var(--teal); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ═══ HERO SLIDESHOW ═══ */
.hero-bg { position: absolute; inset: 0; }

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,24,0.75) 0%,
    rgba(42,107,107,0.45) 50%,
    rgba(26,26,24,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
  animation: heroIn 1.2s ease forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 36px;
}
body.lang-ar .hero-title, body.lang-ku .hero-title {
  font-size: clamp(36px, 6vw, 64px);
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline.dark { border-color: var(--teal); color: var(--teal); }
.btn-outline.dark:hover { background: var(--teal); color: #fff; }

/* ═══ BRAND STRIP ═══ */
.brand-strip {
  background: var(--teal);
  padding: 28px 0;
}
.strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}
.strip-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  font-weight: 300;
}
.strip-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.strip-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ═══ SECTIONS ═══ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
}
.section-tag.light { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc { font-size: 15px; color: var(--mid); line-height: 1.75; }

/* ═══ FEATURED ═══ */
.featured {
  padding: 96px 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  height: 580px;
}
.feat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.feat-card.tall { grid-row: span 1; }
.feat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feat-card:hover img { transform: scale(1.04); }
.feat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(26,26,24,0.8), transparent);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}

/* ═══ WHY US ═══ */
.why-us {
  position: relative;
  padding: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.why-bg { position: absolute; inset: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,26,24,0.88) 50%, rgba(26,26,24,0.5) 100%);
}
body.lang-ar .why-overlay, body.lang-ku .why-overlay {
  background: linear-gradient(to left, rgba(26,26,24,0.88) 50%, rgba(26,26,24,0.5) 100%);
}
.why-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 80px 80px 80px 80px;
}
body.lang-ar .why-content, body.lang-ku .why-content {
  margin-left: auto;
  padding: 80px 80px 80px 40px;
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.2;
}
.why-pills { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.why-pill { display: flex; gap: 16px; align-items: flex-start; }
.pill-icon { color: var(--gold); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.why-pill strong { display: block; color: #fff; font-size: 15px; margin-bottom: 4px; font-weight: 500; }
.why-pill p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ═══ GALLERY TEASER ═══ */
.gallery-teaser {
  padding: 96px 40px;
  max-width: 1300px;
  margin: 0 auto;
}
.teaser-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.teaser-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.teaser-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.teaser-img:hover img { transform: scale(1.04); }
.teaser-cta { text-align: center; }

/* ═══ PAGE HERO (SHORT) ═══ */
.page-hero.short {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.8) 30%, rgba(26,26,24,0.3) 100%);
}
.page-hero-text {
  position: relative;
  z-index: 2;
  padding: 0 80px 48px;
}
.page-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  font-weight: 300;
  margin-top: 10px;
}

/* ═══ ABOUT PAGE ═══ */
.about-body { padding: 80px 80px 60px; max-width: 1300px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  margin: 12px 0 24px;
  line-height: 1.2;
}
.about-text p { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.about-imgs { position: relative; height: 500px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0; right: 60px; bottom: 60px;
  width: calc(100% - 60px); height: calc(100% - 60px);
  object-fit: cover;
}
body.lang-ar .about-img-main, body.lang-ku .about-img-main {
  left: 60px; right: 0;
  width: calc(100% - 60px);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  object-fit: cover;
  border: 4px solid var(--cream);
  box-shadow: -8px -8px 0 var(--gold);
}
body.lang-ar .about-img-accent, body.lang-ku .about-img-accent {
  right: auto; left: 0;
  box-shadow: 8px -8px 0 var(--gold);
}
.values-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.value-card {
  padding: 40px 28px;
  background: #fff;
  border-top: 3px solid var(--gold);
  text-align: center;
}
.value-icon { font-size: 28px; color: var(--gold); margin-bottom: 16px; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
.value-card p { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ═══ COLLECTIONS PAGE ═══ */
.collections-body { padding: 80px 80px 60px; max-width: 1300px; margin: 0 auto; }
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.coll-card {
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}
.coll-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.coll-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.coll-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.coll-card:hover .coll-img-wrap img { transform: scale(1.04); }
.coll-cta-img {
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.coll-cta-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  font-weight: 300;
}
.coll-info { padding: 24px 24px 20px; }
.coll-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}
.coll-info p { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.coll-tag { font-size: 12px; color: var(--teal); letter-spacing: 0.08em; font-weight: 500; }

/* ═══ GALLERY PAGE ═══ */
.gallery-body { padding: 80px 40px 60px; max-width: 1400px; margin: 0 auto; }
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.masonry-item:hover img { transform: scale(1.03); }

.masonry-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 18px 16px;
  background: linear-gradient(to top, rgba(26,26,24,0.82) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.masonry-item:hover .masonry-label {
  opacity: 1;
  transform: translateY(0);
}
.masonry-label span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
}
/* small gold line accent above label */
.masonry-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 8px;
}


/* ═══ LIGHTBOX ═══ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,8,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 40px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-close { top: 20px; right: 24px; font-size: 28px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ═══ CONTACT PAGE ═══ */
.contact-body { padding: 80px 80px 60px; max-width: 1300px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  margin-bottom: 16px;
}
.contact-info > p { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.contact-detail p { font-size: 15px; color: var(--dark); line-height: 1.6; }
.insta-link { color: var(--teal); text-decoration: none; font-weight: 500; }
.insta-link:hover { color: var(--gold); }

.hours-box {
  background: var(--cream2);
  padding: 28px;
  border-left: 3px solid var(--gold);
  margin-top: 32px;
}
body.lang-ar .hours-box, body.lang-ku .hours-box {
  border-left: none;
  border-right: 3px solid var(--gold);
}
.hours-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-border);
}
.hours-row:last-child { border-bottom: none; }

.contact-map-wrap h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 20px;
}
.map-embed { width: 100%; border: 1px solid var(--light-border); margin-bottom: 16px; }
.map-btn { display: inline-block; margin-top: 8px; text-decoration: none; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--dark2);
  padding: 64px 80px 0;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 56px; width: 56px; object-fit: cover; border-radius: 50%; border: 2px solid var(--gold); margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 240px; }
.footer-links h4, .footer-contact h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-social { margin-top: 16px; }
.social-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
}
.social-link:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ═══ WHATSAPP FLOATING BUTTON ═══ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: var(--transition);
  overflow: visible;
}
body.lang-ar .whatsapp-float,
body.lang-ku .whatsapp-float {
  right: auto;
  left: 28px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.18); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark2);
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  letter-spacing: 0.04em;
}
body.lang-ar .whatsapp-tooltip,
body.lang-ku .whatsapp-tooltip {
  right: auto;
  left: calc(100% + 12px);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--dark2);
}
body.lang-ar .whatsapp-tooltip::after,
body.lang-ku .whatsapp-tooltip::after {
  right: auto; left: -5px;
  border-left: none;
  border-right-color: var(--dark2);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

#page-home .hero { margin-top: var(--nav-h); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }
  .about-body, .collections-body, .contact-body, .footer { padding-left: 32px; padding-right: 32px; }
  .featured, .gallery-teaser { padding-left: 32px; padding-right: 32px; }
  .coll-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { height: 340px; margin-top: 40px; }
  .feat-grid { height: auto; grid-template-columns: 1fr 1fr; }
  .feat-grid .feat-card:last-child { grid-column: span 2; }
  .why-content { padding: 60px 32px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-border);
    gap: 0;
    z-index: 800;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 32px; }
  .hamburger { display: flex; }
  .feat-grid { grid-template-columns: 1fr; height: auto; }
  .feat-grid .feat-card:last-child { grid-column: span 1; }
  .feat-card { height: 260px; }
  .coll-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .strip-inner { flex-wrap: wrap; gap: 24px; }
  .strip-divider { display: none; }
  .values-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .teaser-row { grid-template-columns: 1fr; }
  .page-hero-text { padding: 0 24px 36px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .why-content { padding: 40px 24px; }
  .about-body, .collections-body, .contact-body { padding: 48px 24px; }
  .footer { padding: 48px 24px 0; }
  .gallery-body { padding: 48px 20px 40px; }
}
