/* ==========================================================================
   NARESO — Luxury Brand Design System
   Typography scale: 1.25 modular ratio
   Spacing scale: 4px base (0.25rem)
   ========================================================================== */

/* ---- Design Tokens ---- */
:root {
  /* Palette — Warm Bronze & Stone */
  --white:       #ffffff;
  --off-white:   #fbfaf8;
  --warm-cream:  #f8f3ec;
  --stone-50:    #f2ece4;
  --stone-100:   #e8dfd4;
  --stone-200:   #d6c9b8;
  --stone-300:   #c4b3a0;
  --muted:       #7a6652;
  --muted-dark:  #5c4a38;
  --ink:         #2c1f14;
  --ink-soft:    #3d2e21;
  --bronze-50:   #faf5ef;
  --bronze-100:  #efe0cf;
  --bronze-200:  #d4b896;
  --bronze-300:  #b38854;
  --bronze:      #936639;
  --bronze-dark: #5c3a1e;
  --bronze-deep: #3d2410;

  /* Typography — Modular Scale (1.25) */
  --text-xs:     clamp(0.6875rem, 0.65rem + 0.15vw, 0.75rem);    /* 11-12px */
  --text-sm:     clamp(0.8125rem, 0.77rem + 0.18vw, 0.875rem);   /* 13-14px */
  --text-base:   clamp(0.9375rem, 0.89rem + 0.22vw, 1.0625rem);  /* 15-17px */
  --text-md:     clamp(1.0625rem, 1rem + 0.28vw, 1.1875rem);     /* 17-19px */
  --text-lg:     clamp(1.1875rem, 1.1rem + 0.45vw, 1.375rem);    /* 19-22px */
  --text-xl:     clamp(1.375rem, 1.22rem + 0.72vw, 1.75rem);     /* 22-28px */
  --text-2xl:    clamp(1.625rem, 1.4rem + 1.1vw, 2.25rem);       /* 26-36px */
  --text-3xl:    clamp(2rem, 1.6rem + 1.8vw, 3rem);              /* 32-48px */
  --text-4xl:    clamp(2.5rem, 1.9rem + 3vw, 4.5rem);            /* 40-72px */
  --text-5xl:    clamp(3.25rem, 2.3rem + 4.5vw, 6.25rem);        /* 52-100px */

  /* Spacing Scale (4px base) */
  --space-1:  0.25rem;   /*  4px */
  --space-2:  0.5rem;    /*  8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-14: 3.5rem;    /* 56px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-28: 7rem;      /* 112px */
  --space-32: 8rem;      /* 128px */

  /* Radii */
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  /* Shadows — refined for depth */
  --shadow-xs:  0 1px 2px rgba(44, 31, 20, 0.04);
  --shadow-sm:  0 4px 12px rgba(44, 31, 20, 0.06);
  --shadow-md:  0 12px 32px rgba(44, 31, 20, 0.09);
  --shadow-lg:  0 24px 64px rgba(44, 31, 20, 0.12);
  --shadow-xl:  0 40px 96px rgba(44, 31, 20, 0.16);
  --shadow-glow: 0 0 80px rgba(147, 102, 57, 0.12);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 180ms;
  --duration-base: 320ms;
  --duration-slow: 550ms;
  --duration-glacial: 800ms;

  /* Layout */
  --max-width: 1280px;
  --content-padding: clamp(1.25rem, 3vw, 3rem);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  font-size: var(--text-base);
  line-height: 1.7;
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button {
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ---- Container ---- */
.container {
  width: min(var(--max-width), calc(100% - var(--content-padding) * 2));
  margin-inline: auto;
}

.container-narrow {
  width: min(960px, calc(100% - var(--content-padding) * 2));
  margin-inline: auto;
}

/* ---- Skip Link ---- */
.skip-link {
  position: fixed;
  inset-inline-start: var(--space-6);
  top: -60px;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--duration-fast) var(--ease-out-quart);
}

.skip-link:focus { top: var(--space-6); }

/* ==========================================================================
   HEADER — Minimal Sticky
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-slow) var(--ease-out-quart),
              background var(--duration-slow) var(--ease-out-quart);
}

.site-header.scrolled {
  border-bottom-color: rgba(214, 201, 184, 0.5);
  background: rgba(255, 255, 255, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: var(--space-8);
}

/* Brand Lockup */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-lockup img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(147, 102, 57, 0.15);
  background: var(--white);
  transition: transform var(--duration-base) var(--ease-out-quart);
}

