/* Le Château / Saraya — luxury (logo palette: black + metallic gold) */
:root {
  --saraya-gold: #c5a059;
  --saraya-gold-light: #f2e6c9;
  --saraya-gold-mid: #d4af5a;
  --saraya-gold-dark: #7a5c18;
  --saraya-gold-bronze: #5c4510;
  --saraya-black: #000000;
  --saraya-charcoal: #0a0a0a;
  --saraya-slate: #111111;
  --saraya-cream: #f5efe3;
  --saraya-muted: rgba(245, 239, 227, 0.62);
  --saraya-border: rgba(197, 160, 89, 0.28);
  --font-display: "Playfair Display", "Amiri", serif;
  --font-script: "Great Vibes", "Amiri", cursive;
  --font-body: "Tajawal", system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--saraya-black);
  color: var(--saraya-cream);
  font-size: 1.05rem;
  padding-top: 80px;
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
}

/* يمنع توسّع أفقي غير مقصود من صفوف Bootstrap أو عناصر مرنة */
img,
video {
  max-width: 100%;
  height: auto;
}

/* Logo image (collection-04 — Le Château) */
.site-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo-img {
  height: 58px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.12));
}

.site-logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saraya-muted);
  line-height: 1.3;
  max-width: 8rem;
  border-right: 1px solid var(--saraya-border);
  padding-right: 0.75rem;
}

@media (max-width: 400px) {
  .site-logo-tagline {
    display: none;
  }
}

.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Brand cards with remote logos */
.brand-card--logo {
  min-height: 104px;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-card__logo-wrap {
  position: relative;
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.05);
}

.brand-card__fallback {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--saraya-black);
  margin: 0;
  letter-spacing: 0.03em;
  display: none;
}

.brand-card__fallback.is-visible {
  display: block;
}

.brand-card__meta {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 0.5rem;
}

/* Section: brands on true black + soft vignette behind panel */
.section-saraya--brands {
  position: relative;
  overflow: hidden;
  background: var(--saraya-black);
  color: var(--saraya-cream);
}

.section-saraya--brands::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% 0%, rgba(197, 160, 89, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 100% 100%, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-saraya--brands > .container {
  position: relative;
  z-index: 1;
}

.section-saraya--brands .section-label {
  color: var(--saraya-gold-mid);
}

.section-saraya--brands .section-title {
  color: var(--saraya-cream);
}

.section-saraya--brands .section-lead {
  color: var(--saraya-muted);
}

.section-saraya--brands .brand-index {
  color: rgba(197, 160, 89, 0.28);
}

.section-saraya--brands .brand-card {
  background: #fafafa;
  border: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.section-saraya--brands .brand-card:hover {
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Brands directory — luxe panel + flexible grid (CSS vars: --brands-dir-cols, --brands-dir-gap, --brands-dir-max) */
.brands-directory__intro {
  max-width: 36rem;
}

.brands-directory {
  --brands-dir-cols: 2;
  --brands-dir-gap: clamp(0.65rem, 2.5vw, 1.05rem);
  --brands-dir-max: min(100%, 640px);
  --brands-dir-pad-x: clamp(0.85rem, 4vw, 1.65rem);
  --brands-dir-pad-y: clamp(1.25rem, 4vw, 2.1rem);
  position: relative;
  max-width: var(--brands-dir-max);
  margin-left: auto;
  margin-right: auto;
  padding: var(--brands-dir-pad-y) var(--brands-dir-pad-x) calc(var(--brands-dir-pad-y) + 0.25rem);
  overflow: hidden;
  background:
    linear-gradient(168deg, #fdfcfa 0%, #f8f3eb 42%, #f1ebe0 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 32%),
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(197, 160, 89, 0.08) 0%, transparent 55%);
  border-radius: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(197, 160, 89, 0.34);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.78) inset,
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 0 0 1px rgba(197, 160, 89, 0.12),
    0 44px 88px rgba(0, 0, 0, 0.5),
    0 14px 40px rgba(0, 0, 0, 0.16);
  isolation: isolate;
}

.brands-directory__sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 38%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
  mix-blend-mode: soft-light;
}

.brands-directory__corners {
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.brands-directory__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(184, 147, 60, 0.35);
  border-style: solid;
  border-width: 0;
}

.brands-directory__corner--tl {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
  border-top-right-radius: 4px;
}

.brands-directory__corner--tr {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
  border-top-left-radius: 4px;
}

.brands-directory__corner--bl {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
  border-bottom-right-radius: 4px;
}

.brands-directory__corner--br {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-bottom-left-radius: 4px;
}

.brands-directory > *:not(.brands-directory__sheen):not(.brands-directory__corners) {
  position: relative;
  z-index: 1;
}

@media (max-width: 429.98px) {
  .brands-directory {
    --brands-dir-cols: 1;
  }
}

@media (min-width: 768px) {
  .brands-directory {
    --brands-dir-max: min(100%, 720px);
  }
}

@media (min-width: 992px) {
  .brands-directory {
    --brands-dir-cols: 3;
    --brands-dir-max: min(100%, 900px);
  }
}

@media (min-width: 1200px) {
  .brands-directory {
    --brands-dir-cols: 4;
    --brands-dir-max: min(100%, 1080px);
  }
}

@media (min-width: 1400px) {
  .brands-directory {
    --brands-dir-max: min(100%, 1140px);
  }
}

.brands-directory__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding-bottom: 1.15rem;
  margin-bottom: 1.45rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.brands-directory__head-line {
  flex: 1;
  height: 1px;
  max-width: 4rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 147, 60, 0.45) 50%,
    transparent
  );
  opacity: 0.9;
}

