/* TOPAZ Ceramic — Luxury Design System */

:root {
  --gold: #D4A22A;
  --gold-deep: #C8941C;
  --off-white: #F8F8F6;
  --beige: #EDE7DD;
  --charcoal: #1D1D1D;
  --gray: #6B6B6B;
  --gray-light: #A8A8A8;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', 'Amiri', Georgia, serif;
  --font-body: 'Inter', 'Tajawal', -apple-system, sans-serif;

  --header-h: 88px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.5s var(--ease);
  --max-w: 1400px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"] { font-family: 'Tajawal', var(--font-body); }

h1, h2, h3, h4, .display, .section-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

body[dir="rtl"] h1,
body[dir="rtl"] h2,
body[dir="rtl"] h3,
body[dir="rtl"] h4,
body[dir="rtl"] .display,
body[dir="rtl"] .section-heading {
  font-family: 'Amiri', var(--font-heading);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition), opacity var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.transparent { background: transparent; }

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(29, 29, 29, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.nav-left { justify-self: start; min-width: 0; }

.nav-right {
  justify-self: end;
  min-width: 0;
  flex-wrap: nowrap;
  gap: clamp(0.65rem, 1.4vw, 1.35rem);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

.header.scrolled .nav-link { color: var(--charcoal); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

body[dir="rtl"] .nav-link::after { left: auto; right: 0; }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover { color: var(--gold); }
.header.scrolled .nav-link:hover { color: var(--gold-deep); }

.logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.logo-center img {
  height: clamp(40px, 5vw, 52px);
  width: auto;
  display: block;
  transition: opacity var(--transition);
}

.header.transparent .logo-center img {
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.28));
}

.logo-center svg {
  height: clamp(36px, 5vw, 48px);
  width: auto;
  color: var(--white);
  transition: color var(--transition);
}

.header.scrolled .logo-center svg { color: var(--charcoal); }

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.lang-btn-desktop {
  flex-shrink: 0;
  margin-inline-start: clamp(0.35rem, 1vw, 0.75rem);
}

.lang-btn-mobile {
  display: none;
  margin-top: 0.5rem;
}

.lang-btn {
  background: none;
  border: 1px solid currentColor;
  color: var(--white);
  padding: 0.35rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.header.scrolled .lang-btn { color: var(--charcoal); border-color: var(--charcoal); }

.lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  color: var(--white);
  transition: all var(--transition);
}

.header.scrolled .menu-toggle span { color: var(--charcoal); }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 29, 29, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav .nav-link { font-size: 1rem; letter-spacing: 0.2em; color: var(--white); }

.mobile-nav .lang-btn-mobile {
  display: inline-block;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-media img,
.hero-media .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  animation: heroKen 24s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(29, 29, 29, 0.35) 0%,
    rgba(29, 29, 29, 0.5) 50%,
    rgba(29, 29, 29, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-logo {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.2s forwards;
}

.hero-logo img {
  height: clamp(72px, 14vw, 120px);
  width: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 28px rgba(0, 0, 0, 0.35));
}

.hero-logo svg {
  height: clamp(56px, 10vw, 80px);
  width: auto;
  color: var(--white);
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.5s forwards;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.8s forwards;
}

body[dir="rtl"] .hero-tagline { font-family: 'Amiri', serif; font-size: clamp(1.35rem, 3.2vw, 2rem); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 1.1s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-line {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards, scrollPulse 2.5s ease 2.5s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1.2); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover { background: #1da851; }

.link-elegant {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.link-elegant::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

body[dir="rtl"] .link-elegant::after { transform-origin: right; }

.link-elegant:hover::after { transform: scaleX(1); }

/* ── Sections ── */
section { padding: clamp(4rem, 10vw, 7rem) 0; }

.section-intro {
  max-width: 680px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-intro.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-heading {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.section-text {
  color: var(--gray);
  font-size: 1.0625rem;
  line-height: 1.85;
}

body[dir="rtl"] .section-text { font-size: 1.125rem; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── Image Loading ── */
.img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--beige);
}

.img-wrap img {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.img-wrap.loaded img { opacity: 1; }

.img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--beige) 0%, var(--off-white) 50%, var(--beige) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.img-wrap.loaded::before { opacity: 0; pointer-events: none; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── About Split ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.about-split-image:hover img { transform: scale(1.03); }

/* ── Editorial Collection Blocks ── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(480px, 70vh, 720px);
}

.editorial.reverse { direction: ltr; }
body[dir="rtl"] .editorial.reverse { direction: rtl; }

.editorial-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.editorial:hover .editorial-image img { transform: scale(1.04); }

.editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--off-white);
}

.editorial:nth-child(even) .editorial-content { background: var(--beige); }

.editorial-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.editorial-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}

.editorial-desc {
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.85;
}

/* ── Showroom ── */
.showroom-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
}

.showroom-photo {
  min-height: 480px;
  overflow: hidden;
}

.showroom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-details {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--beige);
}

.showroom-detail-row {
  margin-bottom: 1.75rem;
}

.showroom-detail-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.showroom-detail-value {
  font-size: 1.05rem;
  color: var(--charcoal);
}

.showroom-locations-section {
  background: var(--white);
}

.showroom-contact-link {
  color: inherit;
  transition: color var(--transition);
}

.showroom-contact-link:hover {
  color: var(--gold-deep);
}

.showroom-location-item {
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(29, 29, 29, 0.08);
}

.showroom-location-item--primary {
  border-top: 2px solid var(--gold);
  padding-top: 2rem;
  margin-top: 2rem;
}

.showroom-location-badge {
  display: inline-block;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.showroom-location-name {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.showroom-location-address {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* ── Authorized Distributors ── */
.brands-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.distributors-showcase {
  width: 100%;
  background: var(--white);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.distributors-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  flex-wrap: nowrap;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.distributor-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 0.25rem 0.5rem;
  transition: opacity var(--transition), transform var(--transition);
}

.distributor-logo img {
  display: block;
  height: clamp(52px, 6.5vw, 80px);
  width: auto;
  max-width: clamp(140px, 16vw, 220px);
  object-fit: contain;
  object-position: center;
}

.distributor-logo:hover {
  opacity: 0.72;
  transform: translateY(-2px);
}

.brands-section .section-heading {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 960px) {
  .distributors-track {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 3rem;
    padding: 1.5rem clamp(1.25rem, 5vw, 2rem) 2rem;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  }

  .distributors-track::-webkit-scrollbar {
    display: none;
  }

  .distributor-logo {
    scroll-snap-align: center;
    flex: 0 0 auto;
    min-width: min(68vw, 260px);
  }

  .distributor-logo img {
    height: clamp(56px, 14vw, 72px);
    max-width: min(68vw, 260px);
  }
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.contact-info-block h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.contact-row {
  margin-bottom: 1.75rem;
}

.contact-row-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-row-value { font-size: 1.05rem; }
.contact-row-value a:hover { color: var(--gold-deep); }

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-form-wrap {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--beige);
  background: var(--off-white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
}

body[dir="rtl"] .form-group input,
body[dir="rtl"] .form-group textarea,
body[dir="rtl"] .form-group select { text-align: right; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ── Page Hero (inner) ── */
.page-hero {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(29, 29, 29, 0.3) 0%,
    rgba(29, 29, 29, 0.62) 100%
  );
}

.page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: none;
  transform: none;
  opacity: 1;
}

.page-hero .hero-media.img-wrap {
  background: var(--charcoal);
}

.page-hero .hero-media.img-wrap::before {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  color: var(--white);
}

.page-hero-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}

.page-hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

body[dir="rtl"] .page-hero-sub { font-family: 'Amiri', serif; }

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.65);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo img {
  height: clamp(48px, 6vw, 64px);
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  height: 56px;
  width: auto;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-brand-text {
  font-size: 0.925rem;
  line-height: 1.85;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-haman { color: var(--gold); }

/* ── Collections page full editorial stack ── */
.collections-stack .editorial { margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav-left, .nav-right { display: none; }
  .menu-toggle { display: flex; }
  .header-actions {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  body:not([dir="rtl"]) .header-actions { right: 1.25rem; }
  body[dir="rtl"] .header-actions { left: 1.25rem; right: auto; }
  .mobile-nav { display: flex; }
  .header-inner { grid-template-columns: 1fr auto; justify-content: center; }
  .logo-center { grid-column: 1 / -1; justify-self: center; }
  .lang-btn-desktop { display: none; }
}

@media (max-width: 900px) {
  .about-split,
  .editorial,
  .showroom-block,
  .contact-layout { grid-template-columns: 1fr; }

  .editorial-image { min-height: 320px; aspect-ratio: 16/10; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-home .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    max-height: 100dvh;
    padding-top: var(--header-h);
    box-sizing: border-box;
    align-items: stretch;
    justify-content: stretch;
  }

  .page-home .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: var(--charcoal);
    background-image: url('../products/other/1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .page-home .hero-media .hero-bg {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    animation: none;
    transform: none;
  }

  .page-home .hero-overlay {
    background: rgba(0, 0, 0, 0.25);
  }

  .page-home .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    padding: 0 1.25rem;
    margin: 0;
  }

  .page-home .hero-title {
    font-size: clamp(1.25rem, 5.2vw, 1.65rem);
    letter-spacing: 0.14em;
    margin-bottom: 0.65rem;
    opacity: 1;
    transform: none;
    animation: none;
    line-height: 1.25;
  }

  .page-home .hero-tagline {
    font-size: clamp(0.95rem, 3.8vw, 1.125rem);
    margin-bottom: 1.25rem;
    line-height: 1.45;
    max-width: 22rem;
    opacity: 1;
    transform: none;
    animation: none;
  }

  body[dir="rtl"] .page-home .hero-tagline {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .page-home .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.65rem;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .page-home .hero-actions .btn {
    width: min(88vw, 320px);
    max-width: 320px;
    padding: 0.85rem 1.5rem;
  }

  .page-home .hero-scroll-line {
    display: none;
  }
}

@media (max-width: 600px) {
  :root { --header-h: 72px; }
  .page-hero {
    min-height: clamp(360px, 48vh, 480px);
  }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-channels { flex-direction: column; }
  .contact-channels .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Homepage Collections Showcase ── */
.home-collections {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.home-collections .product-collection {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 5vw, 4rem);
}

.home-collections .product-collection-intro {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.home-collections .product-collection-letter {
  font-size: clamp(3rem, 6vw, 4.5rem);
}

.home-collections .product-gallery {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 0.75rem;
}

.home-collections .product-gallery-item {
  aspect-ratio: 4 / 3;
}

.home-collections .product-gallery-item img {
  padding: 1.25rem;
}

/* ── Product Collections Catalog ── */
.collection-size {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-collection {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(29, 29, 29, 0.06);
}

.product-collection:nth-child(even) {
  background: var(--beige);
}

.product-collection-intro {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.product-collection-letter {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.product-collection-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.product-collection-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.85;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 0.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.product-gallery-item {
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  padding: 0.75rem;
  transition: transform 0.8s var(--ease);
}

.product-gallery-item:hover img {
  transform: scale(1.05);
}

.product-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, 0);
  transition: background var(--transition);
  pointer-events: none;
}

.product-gallery-item:hover::after {
  background: rgba(29, 29, 29, 0.08);
}

.product-collection-preview .editorial-image {
  background: var(--beige);
}

.product-collection-preview .editorial-image img {
  object-fit: contain;
  padding: 1rem;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(29, 29, 29, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-stage {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  margin: 0 auto;
}

.lightbox-stage img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  transition: color var(--transition);
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--gold);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2.5rem;
}

body[dir="rtl"] .lightbox-close {
  right: auto;
  left: 1.25rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

body[dir="rtl"] .lightbox-prev { left: auto; right: 1rem; }
body[dir="rtl"] .lightbox-next { right: auto; left: 1rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

@media (max-width: 600px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .lightbox-prev, .lightbox-next {
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
  }
}