.brand-lockup:hover img {
  transform: scale(1.06);
}

.brand-name {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding-block: var(--space-1);
  transition: color var(--duration-fast) var(--ease-out-quart);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--bronze);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Language Toggle */
.language-toggle {
  flex-shrink: 0;
  min-width: 88px;
  height: 38px;
  padding: 0 var(--space-5);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--duration-fast) var(--ease-out-quart),
              border-color var(--duration-fast) var(--ease-out-quart),
              color var(--duration-fast) var(--ease-out-quart),
              box-shadow var(--duration-fast) var(--ease-out-quart);
}

.language-toggle:hover {
  background: var(--off-white);
  border-color: var(--bronze-200);
  color: var(--bronze-dark);
  box-shadow: var(--shadow-xs);
}

/* ==========================================================================
   HERO — Full-Visual Editorial
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(4rem, 6vw, 7rem) 0 clamp(3rem, 5vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 75% 15%, rgba(179, 136, 84, 0.09), transparent 50%),
    radial-gradient(ellipse 60% 50% at 25% 85%, rgba(147, 102, 57, 0.05), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-bottom: 1px solid var(--stone-100);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* Hero Copy */
.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-6);
  color: var(--bronze);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgba(147, 102, 57, 0.18);
  border-radius: var(--radius-full);
  background: rgba(147, 102, 57, 0.04);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: var(--space-8);
  font-size: var(--text-5xl);
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.hero h1 em,
.hero h1 .highlight {
  font-style: normal;
  color: var(--bronze-dark);
}

.hero-lead {
  max-width: 580px;
  margin-bottom: var(--space-10);
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.7;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-14);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 50px;
  padding: 0 var(--space-8);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out-quart),
              box-shadow var(--duration-fast) var(--ease-out-quart),
              background var(--duration-fast) var(--ease-out-quart);
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--duration-fast) var(--ease-out-quart);
  pointer-events: none;
}

.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }

.button-primary {
  background: var(--bronze-dark);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(92, 58, 30, 0.22);
}

.button-primary:hover {
  background: var(--bronze-deep);
  box-shadow: 0 14px 36px rgba(92, 58, 30, 0.3);
}

.button-primary:hover::before {
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary {
  background: var(--white);
  color: var(--ink-soft);
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-xs);
}

.button-secondary:hover {
  border-color: var(--bronze-200);
  box-shadow: var(--shadow-sm);
}

/* Hero Proof Bar */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  max-width: 520px;
  padding-top: var(--space-6);
  border-top: 1px solid var(--stone-200);
}

.hero-proof-item {
  display: grid;
  gap: var(--space-1);
}

.hero-proof-item strong {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--bronze-dark);
  letter-spacing: -0.02em;
}

.hero-proof-item span {
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.5;
}

/* Hero Visual — Editorial Image Composition */
.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-image {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: transform var(--duration-slow) var(--ease-out-expo),
              box-shadow var(--duration-slow) var(--ease-out-expo);
  cursor: pointer;
}

.hero-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-glacial) var(--ease-out-expo);
}

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

.hero-image-main {
  inset-inline-start: 0;
  top: 28px;
  width: 73%;
  height: 540px;
  border: 1px solid rgba(147, 102, 57, 0.12);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-2xl);
  z-index: 1;
}