.brands-directory__head-center {
  text-align: center;
  flex-shrink: 0;
}

.brands-directory__eyebrow {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(122, 92, 32, 0.72);
  margin: 0 0 0.35rem;
}

.brands-directory__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.brands-directory__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.8vw, 1.28rem);
  color: #101010;
  margin: 0;
  letter-spacing: 0.02em;
}

.brands-directory__chevron {
  font-size: 1.05rem;
  color: rgba(138, 107, 47, 0.78);
  margin-top: 2px;
}

.brands-directory__block {
  scroll-margin-top: 6rem;
  margin-bottom: 1.65rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.045);
}

.brands-directory__block--last {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Letter only inside luxe circular medallion above each group */
.brands-directory__block-head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 1.05rem;
  padding-bottom: 0.15rem;
}

.brands-directory__medallion {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.35rem, 12vw, 4.6rem);
  height: clamp(3.35rem, 12vw, 4.6rem);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.95) 0%, transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(197, 160, 89, 0.08) 0%, transparent 48%),
    linear-gradient(155deg, #fffef9 0%, #f4ebe0 48%, #e8dcc8 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.98) inset,
    0 0 0 2px rgba(197, 160, 89, 0.38),
    0 0 0 3px rgba(252, 248, 242, 0.98),
    0 0 0 4px rgba(122, 92, 32, 0.18),
    0 14px 36px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(197, 160, 89, 0.12);
}

.brands-directory__medallion::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 68%);
  z-index: -1;
  pointer-events: none;
}

.brands-directory__medallion::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  pointer-events: none;
  opacity: 0.85;
}

.brands-directory__medallion .brands-directory__letter {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4.2vw + 0.35rem, 2.05rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
  background: linear-gradient(168deg, #f0e2c4 0%, #c9a24a 38%, #8a6a24 72%, #4a3810 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.65));
}

.brands-directory__grid.row {
  display: grid;
  grid-template-columns: repeat(var(--brands-dir-cols), minmax(0, 1fr));
  gap: var(--brands-dir-gap);
  margin: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.brands-directory__grid.row > [class*="col"] {
  width: 100%;
  max-width: none;
  flex: none;
  padding: 0;
}

.section-saraya--brands .brand-card.brand-card--directory {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(20, 20, 24, 0.055);
  border-radius: clamp(11px, 2.2vw, 17px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 14px rgba(0, 0, 0, 0.04);
  min-height: clamp(88px, 22vw, 112px);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}

@media (prefers-reduced-motion: reduce) {
  .section-saraya--brands .brand-card.brand-card--directory {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .section-saraya--brands .brand-card.brand-card--directory:hover {
    transform: none;
  }

}

.section-saraya--brands .brand-card.brand-card--directory:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.38);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.11),
    0 0 0 1px rgba(197, 160, 89, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.98) inset;
}

.section-saraya--brands .brand-card--directory .brand-card__logo-wrap--local {
  min-height: clamp(76px, 20vw, 100px);
  padding: clamp(0.6rem, 2.8vw, 1rem) clamp(0.5rem, 2vw, 0.85rem);
}

.section-saraya--brands .brand-card--directory .brand-logo-local {
  max-height: clamp(44px, 11vw, 72px);
}

.hero-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  background: linear-gradient(120deg, var(--saraya-gold-light) 0%, var(--saraya-gold-mid) 35%, var(--saraya-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  display: block;
  margin-bottom: 0.35rem;
}

.nav-icon {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-left: 0.35rem;
  vertical-align: -0.125em;
}

.pillar-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--saraya-border);
  color: var(--saraya-gold-mid);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* Navbar */
.navbar-saraya {
  background: rgba(0, 0, 0, 0.94) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--saraya-border);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  width: 100%;
  max-width: 100%;
  inset-inline: 0;
}

