@import url("https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@300;400;500;600;700&display=swap");

:root {
  --gold: #b89a62;
  --gold-dark: #8f7547;
  --cream: #f7f5f2;
  --charcoal: #232323;
  --charcoal-soft: #343434;
  --gray: #efefef;
  --white: #ffffff;
  --ink: #171717;
  --muted: #76716a;
  --line: rgba(35, 35, 35, 0.12);
  --glass: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 70px rgba(35, 35, 35, 0.12);
  --soft-shadow: 0 14px 42px rgba(35, 35, 35, 0.09);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", Arial, sans-serif;
  --arabic: "Noto Kufi Arabic", "Tahoma", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  text-rendering: geometricPrecision;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 2000;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 18px;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 16px;
}

.container-xl {
  max-width: 1220px;
}

.section {
  padding: 118px 0;
  position: relative;
}

.section-tight {
  padding: 82px 0;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.display-title,
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.section-dark .display-title,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: var(--white);
}

.section-dark p {
  opacity: 0.72;
}

.display-title {
  font-size: clamp(3.7rem, 8vw, 8.4rem);
}

.section-title {
  font-size: clamp(2.55rem, 5vw, 5.6rem);
}

.sub-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.lead {
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 680px;
}

.text-gold {
  color: var(--gold) !important;
}

.text-muted-lux {
  color: var(--muted);
}

.btn-lux,
.btn-lux-outline,
.btn-lux-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 2px;
  padding: 14px 24px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border 0.25s ease, color 0.25s ease;
}

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

.btn-lux:hover,
.btn-lux:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lux-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-lux-outline:hover,
.btn-lux-outline:focus-visible {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-lux-light {
  border-color: rgba(35, 35, 35, 0.18);
  color: var(--charcoal);
  background: transparent;
}

.btn-lux-light:hover,
.btn-lux-light:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(35, 35, 35, 0.08);
  padding: 12px 0;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.site-header.is-scrolled .navbar-brand,
.site-header.header-solid .navbar-brand {
  color: var(--charcoal);
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-logo-img {
  width: min(184px, 38vw);
  height: auto;
  max-height: 66px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  padding: 5px 9px;
  box-shadow: 0 10px 28px rgba(35, 35, 35, 0.08);
}

.site-footer .brand-logo-img {
  width: 224px;
  max-height: none;
  background: var(--white);
}

.not-found-logo {
  width: min(280px, 76vw);
  height: auto;
  background: var(--white);
  border-radius: 4px;
  padding: 8px;
}

.brand-word {
  display: grid;
  line-height: 1;
  font-family: var(--serif);
  font-size: 1.34rem;
  text-transform: uppercase;
  color: currentColor;
}

.brand-word small {
  font-family: var(--sans);
  font-size: 0.54rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-top: 5px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 12px !important;
  position: relative;
}

.site-header.is-scrolled .nav-link,
.site-header.header-solid .nav-link {
  color: var(--charcoal);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.language-toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid rgba(184, 154, 98, 0.45);
  background: rgba(255, 255, 255, 0.88);
  color: var(--charcoal);
  border-radius: 999px;
  padding: 8px 13px;
  margin-left: auto;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
}

.navbar-toggler {
  border: 0;
  color: var(--white);
  margin-left: 10px;
  padding: 8px;
}

.site-header.is-scrolled .navbar-toggler,
.site-header.header-solid .navbar-toggler {
  color: var(--charcoal);
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (min-width: 992px) {
  .site-header .navbar-collapse {
    flex-grow: 0;
  }
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  min-height: 100vh;
}

.hero-swiper {
  overflow: hidden;
}

.hero-swiper .swiper-slide {
  overflow: hidden;
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child,
.hero-swiper .swiper-slide-active {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-swiper .swiper-slide:not(.swiper-slide-active) .hero-content {
  opacity: 0;
  visibility: hidden;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.34) 52%, rgba(18, 18, 18, 0.48));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 92px;
  max-width: 860px;
}

.hero-content .display-title {
  color: var(--white);
}

.hero-content p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-pagination {
  position: absolute;
  right: 44px;
  bottom: 44px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 42px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 32px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 8px;
  animation: scrollDot 1.8s infinite;
}

.quote-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 8rem);
  color: var(--charcoal);
  line-height: 0.98;
  max-width: 1030px;
}

.quote-text span {
  color: var(--gold);
  font-style: italic;
}

.collection-card,
.project-card,
.journal-card,
.testimonial-card,
.feature-card,
.contact-panel,
.product-card,
.spec-card {
  background: var(--white);
  border: 1px solid rgba(35, 35, 35, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.collection-card,
.project-card,
.product-card,
.journal-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover,
.project-card:hover,
.product-card:hover,
.journal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--gray);
}

.card-media.wide {
  aspect-ratio: 16 / 10;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.collection-card:hover .card-media img,
.project-card:hover .card-media img,
.product-card:hover .card-media img,
.journal-card:hover .card-media img,
.gallery-item:hover img {
  transform: scale(1.055);
}

.card-body-lux {
  padding: 28px;
}

.card-body-lux h3,
.card-body-lux h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.meta-line::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.craft-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 560px;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  gap: 18px;
}

.craft-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}