.hero-image-small {
  inset-inline-end: 0;
  width: 38%;
  height: 236px;
  border: 1px solid rgba(147, 102, 57, 0.1);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
  z-index: 2;
}

.hero-image-top    { top: 0; }
.hero-image-bottom { bottom: 0; }

.hero-logo-card {
  position: absolute;
  inset-inline-start: 40px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-width: 280px;
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-logo-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone-100);
}

.hero-logo-card span {
  display: block;
  color: var(--bronze-300);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.hero-logo-card strong {
  display: block;
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink);
}

/* ==========================================================================
   BRAND STRIP — Refined Marquee
   ========================================================================== */
.brand-strip {
  position: relative;
  background: var(--bronze-deep);
  color: var(--white);
  overflow: hidden;
}

.brand-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.015) 50%,
      transparent 100%);
  pointer-events: none;
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  min-height: 68px;
  padding: var(--space-4) 0;
}

.brand-strip span {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.82;
  transition: opacity var(--duration-fast) var(--ease-out-quart);
}

.brand-strip span:hover { opacity: 1; }

.brand-strip i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bronze-300);
  opacity: 0.55;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTIONS — Shared
   ========================================================================== */
.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  position: relative;
}

.section-kicker {
  display: inline-block;
  margin-bottom: var(--space-5);
  color: var(--bronze);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgba(147, 102, 57, 0.16);
  border-radius: var(--radius-full);
  background: rgba(147, 102, 57, 0.03);
}

.section-heading h2,
.details-section h2 {
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}

.section-heading > p,
.split-heading > p,
.products-heading > p,
.details-section p {
  color: var(--muted);
  font-size: var(--text-md);
  line-height: 1.7;
  margin: 0;
}

.section-heading { margin-bottom: var(--space-16); }

.split-heading,
.products-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: end;
}

/* ---- Section Dividers ---- */
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--bronze-200);
  margin-bottom: var(--space-8);
  border-radius: 1px;
}

.section-divider.centered {
  margin-inline: auto;
}

/* ==========================================================================
   ABOUT — Refined Principles
   ========================================================================== */
.about-section {
  background: var(--white);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.principle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: var(--space-10) var(--space-8);
  background: var(--off-white);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-xl);
  transition: transform var(--duration-base) var(--ease-out-quart),
              box-shadow var(--duration-base) var(--ease-out-quart),
              border-color var(--duration-base) var(--ease-out-quart),
              background var(--duration-base) var(--ease-out-quart);
  overflow: hidden;
}

.principle::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze-200), var(--bronze-100), transparent);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out-quart);
}

.principle:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--stone-200);
  background: var(--white);
}

.principle:hover::before {
  opacity: 1;
}

.principle-number {
  font-family: "Inter", sans-serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--bronze-200);
  letter-spacing: -0.03em;
  line-height: 1;
}

.principle-content h3 {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.principle-content p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

/* ==========================================================================
   PRODUCTS — Editorial Gallery
   ========================================================================== */
.products-section {
  background: var(--off-white);
  border-top: 1px solid var(--stone-100);
  border-bottom: 1px solid var(--stone-100);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-5);
}

/* Featured Product — spans full width, asymmetric */
.product-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: 520px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-base) var(--ease-out-quart),
              transform var(--duration-base) var(--ease-out-quart);
}

.product-card-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-card-featured .product-image-link {
  min-height: 520px;
  overflow: hidden;
  background: var(--warm-cream);
}

.product-card-featured .product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-16) var(--space-12);
  background:
    linear-gradient(160deg, rgba(248, 243, 236, 0.6), rgba(255, 255, 255, 1));
}

/* Standard Product Cards — 6-col each */
.product-card:not(.product-card-featured) {
  grid-column: span 6;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--duration-base) var(--ease-out-quart),
              transform var(--duration-base) var(--ease-out-quart);
}