@media (max-width: 991.98px) {
  .navbar-saraya__inner.container {
    max-width: 100%;
    padding-inline: max(0.65rem, env(safe-area-inset-left, 0px)) max(0.65rem, env(safe-area-inset-right, 0px));
  }

  .navbar-saraya .navbar-brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0 !important;
    padding-inline-start: 0;
    padding-inline-end: 0.25rem;
  }

  .navbar-saraya .navbar-toggler {
    flex-shrink: 0;
    margin-inline-start: 0;
  }

  .site-logo-link {
    min-width: 0;
    max-width: 100%;
  }

  .site-logo-img {
    max-width: min(200px, calc(100% - 0.25rem));
    object-position: right center;
  }
}

@media (min-width: 992px) {
  .navbar-saraya__inner.container {
    padding-inline: max(0.75rem, env(safe-area-inset-left, 0px)) max(0.75rem, env(safe-area-inset-right, 0px));
  }
}

.navbar-saraya .nav-link {
  color: var(--saraya-cream) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-saraya .nav-link:hover,
.navbar-saraya .nav-link:focus {
  color: var(--saraya-gold-light) !important;
}

.navbar-saraya .btn-gold-outline {
  border: 1px solid var(--saraya-gold);
  color: var(--saraya-gold-light);
  font-weight: 600;
  padding: 0.45rem 1.25rem;
  border-radius: 0;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.navbar-saraya .btn-gold-outline:hover {
  background: linear-gradient(135deg, var(--saraya-gold-dark), var(--saraya-gold));
  color: var(--saraya-black);
  border-color: var(--saraya-gold-light);
}

.navbar-toggler {
  border-color: var(--saraya-border);
}

.navbar-toggler-luxe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.65rem;
  color: var(--saraya-gold-light);
  border: 1px solid var(--saraya-border) !important;
  border-radius: 0;
}

.navbar-toggler-luxe:focus {
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.2);
  color: var(--saraya-gold-mid);
}

.navbar-toggler-luxe__icon {
  font-size: 1.75rem;
  line-height: 1;
  display: block;
}

.navbar-toggler-luxe:hover {
  color: #fff;
  border-color: rgba(197, 160, 89, 0.45) !important;
}

.navbar-toggler-icon {
  filter: invert(0.92);
}

/* About: luxury brand partners panel */
.about-brands-luxe {
  position: relative;
  padding: 1.35rem 1.1rem 1.15rem;
  background: linear-gradient(
    160deg,
    rgba(12, 10, 8, 0.94) 0%,
    rgba(4, 4, 6, 0.97) 45%,
    rgba(18, 14, 8, 0.92) 100%
  );
  border: 1px solid rgba(197, 160, 89, 0.32);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55) inset,
    0 0 48px rgba(197, 160, 89, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.about-brands-luxe::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(197, 160, 89, 0.1);
  pointer-events: none;
  z-index: 0;
}

.about-brands-luxe__sheen {
  position: absolute;
  top: -30%;
  left: -15%;
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(212, 175, 90, 0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.about-brands-luxe__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.about-brands-luxe__corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(197, 160, 89, 0.55);
  border-style: solid;
}

.about-brands-luxe__corner--tl {
  top: 14px;
  left: 14px;
  border-width: 1px 0 0 1px;
}

.about-brands-luxe__corner--tr {
  top: 14px;
  right: 14px;
  border-width: 1px 1px 0 0;
}

.about-brands-luxe__corner--bl {
  bottom: 14px;
  left: 14px;
  border-width: 0 0 1px 1px;
}

.about-brands-luxe__corner--br {
  bottom: 14px;
  right: 14px;
  border-width: 0 1px 1px 0;
}

.about-brands-luxe__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.about-brands-luxe__gem {
  color: var(--saraya-gold-mid);
  font-size: 0.65rem;
  opacity: 0.85;
}

.about-brands-luxe__titles {
  text-align: center;
}

.about-brands-luxe__eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(232, 212, 139, 0.48);
  margin: 0 0 0.2rem;
}