.craft-list i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 154, 98, 0.12);
  color: var(--gold);
  border-radius: 50%;
}

.project-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  min-height: 600px;
  background: var(--charcoal);
  color: var(--white);
}

.project-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-strip-content {
  padding: clamp(42px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-strip h2,
.project-strip p {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-item {
  padding: 42px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.masonry {
  columns: 3 260px;
  column-gap: 22px;
}

.gallery-item {
  display: block;
  position: relative;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray);
  break-inside: avoid;
  box-shadow: var(--soft-shadow);
}

.gallery-item img {
  width: 100%;
  transition: transform 0.7s ease;
}

.gallery-item::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: auto 18px 18px auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(35, 35, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.feature-card {
  padding: 34px;
  min-height: 100%;
  transition: background 0.25s ease, transform 0.25s ease;
}

.feature-card i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-card:hover {
  background: var(--charcoal);
  transform: translateY(-6px);
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover i {
  color: var(--white);
}

.testimonial-card {
  padding: 36px;
  min-height: 100%;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--charcoal);
}

.testimonial-card cite {
  color: var(--gold);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.instagram-tile {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.instagram-tile:hover img {
  transform: scale(1.06);
}

.newsletter-panel {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: clamp(44px, 7vw, 82px);
  color: var(--white);
}

.newsletter-panel h2,
.newsletter-panel p {
  color: var(--white);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 30px;
}

.form-control,
.form-select {
  min-height: 52px;
  border-radius: 2px;
  border: 1px solid rgba(35, 35, 35, 0.15);
  background-color: var(--white);
  color: var(--charcoal);
  padding: 14px 16px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(184, 154, 98, 0.18);
}

textarea.form-control {
  min-height: 150px;
}

.page-hero {
  min-height: 68vh;
  display: flex;
  align-items: end;
  padding: 160px 0 80px;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.78), rgba(18, 18, 18, 0.42)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero .container-xl {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  max-width: 920px;
}

.breadcrumb-lux {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.breadcrumb-lux a {
  color: var(--white);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(35, 35, 35, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid rgba(35, 35, 35, 0.14);
  background: transparent;
  color: var(--charcoal);
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 2px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 0.25s ease, color 0.25s ease, border 0.25s ease;
}

.filter-btn:hover,
.filter-btn:focus-visible,
.filter-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.product-card[data-hidden="true"],
.gallery-item[data-hidden="true"] {
  display: none;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 52px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-gallery a:first-child {
  grid-column: 1 / -1;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.detail-gallery a:first-child img {
  min-height: 560px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.spec-card {
  padding: 22px;
  box-shadow: none;
}

.spec-card span {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}

.spec-card strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.request-panel {
  border: 1px solid rgba(35, 35, 35, 0.1);
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.timeline {
  position: relative;
  display: grid;
  gap: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(184, 154, 98, 0.45);
}

.timeline-item {
  position: relative;
  padding-left: 52px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--gold);
  background: var(--cream);
  border-radius: 50%;
}

.contact-panel {
  padding: 36px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact-line {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.contact-line i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(184, 154, 98, 0.13);
  color: var(--gold);
  border-radius: 50%;
}

.map-panel {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(45deg, rgba(35, 35, 35, 0.88), rgba(35, 35, 35, 0.58)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 56px),
    var(--charcoal);
  display: flex;
  align-items: end;
  padding: 34px;
  color: var(--white);
}

.map-panel::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 0 0 18px rgba(184, 154, 98, 0.16);
}

.journal-card .card-media {
  aspect-ratio: 16 / 11;
}

.journal-date {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0.48)), url("../images/hero/hero-luxury-interior.png") center / cover;
  color: var(--white);
  padding: 120px 16px;
}

.not-found h1 {
  color: var(--white);
  font-size: clamp(6rem, 18vw, 16rem);
}

.site-footer {
  background: #1d1d1d;
  color: var(--white);
  padding: 82px 0 28px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.66);
}

.footer-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 58px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 10px;
}

.toast-lux {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 3000;
  min-width: min(360px, calc(100vw - 36px));
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast-lux.show {
  opacity: 1;
  transform: translateY(0);
}

.ratio-lux {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
}

.ratio-lux img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 1030;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1f8f5f;
  color: var(--white);
  box-shadow: 0 16px 40px rgba(31, 143, 95, 0.3);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
  transform: translateY(-3px);
}

.border-lux {
  border: 1px solid rgba(35, 35, 35, 0.1);
}

.bg-pattern {
  background:
    linear-gradient(90deg, rgba(247, 245, 242, 0.95), rgba(247, 245, 242, 0.95)),
    repeating-linear-gradient(90deg, rgba(35, 35, 35, 0.045) 0 1px, transparent 1px 120px);
}

html[lang="ar"] body,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select {
  font-family: var(--arabic);
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] .display-title,
html[lang="ar"] .section-title,
html[lang="ar"] .sub-title,
html[lang="ar"] .quote-text,
html[lang="ar"] .testimonial-card blockquote,
html[lang="ar"] .footer-title {
  font-family: var(--arabic);
  line-height: 1.25;
}

html[lang="ar"] .display-title {
  font-size: clamp(3.05rem, 7vw, 7.2rem);
}

html[lang="ar"] .section-title {
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
}

html[lang="ar"] .sub-title {
  font-size: clamp(1.75rem, 2.4vw, 2.65rem);
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .navbar-nav,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .craft-list {
  padding-right: 0;
}

html[dir="rtl"] .ms-lg-2 {
  margin-left: 0 !important;
}

html[dir="rtl"] .hero-slide::before,
html[dir="rtl"] .page-hero::before {
  transform: none;
}

html[dir="rtl"] .swiper {
  direction: ltr;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .testimonial-card,
html[dir="rtl"] .card-body-lux,
html[dir="rtl"] .project-strip-content {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .eyebrow {
  flex-direction: row-reverse;
}

html[dir="rtl"] .meta-line::before {
  order: 2;
}

html[dir="rtl"] .hero-pagination {
  right: auto;
  left: 44px;
}

html[dir="rtl"] .language-toggle {
  margin-left: auto;
  margin-right: 0;
}

html[dir="rtl"] .navbar-toggler {
  margin-left: 10px;
  margin-right: 0;
}

html[dir="rtl"] .craft-list li {
  grid-template-columns: 1fr 44px;
}

html[dir="rtl"] .craft-list li > i {
  grid-column: 2;
  grid-row: 1;
}

html[dir="rtl"] .craft-list li > div {
  grid-column: 1;
  grid-row: 1;
}

html[dir="rtl"] .timeline::before {
  left: auto;
  right: 14px;
}

html[dir="rtl"] .timeline-item {
  padding-left: 0;
  padding-right: 52px;
}

html[dir="rtl"] .timeline-item::before {
  left: auto;
  right: 7px;
}

html[dir="rtl"] .gallery-item::after {
  right: auto;
  left: 18px;
}

html[dir="rtl"] .toast-lux {
  right: auto;
  left: 18px;
  border-left: 0;
  border-right: 3px solid var(--gold);
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 22px;
}

html[dir="rtl"] [data-aos="fade-left"],
html[dir="rtl"] [data-aos="fade-right"] {
  transform: translate3d(0, 26px, 0);
}

html[dir="rtl"] [data-aos="fade-left"].aos-animate,
html[dir="rtl"] [data-aos="fade-right"].aos-animate {
  transform: translate3d(0, 0, 0);
}