.product-card:not(.product-card-featured):hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-image-link {
  display: block;
  overflow: hidden;
  background: var(--warm-cream);
}

.product-card:not(.product-card-featured) .product-image-link {
  aspect-ratio: 4 / 3;
}

.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-glacial) var(--ease-out-expo);
}

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

/* Product Copy */
.product-copy {
  padding: var(--space-8) var(--space-8) var(--space-10);
}

.product-number {
  display: inline-block;
  margin-bottom: var(--space-4);
  color: var(--bronze-300);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0 0 var(--space-3);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--ink);
}

.product-card-featured .product-copy h3 {
  font-size: var(--text-3xl);
}

.product-copy > p {
  margin: 0 0 var(--space-6);
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

/* Product Link Arrow */
.product-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  color: var(--bronze-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap var(--duration-fast) var(--ease-out-quart),
              color var(--duration-fast) var(--ease-out-quart);
}

.product-link-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out-quart);
}

.product-link-arrow:hover {
  gap: var(--space-3);
  color: var(--bronze-deep);
}

.product-link-arrow:hover::after {
  transform: translateX(3px);
}

/* ==========================================================================
   BRAND STORY — Full-Bleed Visual Break
   ========================================================================== */
.brand-story {
  position: relative;
  padding: 0;
  background: var(--bronze-deep);
  overflow: hidden;
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.brand-story-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(179, 136, 84, 0.25), transparent 70%),
    var(--bronze-deep);
}

.brand-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: luminosity;
  transition: transform var(--duration-glacial) var(--ease-out-expo);
}

.brand-story-visual:hover img {
  transform: scale(1.03);
}

.brand-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
  background:
    linear-gradient(160deg, var(--bronze-deep), rgba(61, 36, 16, 0.92));
  color: var(--white);
}

.brand-story-copy .section-kicker {
  color: var(--bronze-200);
  border-color: rgba(179, 136, 84, 0.25);
  background: rgba(179, 136, 84, 0.08);
}

.brand-story-copy h2 {
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 0 var(--space-6);
}

.brand-story-copy p {
  font-size: var(--text-md);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 var(--space-8);
  max-width: 480px;
}

.brand-story-copy .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: fit-content;
}

.brand-story-copy .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

/* ==========================================================================
   DETAILS — Refined Information
   ========================================================================== */
.details-section {
  background: var(--white);
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.details-copy {
  position: sticky;
  top: 120px;
}

.details-section h2 {
  margin-bottom: var(--space-6);
}

.details-list {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-xl);
  background: var(--off-white);
  box-shadow: var(--shadow-xs);
}

.details-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--stone-100);
  transition: background var(--duration-fast) var(--ease-out-quart);
}

.details-list > div:last-child { border-bottom: 0; }
.details-list > div:hover { background: var(--white); }

.details-list dt {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.5;
}

.details-list dd {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.details-list a {
  color: var(--bronze-dark);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out-quart);
}

.details-list a:hover { color: var(--bronze); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  color: var(--bronze-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  text-underline-offset: 5px;
}

.text-link::after {
  content: "↗";
  font-size: 0.85em;
}

/* ==========================================================================
   FOOTER — Minimal Elegant
   ========================================================================== */
.site-footer {
  padding: var(--space-14) 0 var(--space-10);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-10);
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.9;
}

.footer-brand strong,
.footer-brand span { display: block; }

.footer-brand strong {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.footer-brand span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--space-1);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out-quart);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer > .container > p {
  margin-top: var(--space-5);
  color: rgba(255, 255, 255, 0.35);
  font-size: var(--text-xs);
}

/* ==========================================================================
   SCROLL ANIMATIONS (driven by JS)
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out-quart),
              transform var(--duration-slow) var(--ease-out-quart);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.principles-grid .principle:nth-child(1) { transition-delay: 0ms; }
.principles-grid .principle:nth-child(2) { transition-delay: 80ms; }
.principles-grid .principle:nth-child(3) { transition-delay: 160ms; }

/* ==========================================================================
   RTL — Direction-Aware Overrides
   ========================================================================== */