.about-brands-luxe__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--saraya-gold-light);
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.about-brands-luxe__marquee {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  min-width: 0;
  width: 100%;
}

.about-brands-luxe__cell {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 0;
  max-width: calc(50% - 0.325rem);
  box-sizing: border-box;
}

@media (min-width: 400px) {
  .about-brands-luxe__cell {
    flex: 1 1 calc(33.333% - 0.5rem);
    min-width: 0;
    max-width: calc(33.333% - 0.45rem);
  }
}

.about-brands-luxe__medallion {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 0.55rem 0.45rem;
  background: linear-gradient(180deg, #fdfcfa 0%, #f0ebe3 100%);
  border: 1px solid rgba(197, 160, 89, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-brands-luxe__medallion:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(0, 0, 0, 0.28);
}

.about-brands-luxe__medallion img {
  max-height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.about-brands-luxe__footer {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.about-brands-luxe__cta {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saraya-gold-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-brands-luxe__cta:hover {
  color: var(--saraya-gold-light);
}

.brand-card__logo-wrap--local {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
}

.brand-logo-local {
  max-height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .brand-logo-local {
    max-height: 72px;
  }
}

/* Hero */
.hero-saraya {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--saraya-charcoal) center/cover no-repeat;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-saraya::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(197, 160, 89, 0.14) 0%, transparent 52%),
    linear-gradient(
      118deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.76) 38%,
      rgba(18, 14, 8, 0.88) 100%
    );
  pointer-events: none;
}

.hero-saraya::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 100%, rgba(197, 160, 89, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero-saraya .hero-inner {
  position: relative;
  z-index: 1;
}

.hero-saraya__intro {
  position: relative;
  padding-bottom: 0.25rem;
}

.hero-saraya__intro::before {
  content: "";
  position: absolute;
  top: -0.35rem;
  right: 0;
  width: min(100%, 12rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 160, 89, 0.65) 0%,
    rgba(197, 160, 89, 0.15) 100%
  );
  opacity: 0.9;
}

.hero-saraya .hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(242, 230, 201, 0.92);
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
  max-width: 22rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-saraya__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.15rem, 5.2vw, 3.65rem);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(0, 0, 0, 0.2);
}

.hero-saraya__title-accent {
  background: linear-gradient(105deg, var(--saraya-gold-light) 0%, var(--saraya-gold-mid) 42%, #b8892e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(197, 160, 89, 0.25));
}

.hero-saraya__lead.lead {
  color: rgba(245, 239, 227, 0.78);
  max-width: 34rem;
  font-weight: 400;
  line-height: 1.8;
  font-size: clamp(1.02rem, 2.1vw, 1.12rem);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.hero-saraya__actions .btn {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-gold-solid {
  background: linear-gradient(
    135deg,
    var(--saraya-gold-light) 0%,
    var(--saraya-gold-mid) 38%,
    var(--saraya-gold-dark) 100%
  );
  color: var(--saraya-black) !important;
  font-weight: 700;
  border: none;
  border-radius: 0;
  padding: 0.85rem 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.btn-gold-solid:hover {
  filter: brightness(1.08);
  color: var(--saraya-black) !important;
}

.btn-ghost-light {
  border: 1px solid rgba(247, 243, 235, 0.35);
  color: var(--saraya-cream) !important;
  border-radius: 0;
  padding: 0.85rem 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: transparent;
}

.btn-ghost-light:hover {
  border-color: var(--saraya-gold);
  color: var(--saraya-gold-light) !important;
}

/* Sections */
.section-saraya {
  padding: 5rem 0;
}

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

.section-saraya--slate {
  background: var(--saraya-slate);
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--saraya-gold);
  margin-bottom: 0.75rem;
}

.section-saraya--cream .section-label {
  color: var(--saraya-gold-dark);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 1rem;
}

.section-saraya--cream .section-title {
  color: var(--saraya-black);
}

.section-lead {
  color: var(--saraya-muted);
  max-width: 40rem;
  line-height: 1.8;
}

.section-saraya--cream .section-lead {
  color: rgba(20, 20, 24, 0.72);
}

.gold-rule {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--saraya-gold-dark), var(--saraya-gold-mid), var(--saraya-gold-light));
  margin-bottom: 1.5rem;
}

/* About — noir (matches logo) */
.section-saraya--about-dark {
  background: linear-gradient(180deg, #000000 0%, #0c0a08 55%, #000000 100%);
  color: var(--saraya-cream);
}

.section-saraya--about-dark .section-label {
  color: var(--saraya-gold-mid);
}

.section-saraya--about-dark .section-title {
  color: var(--saraya-gold-light);
}

.section-saraya--about-dark .section-lead {
  color: var(--saraya-muted);
}

.section-saraya--about-dark .about-list {
  color: var(--saraya-muted);
}

.section-saraya--about-dark .frame-gold {
  border-color: rgba(197, 160, 89, 0.35);
  background: linear-gradient(145deg, rgba(197, 160, 89, 0.06), transparent);
}

/* Bilingual company introduction */
.intro-block-en {
  direction: ltr;
  text-align: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 239, 227, 0.78);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-right-width: 3px;
  padding: 1.25rem 1.35rem;
  margin-top: 1.5rem;
  background: rgba(0, 0, 0, 0.35);
}

.intro-block-en h3 {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saraya-gold-mid);
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
}

