/* شركة المجلس — luxury corporate (RTL) */
:root {
  --red-deep: #6b0a0f;
  --red-rich: #8b0000;
  --red-bright: #b3121d;
  --black: #0a0a0b;
  --charcoal: #121214;
  --graphite: #1a1a1f;
  --white: #f7f5f2;
  --muted: rgba(247, 245, 242, 0.65);
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.35);
  --glass: rgba(18, 18, 20, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-deep: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius-lg: 22px;
  --radius-md: 14px;
  --font: "Amiri", Georgia, "Traditional Arabic", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.hero__title,
.section-title,
.brand__name,
.footer__name,
.stat__num,
.btn,
.timeline__year {
  font-weight: 700;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1a0a0c 0%, #050506 70%);
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__mark {
  display: block;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.preloader__tag {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.preloader__bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-inline: auto;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-rich), var(--gold));
  animation: loadbar 1.2s var(--ease-out) forwards;
}

@keyframes loadbar {
  to {
    width: 100%;
  }
}

/* Custom cursor (desktop) */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  display: none;
}

@media (pointer: fine) and (min-width: 1024px) {
  .cursor-dot,
  .cursor-ring {
    display: block;
  }
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

body.is-hovering .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: var(--gold);
}

/* Smoke layers */
.smoke-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.smoke {
  position: absolute;
  width: 140%;
  height: 60%;
  left: -20%;
  bottom: -10%;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 0, 0, 0.12) 0%,
    transparent 65%
  );
  filter: blur(60px);
  opacity: 0.45;
  animation: smokeFloat 28s ease-in-out infinite;
}

.smoke--2 {
  left: 10%;
  bottom: 5%;
  animation-delay: -8s;
  opacity: 0.3;
}

.smoke--3 {
  left: -30%;
  bottom: 20%;
  animation-delay: -14s;
  opacity: 0.25;
}

.smoke--4 {
  left: 40%;
  bottom: -5%;
  animation-delay: -20s;
  opacity: 0.2;
}

@keyframes smokeFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, -3%) scale(1.05);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--glass-border);
}

.site-header__bar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.15rem;
}

.brand__name {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--white);
}

.brand__tag {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
  max-width: min(320px, 55vw);
}

.nav-main {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1100px) {
  .nav-main {
    display: flex;
  }
}

.nav-main a {
  padding: 0.45rem 0.55rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

@media (min-width: 1280px) {
  .nav-main a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

.nav-main a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  display: none;
}

@media (min-width: 1100px) {
  .header-cta {
    display: inline-flex;
  }
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 1100px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(18, 18, 20, 0.95);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.site-header.is-open .mobile-nav {
  display: flex;
}

.mobile-nav a {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--muted);
}

.mobile-nav a:hover {
  color: var(--white);
  background: rgba(139, 0, 0, 0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: var(--white);
  box-shadow: 0 12px 40px rgba(139, 0, 0, 0.45);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(139, 0, 0, 0.55);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.btn--gold {
  background: linear-gradient(135deg, #d4af37, #8a6a12);
  color: #0a0a0b;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
}

.btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  margin-top: 1rem;
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.25);
}

.btn--wa:hover {
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 12vw, 9rem) clamp(1.25rem, 5vw, 4rem) 4rem;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-photo {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/27793709/pexels-photo-27793709.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.88) 0%, rgba(10, 10, 11, 0.55) 45%, rgba(10, 10, 11, 0.92) 100%),
    radial-gradient(ellipse 90% 70% at 70% 20%, rgba(139, 0, 0, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.4;
}

.hero__glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero__glow--a {
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  top: 10%;
  left: 15%;
  background: #8b0000;
}

.hero__glow--b {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  bottom: 15%;
  right: 10%;
  background: #c9a227;
  opacity: 0.12;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 920px;
}

.hero__eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 1.25rem;
  font-weight: 700;
}

.hero__title {
  font-size: clamp(2.35rem, 6.5vw, 4.25rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: 0;
}

.hero__badge {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.45rem 1.15rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  background: rgba(201, 162, 39, 0.06);
}

.hero__accent {
  background: linear-gradient(120deg, #fff 0%, rgba(255, 255, 255, 0.75) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 2rem;
  font-weight: 400;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__meta-num {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
}

.hero__meta-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero__meta-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head--light .section-title {
  color: var(--white);
}

.section-head--light .section-desc {
  color: rgba(247, 245, 242, 0.75);
}

.glass-panel {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* About */
.about {
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

.about__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .about__grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.about__story h3 {
  margin-top: 0;
  font-size: 1.15rem;
  color: var(--gold);
}

.about__story h3:not(:first-child) {
  margin-top: 1.5rem;
}

.about__story p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.about__list {
  margin: 1rem 0 0;
  padding: 0 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about__list li {
  margin-bottom: 0.65rem;
}

.about__list li::marker {
  color: var(--gold);
}

.timeline {
  position: relative;
  padding-right: 1.5rem;
}

.timeline__line {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red-rich), transparent);
  border-radius: 99px;
}

.timeline__item {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.timeline__year {
  display: inline-block;
  font-weight: 900;
  color: var(--red-bright);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.timeline__body h4 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.timeline__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
}

/* Import */
.import__parallax {
  background: radial-gradient(ellipse at 30% 0%, rgba(139, 0, 0, 0.35) 0%, transparent 50%),
    var(--graphite);
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.import__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.import__inner .section-head {
  margin-bottom: 0;
}

.import__map {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: stretch;
}

@media (min-width: 900px) {
  .import__map {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(1.5rem, 3.5vw, 2.25rem);
  }
}

@media (max-width: 899px) {
  .import__map {
    display: flex;
    flex-direction: column;
  }

  .import__features {
    order: 1;
  }

  .map-visual.import-visual {
    order: 2;
    min-height: 300px;
    height: auto;
  }
}

.map-visual.import-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(8, 8, 10, 1) 100%);
  padding: clamp(0.75rem, 2vw, 1rem);
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.import-showcase {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .import-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.import-showcase__card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 0.7rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.import-showcase__card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.import-showcase__card h4 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
}

.import-showcase__card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.import-showcase__card--wide {
  grid-column: 1 / -1;
}

.import-visual__caption {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(247, 245, 242, 0.5);
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .import-showcase__card {
    padding: 0.6rem;
  }
}

.import__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
  min-height: 0;
}

.import-card.glass-panel {
  padding: 0.95rem 1rem 1rem 1.1rem;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  row-gap: 0.3rem;
  align-items: start;
  border-color: rgba(255, 255, 255, 0.07);
}

.import-card__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.18);
  flex-shrink: 0;
}

.import-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--white);
}

.import-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(247, 245, 242, 0.72);
}