body[dir="rtl"] .brand-name,
body[dir="rtl"] .hero-logo-card strong,
body[dir="rtl"] .footer-brand strong {
  letter-spacing: normal;
}

body[dir="rtl"] .product-number,
body[dir="rtl"] .eyebrow,
body[dir="rtl"] .section-kicker,
body[dir="rtl"] .hero-logo-card span,
body[dir="rtl"] .brand-strip span {
  letter-spacing: 0.06em;
}

body[dir="rtl"] .product-link-arrow::after {
  content: "←";
}

body[dir="rtl"] .product-link-arrow:hover::after {
  transform: translateX(-3px);
}

body[dir="rtl"] .desktop-nav a::after {
  transform-origin: left;
}

body[dir="rtl"] .desktop-nav a:hover::after {
  transform-origin: right;
}

/* ==========================================================================
   RESPONSIVE — Tablet (< 1040px)
   ========================================================================== */
@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-14);
  }

  .hero-visual { min-height: 540px; }

  .desktop-nav { display: none; }

  .header-inner {
    grid-template-columns: 1fr auto;
    justify-content: space-between;
  }

  .split-heading,
  .products-heading,
  .details-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .principles-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }

  .principle { min-height: 220px; }

  .product-card:not(.product-card-featured) {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-card-featured { display: block; }
  .product-card-featured .product-image-link {
    min-height: auto;
    aspect-ratio: 3 / 2;
  }

  .product-card-featured .product-copy {
    padding: var(--space-10) var(--space-8);
  }

  .details-copy { position: static; }

  .brand-story-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-story-visual {
    aspect-ratio: 3 / 2;
    min-height: 280px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }

  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; }
}

/* ==========================================================================
   RESPONSIVE — Mobile (< 720px)
   ========================================================================== */
@media (max-width: 720px) {
  :root {
    --content-padding: 1rem;
  }

  .header-inner { min-height: 64px; }

  .brand-lockup img { width: 38px; height: 38px; }
  .brand-name { font-size: 12px; }

  .language-toggle {
    min-width: 74px;
    padding: 0 var(--space-3);
    font-size: 11px;
  }

  .hero { padding: var(--space-12) 0 var(--space-10); }
  .hero h1 { font-size: clamp(2.25rem, 10vw, 3.25rem); }
  .hero-lead { font-size: var(--text-base); }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button { width: 100%; }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-visual { min-height: 420px; }

  .hero-image-main {
    width: 90%;
    height: 340px;
    border-radius: var(--radius-xl);
  }

  .hero-image-small {
    width: 42%;
    height: 140px;
    border-radius: var(--radius-lg);
  }

  .hero-logo-card {
    inset-inline-start: var(--space-3);
    bottom: var(--space-1);
    min-width: 240px;
    padding: var(--space-3);
  }

  .hero-logo-card img { width: 44px; height: 44px; }

  .brand-strip-inner {
    justify-content: flex-start;
    gap: var(--space-3) var(--space-4);
    padding: var(--space-4) 0;
  }

  .section { padding: var(--space-16) 0; }

  .section-heading { margin-bottom: var(--space-10); }

  .product-grid { gap: var(--space-4); }

  .product-card:not(.product-card-featured) {
    grid-template-columns: 1fr;
  }

  .product-card-featured .product-copy,
  .product-copy {
    padding: var(--space-6);
  }

  .product-card-featured .product-copy h3 {
    font-size: var(--text-2xl);
  }

  .details-list > div {
    grid-template-columns: 1fr;
    gap: var(--space-1);
    padding: var(--space-5) var(--space-6);
  }

  .details-list dt { margin-bottom: var(--space-1); }

  .brand-story-copy {
    padding: var(--space-10) var(--content-padding);
  }

  .footer-inner { text-align: center; }
}