.intro-block-en p {
  margin: 0;
}

.contact-tel-list a {
  text-decoration: none;
}

.contact-tel-list a:hover {
  text-decoration: underline;
}

/* About image frame */
.frame-gold {
  border: 1px solid var(--saraya-border);
  padding: 0.5rem;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.08), transparent);
}

.frame-gold img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Brand grid */
.brand-index {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(201, 162, 39, 0.35);
  line-height: 1;
  padding-top: 0.25rem;
}

.section-saraya--cream .brand-index {
  color: rgba(138, 107, 26, 0.35);
}

.brand-card {
  background: #fff;
  border: 1px solid rgba(20, 20, 24, 0.08);
  border-radius: 12px;
  padding: 1.35rem 1rem;
  text-align: center;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-card:hover {
  box-shadow: 0 12px 40px rgba(20, 20, 24, 0.08);
  border-color: rgba(201, 162, 39, 0.35);
}

.brand-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--saraya-black);
  letter-spacing: 0.04em;
  margin: 0;
}

.brand-card__name--script {
  font-style: italic;
  font-weight: 500;
}

/* Gallery */
.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--saraya-border);
  background: var(--saraya-charcoal);
  aspect-ratio: 4/5;
}

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

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.9));
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .caption {
  opacity: 1;
}

.gallery-card {
  position: relative;
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--saraya-charcoal) 0%, #1a1510 50%, var(--saraya-black) 100%);
  border-top: 1px solid var(--saraya-border);
  border-bottom: 1px solid var(--saraya-border);
  padding: 4rem 0;
}

/* Contact — luxury framed panel */
.contact-luxe {
  position: relative;
  padding: 2.75rem 2.25rem 2.5rem;
  background: linear-gradient(
    165deg,
    rgba(22, 18, 12, 0.92) 0%,
    rgba(6, 6, 8, 0.96) 42%,
    rgba(14, 12, 8, 0.94) 100%
  );
  border: 1px solid rgba(197, 160, 89, 0.38);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.65) inset,
    0 0 80px rgba(197, 160, 89, 0.06),
    0 28px 56px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.contact-luxe::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(197, 160, 89, 0.14);
  pointer-events: none;
  z-index: 0;
}

.contact-luxe__sheen {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(212, 175, 90, 0.12) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.contact-luxe__corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.contact-luxe__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--saraya-gold-mid);
  border-style: solid;
  opacity: 0.85;
}

.contact-luxe__corner--tl {
  top: 18px;
  left: 18px;
  border-width: 2px 0 0 2px;
}

.contact-luxe__corner--tr {
  top: 18px;
  right: 18px;
  border-width: 2px 2px 0 0;
}

.contact-luxe__corner--bl {
  bottom: 18px;
  left: 18px;
  border-width: 0 0 2px 2px;
}

.contact-luxe__corner--br {
  bottom: 18px;
  right: 18px;
  border-width: 0 2px 2px 0;
}

.contact-luxe__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-luxe__line {
  flex: 1;
  min-width: 2rem;
  max-width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.45), transparent);
}