/* Products mosaic */
.products {
  background: var(--black);
}

.products__mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .products__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(220px, auto);
  }

  .product-tile--lg {
    grid-row: span 2;
  }

  .product-tile--wide {
    grid-column: span 2;
  }
}

.product-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--glass-border);
}

.product-tile__media {
  position: absolute;
  inset: 0;
  background-image: var(--tile-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease-out);
}

.product-tile:hover .product-tile__media {
  transform: scale(1.08);
}

.product-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(10, 10, 11, 0.1) 0%, rgba(10, 10, 11, 0.85) 100%);
  transition: opacity 0.4s;
}

.product-tile:hover .product-tile__overlay {
  opacity: 0.95;
}

.product-tile__content {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-tile__content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.product-tile__content p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(247, 245, 242, 0.85);
  max-width: 420px;
}

.product-tile__tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* Ora spotlight */
.ora-spotlight {
  background: var(--black);
  padding-top: 0;
}

.ora-spotlight__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(145deg, rgba(139, 0, 0, 0.28), rgba(18, 18, 20, 0.88));
}

@media (min-width: 768px) {
  .ora-spotlight__inner {
    grid-template-columns: 1fr auto;
  }
}

.ora-spotlight__text .section-kicker {
  margin-bottom: 0.5rem;
}

.ora-spotlight__text p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.ora-spotlight__badge {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 700;
  color: rgba(247, 245, 242, 0.1);
  letter-spacing: 0.25em;
  text-align: center;
  user-select: none;
  line-height: 1;
}

.ora-spotlight .section-title {
  margin-bottom: 0;
}

/* Marquee */
.partners {
  padding-bottom: 2rem;
  overflow: hidden;
}

.marquee {
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee__track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(247, 245, 242, 0.08);
  white-space: nowrap;
  padding: 1rem 0;
}

.marquee--reverse .marquee__track {
  animation-direction: reverse;
  animation-duration: 48s;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Bento */
.why {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .bento__cell--hero {
    grid-column: span 2;
  }

  .bento__cell--tall {
    grid-row: span 2;
  }
}

.bento__cell h3,
.bento__cell h4 {
  margin-top: 0;
}

.bento__cell p {
  color: var(--muted);
  margin-bottom: 0;
}

.bento__cell--accent {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(145deg, rgba(139, 0, 0, 0.25), rgba(18, 18, 20, 0.75));
}

/* Stats */
.stats {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.2) 0%, transparent 60%),
    var(--black);
  border-block: 1px solid var(--glass-border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat__value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.05em;
}

.stat__num {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  display: inline;
}

.stat__suffix {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  vertical-align: super;
  margin-inline-start: 0.15em;
}

.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Gallery */
.gallery__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(200px, auto));
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin: 0;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.85s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.85rem;
  font-weight: 600;
}

/* Contact */
.contact {
  background: var(--graphite);
}

.contact__wrap {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact__wrap {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact__intro p {
  color: var(--muted);
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact__list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.contact__list strong {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.contact__form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.form-note {
  min-height: 1.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0.5rem 0 0;
}

.contact-studio h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.contact-studio p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-studio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 680px) {
  .contact-studio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-studio__card {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, background 0.25s;
}

.contact-studio__card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.38);
  background: rgba(201, 162, 39, 0.06);
}

.contact-studio__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-studio__card strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}

.contact-studio__card small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.contact-studio__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact__map {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 320px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  background: #050506;
  border-top: 1px solid var(--glass-border);
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }
}

.footer__brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer__name {
  font-size: 1.2rem;
}

.footer__brand p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s;
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer__copyright {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__credit-row {
  padding: 0.75rem 1rem 0;
  text-align: center;
}

.footer__credit {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.25s;
}

.footer__credit:hover {
  color: var(--gold);
}

/* Back to top */
.to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red-rich), #3d0608);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  transform: translateY(-3px);
}

/* Reveal initial state (enhanced by GSAP) */
[data-reveal] {
  will-change: transform, opacity;
}


/* Upgraded products */
.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.product-categories span {
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: rgba(201, 162, 39, 0.08);
  color: rgba(247, 245, 242, 0.9);
  font-size: 0.78rem;
}

.product-grid-v2 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 760px) {
  .product-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1140px) {
  .product-grid-v2 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.8rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.product-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.42);
}

.product-card-v2 img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card-v2 h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-card-v2 p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.product-chip {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

/* Brands section */
.brands {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 860px) {
  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.brand-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  background: linear-gradient(135deg, #d4af37, #8a6a12);
}

.brand-card h3 {
  margin: 0;
}

.brand-card p {
  margin: 0;
  color: var(--muted);
}