.contact-luxe__gem {
  color: var(--saraya-gold-mid);
  font-size: 0.85rem;
  opacity: 0.9;
  text-shadow: 0 0 20px rgba(197, 160, 89, 0.35);
}

.contact-luxe__titles {
  text-align: center;
}

.contact-luxe__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(232, 212, 139, 0.55);
  margin: 0 0 0.35rem;
}

.contact-luxe__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--saraya-gold-light);
  margin: 0;
  letter-spacing: 0.04em;
}

.contact-luxe__direct {
  position: relative;
  z-index: 2;
}

.contact-luxe__intro {
  color: var(--saraya-muted);
  line-height: 1.85;
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
}

.contact-luxe__channels {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-luxe__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: rgba(0, 0, 0, 0.38);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-luxe__channel:hover {
  border-color: rgba(212, 175, 90, 0.48);
  background: rgba(197, 160, 89, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  color: inherit;
}

.contact-luxe__channel:focus-visible {
  outline: 2px solid var(--saraya-gold-mid);
  outline-offset: 2px;
}

.contact-luxe__channel--primary {
  border-color: rgba(212, 175, 90, 0.38);
  background: linear-gradient(125deg, rgba(197, 160, 89, 0.12) 0%, rgba(0, 0, 0, 0.35) 55%);
}

.contact-luxe__channel--primary:hover {
  background: linear-gradient(125deg, rgba(197, 160, 89, 0.18) 0%, rgba(0, 0, 0, 0.4) 55%);
}

.contact-luxe__channel-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--saraya-gold-mid);
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.25);
}

.contact-luxe__channel-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: right;
}

.contact-luxe__channel-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 212, 139, 0.52);
}

.contact-luxe__channel-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--saraya-cream);
  letter-spacing: 0.02em;
}

.contact-luxe__channel-value--email {
  font-size: 0.82rem;
  font-weight: 500;
  word-break: break-word;
}

.contact-luxe__channel-arrow {
  color: rgba(197, 160, 89, 0.45);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-luxe__closing {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 239, 227, 0.4);
  margin: 1.85rem 0 0;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.contact-luxe__closing-mark {
  color: rgba(197, 160, 89, 0.32);
  margin: 0 0.3rem;
}

/* Footer */
.footer-saraya {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--saraya-border);
  font-size: 0.9rem;
  color: var(--saraya-muted);
}

.footer-saraya a {
  color: var(--saraya-gold-light);
  text-decoration: none;
}

.footer-saraya a:hover {
  text-decoration: underline;
}

.footer-saraya__credit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.footer-saraya__credit-ornament {
  flex: 1;
  height: 1px;
  max-width: 5rem;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.4) 50%, transparent);
  opacity: 0.9;
}

.footer-saraya__credit-inner {
  text-align: center;
  padding: 0.65rem 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.25) 100%);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

.footer-saraya__credit-text {
  font-family: var(--font-body);
  line-height: 1.6;
}

.footer-saraya__credit-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(245, 239, 227, 0.45);
  font-weight: 500;
}

.footer-saraya__credit-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-decoration: none !important;
  color: var(--saraya-gold-light);
  transition: color 0.25s ease, filter 0.25s ease;
}

.footer-saraya__credit-link:hover {
  color: var(--saraya-cream);
  filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
  text-decoration: none !important;
}

.footer-saraya__credit-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 252, 248, 0.95);
}

.footer-saraya__credit-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.65);
}

.footer-saraya__credit-link:focus-visible {
  outline: 2px solid rgba(197, 160, 89, 0.65);
  outline-offset: 4px;
}

@media (max-width: 575.98px) {
  .footer-saraya__credit-ornament {
    max-width: 2rem;
  }

  .footer-saraya__credit-inner {
    padding: 0.55rem 1rem;
    width: 100%;
    max-width: 20rem;
  }
}

/* Sparkle texture (subtle) */
.sparkle-bg {
  position: relative;
}

.sparkle-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(232, 212, 139, 0.05) 0%, transparent 35%);
  pointer-events: none;
}

/* Pillars */
.pillar-card {
  border: 1px solid var(--saraya-border);
  padding: 1.75rem;
  height: 100%;
  background: rgba(20, 20, 24, 0.5);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--saraya-gold-light);
}

.pillar-card p {
  color: var(--saraya-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
