/* =========================================================================
   TAKWEEN KITCHENS — Design system v2  (luxury, beige-forward, image-rich)
   Display/UI/Body: Typomancer Arch · Arabic: GE SS Two
   ========================================================================= */

/* ---------- GE SS Two (local) ---------- */
@font-face {
  font-family: 'GE SS Two';
  src: url('../assets/font/arabic/GE SS Two Light Regular.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GE SS Two';
  src: url('../assets/font/arabic/GE SS Two Medium Regular.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GE SS Two';
  src: url('../assets/font/arabic/GE SS Two Bold Regular.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Typomancer Arch (local) ---------- */
@font-face {
  font-family: 'Typomancer Arch';
  src: url('../assets/font/english/Typomancer - Arch-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typomancer Arch';
  src: url('../assets/font/english/Typomancer - Arch.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typomancer Arch';
  src: url('../assets/font/english/Typomancer - Arch-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typomancer Arch Cond';
  src: url('../assets/font/english/Typomancer - Arch-LightCond.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typomancer Arch Cond';
  src: url('../assets/font/english/Typomancer - Arch-Cond.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Typomancer Arch Cond';
  src: url('../assets/font/english/Typomancer - Arch-BoldCond.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* brand */
  --cream: #EFECE4;
  --paper: #F6F4EE;
  --sand: #e0482d;
  --sand-soft: #E5DDCE;
  --mocha: #A29181;
  --sage: #5E6D5A;
  --forest: #2E3C29;
  --walnut: #3A2C21;
  --ink: #23241F;

  /* semantic — light (beige-forward) */
  --bg: var(--cream);
  --bg-alt: var(--paper);
  --surface: #FBFAF6;
  --surface-2: #F1ECE1;
  --text: #e0482d;
  --text-soft: #5E5B51;
  --text-faint: #8C887C;
  --line: rgba(58, 44, 33, .14);
  --line-soft: rgba(58, 44, 33, .08);
  --accent: var(--forest);
  --accent-2: var(--mocha);
  --on-accent: #F1EEE6;
  --shadow-s: 0 1px 2px rgba(40, 32, 22, .04), 0 6px 16px rgba(40, 32, 22, .06);
  --shadow-m: 0 4px 10px rgba(40, 32, 22, .05), 0 18px 44px rgba(40, 32, 22, .10);
  --shadow-l: 0 10px 30px rgba(40, 32, 22, .10), 0 40px 80px rgba(40, 32, 22, .16);

  /* type */
  --display: 'Typomancer Arch', Georgia, serif;
  --ui: 'Typomancer Arch', system-ui, sans-serif;
  --body: 'Typomancer Arch', system-ui, sans-serif;
  --arabic: 'GE SS Two', system-ui, sans-serif;

  --fs-hero: clamp(2.1rem, 1.2rem + 3.6vw, 2.9rem);
  --fs-h2: clamp(1.5rem, 1.1rem + 1.5vw, 2.15rem);
  --fs-h3: clamp(1.12rem, 1rem + .5vw, 1.35rem);
  --fs-lead: clamp(1rem, .96rem + .25vw, 1.12rem);
  --fs-body: 1.02rem;
  --fs-kicker: .72rem;

  /* layout */
  --container: 1180px;
  --container-wide: 1340px;
  --section-y: clamp(3.5rem, 2rem + 5vw, 6.25rem);
  --radius: 14px;
  --radius-s: 9px;
  --radius-l: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

[data-theme="dark"] {
  --bg: #2E3C29;
  --bg-alt: #5E6D5A;
  --surface: #2E3C29;
  --surface-2: #272820;
  --text: #ECE7DB;
  --text-soft: #B7B2A4;
  --text-faint: #8A8678;
  --line: rgba(230, 224, 210, .14);
  --line-soft: rgba(230, 224, 210, .07);
  --accent: #5E6D5A;
  --accent-2: #5E6D5A;
  --on-accent: #16160F;
  --sand: #5E6D5A;
  --sand-soft: #2C2C20;
  --paper: #1F1F17;
  --cream: #17170F;
  --shadow-s: 0 1px 2px rgba(0, 0, 0, .3), 0 6px 16px rgba(0, 0, 0, .34);
  --shadow-m: 0 6px 18px rgba(0, 0, 0, .4), 0 24px 50px rgba(0, 0, 0, .5);
  --shadow-l: 0 14px 40px rgba(0, 0, 0, .5), 0 50px 90px rgba(0, 0, 0, .6);
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

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

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
}

body {
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
}

[dir="rtl"] body {
  font-family: var(--arabic);
  font-weight: 400
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

ul {
  list-style: none
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px
}

::selection {
  background: var(--forest);
  color: var(--cream)
}

/* ---------- Typography ---------- */
.h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: .005em;
  color: var(--text);
}

[dir="rtl"] .h2 {
  font-family: var(--arabic);
  font-weight: 800;
  line-height: 1.25
}

.h2--light {
  color: var(--cream)
}

.lead {
  font-size: var(--fs-lead);
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 54ch;
  font-weight: 400
}

[dir="rtl"] .lead {
  font-weight: 300;
      max-width: 84ch;

}

.kicker {
  font-family: var(--ui);
  font-size: var(--fs-kicker);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: .7em;
  margin-bottom: 1.1rem;
}

.kicker::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  opacity: .7
}

.kicker--light {
  color: var(--sand)
}

[dir="rtl"] .kicker {
  letter-spacing: .12em
}

/* ---------- Layout helpers ---------- */
.section {
  padding-block: var(--section-y)
}

.section>* {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--ui);
  font-weight: 500;
  font-size: .86rem;
  letter-spacing: .04em;
  padding: .95em 1.7em;
  border-radius: 50px;
  transition: all .4s var(--ease);
  white-space: nowrap;
}

[dir="rtl"] .btn {
  font-family: var(--arabic);
  font-weight: 700
}

.btn--solid {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: var(--shadow-s)
}

.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
  filter: brightness(1.07)
}

.btn--line {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent
}

.btn--line:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text)
}

.btn--line-light {
  border-color: rgba(255, 255, 255, .4);
  color: #fff
}

.btn--line-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff
}

.ghost {
  font-family: var(--ui);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .1em;
  padding: .5em .7em;
  color: var(--text-soft);
  border-radius: 6px;
  transition: color .3s
}

.ghost:hover {
  color: var(--accent)
}

/* ---------- Curtain (page-load) ---------- */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--forest);
  display: grid;
  place-items: center;
  transition: transform 1s var(--ease-out) .25s;
}

.curtain.is-up {
  transform: translateY(-101%)
}

.curtain__mark {
  font-family: var(--ui);
  font-weight: 300;
  letter-spacing: .5em;
  color: var(--cream);
  font-size: 1rem;
  opacity: 0;
  animation: markIn .9s var(--ease) forwards;
  padding-inline-start: .5em;
}

@keyframes markIn {
  0% {
    opacity: 0;
    letter-spacing: .9em
  }

  60% {
    opacity: 1
  }

  100% {
    opacity: 1;
    letter-spacing: .5em
  }
}

/* ---------- Scroll progress ---------- */
.scrollbar {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 120;
  transition: width .1s linear
}

.skip {
  position: fixed;
  top: .5rem;
  inset-inline-start: 50%;
  translate: -50% -200%;
  background: var(--forest);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 8px;
  z-index: 130;
  transition: translate .2s
}

.skip:focus {
  translate: -50% 0
}

/* ---------- Header ---------- */
.head {
  background:
    color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line-soft);
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  transition: all .45s var(--ease)
}

.head__in {
  width: min(100% - 2.5rem, var(--container-wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.5rem;
}

.head.is-stuck {
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line-soft)
}

.head.is-stuck .head__in {
  padding-block: .7rem
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: .18em
}

.brand__logo--ar { display: none }
:root[dir="rtl"] .brand__logo--en { display: none }
:root[dir="rtl"] .brand__logo--ar { display: block }



.nav {
  display: flex;
  gap: 2rem
}

.nav a {
  font-family: var(--ui);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  color: var(--text-soft);
  position: relative;
  padding-block: .3em;
  transition: color .3s
}

[dir="rtl"] .nav a {
  font-family: var(--arabic);
  font-weight: 500
}

.nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform .35s var(--ease)
}

.nav a:hover {
  color: var(--accent)
}

.nav a:hover::after, .nav a.is-active::after {
  transform: scaleX(1)
}

.head__act {
  display: flex;
  align-items: center;
  gap: .7rem
}

.iconbtn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: all .3s
}

.iconbtn:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.iconbtn .i-moon {
  display: none
}

[data-theme="dark"] .iconbtn .i-sun {
  display: none
}

[data-theme="dark"] .iconbtn .i-moon {
  display: block
}

.head__cta {
  padding: .7em 1.3em;
  font-size: .8rem
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px
}

.burger span {
  width: 20px;
  height: 1.6px;
  background: var(--text);
  transition: .3s
}

.hero-light .head:not(.is-stuck) .burger span {
  background: #fff
}

.burger.is-open span:first-child {
  transform: translateY(3.3px) rotate(45deg)
}

.burger.is-open span:last-child {
  transform: translateY(-3.3px) rotate(-45deg)
}

/* ---------- Drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
  visibility: hidden
}

[dir="rtl"] .drawer {
  transform: translateX(-100%)
}

.drawer.is-open {
  transform: translateX(0);
  visibility: visible
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.4rem
}

.drawer__nav a {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--text)
}

[dir="rtl"] .drawer__nav a {
  font-family: var(--arabic);
  font-weight: 800
}

.drawer .btn {
  align-self: flex-start
}

/* =========================================================================
   1 · HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  margin-top: 90px;

}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1
}

.hero__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  will-change: transform
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 22, 15, .5) 0%, rgba(22, 22, 15, .15) 35%, rgba(22, 22, 15, .55) 78%, rgba(22, 22, 15, .82) 100%),
    radial-gradient(120% 80% at 80% 10%, transparent, rgba(47, 61, 42, .35))
}

.hero__in {
  width: min(100% - 2.5rem, var(--container-wide));
  margin-inline: auto;
  padding-bottom: clamp(4rem, 9vh, 7rem);
  position: relative
}

.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: 1.04;
  color: #fff;
  letter-spacing: .005em;
  margin-bottom: 1.5rem;
  max-width: 29ch;
  text-wrap: balance
}

[dir="rtl"] .hero__title {
  font-family: var(--arabic);
  font-weight: 800;
  line-height: 1.22
}

.hero__line {
  display: block;
  overflow: hidden
}

.hero__line--alt {
  color: var(--sand);
  font-style: italic
}

[dir="rtl"] .hero__line--alt {
  font-style: normal;
  color: var(--sand)
}

.hero__lead {
  color: rgba(255, 255, 255, .82);
  max-width: 46ch;
  font-weight: 400;
  font-size: var(--fs-lead);
  margin-bottom: 2.2rem
}

[dir="rtl"] .hero__lead {
  font-weight: 300;
  max-width: 102ch;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.hero__scroll {
  position: absolute;
  inset-inline-end: max(1.25rem, calc((100% - var(--container-wide))/2));
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .7);
  font-family: var(--ui);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase
}

.hero__scroll svg {
  animation: bob 1.8s var(--ease) infinite
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(5px)
  }
}

/* =========================================================================
   2 · ABOUT (split)
   ========================================================================= */
.about {
  background: var(--bg)
}

.about__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center
}

.about__media {
  position: relative
}

.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l)
}

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

.frame--tall {
  aspect-ratio: 4/5
}

.about__badge {
  position: absolute;
  inset-block-end: -1.4rem;
  inset-inline-end: -1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-m);
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 8.5rem
}

.about__badge-n {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--accent)
}

.about__badge-l {
  font-family: var(--ui);
  font-size: .7rem;
  letter-spacing: .02em;
  color: var(--text-soft);
  line-height: 1.3
}

[dir="rtl"] .about__badge-l {
  font-family: var(--arabic)
}

.about__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.3rem 0 1.8rem;
  max-width: 52ch
}
[dir="rtl"] .about__copy {
  max-width: 112ch
}

.about__copy p {
  color: var(--text-soft);
  font-weight: 400;
  line-height: 1.75
}

[dir="rtl"] .about__copy p {
  font-weight: 300
}

.about__vision {
  border-inline-start: 2px solid var(--accent);
  padding-inline-start: 1.3rem;
  background: linear-gradient(90deg, var(--surface-2), transparent);
  padding-block: 1rem;
  padding-inline-end: 1rem;
  border-radius: 0 var(--radius-s) var(--radius-s) 0
}

[dir="rtl"] .about__vision {
  border-radius: var(--radius-s) 0 0 var(--radius-s);
  background: linear-gradient(270deg, var(--surface-2), transparent)
}

.about__vision-l {
  font-family: var(--ui);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  display: block;
  margin-bottom: .4rem;
  font-weight: 600
}

[dir="rtl"] .about__vision-l {
  font-family: var(--arabic);
  letter-spacing: 0
}

.about__vision p {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5
}

[dir="rtl"] .about__vision p {
  font-family: var(--arabic);
  font-style: normal;
  font-weight: 500;
  font-size: 1.05rem
}

/* =========================================================================
   3 · DIFFERENCE strip (why)
   ========================================================================= */
.diff {
  background: var(--bg-alt);
  position: relative
}

.diff__head {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden
}

.diff__item {
  background: var(--bg-alt);
  padding: 1.8rem 1.5rem;
  transition: background .4s var(--ease)
}

.diff__item:hover {
  background: var(--surface)
}

.diff__n {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: .05em
}

.diff__name {
  font-family: var(--ui);
  font-weight: 600;
  font-size: .98rem;
  color: var(--text);
  margin: .5rem 0 .4rem
}

[dir="rtl"] .diff__name {
  font-family: var(--arabic);
  font-weight: 700
}

.diff__desc {
  font-size: .86rem;
  color: var(--text-soft);
  line-height: 1.55;
  font-weight: 400
}

[dir="rtl"] .diff__desc {
  font-weight: 300
}

/* =========================================================================
   4 · CAPABILITIES (cards)
   ========================================================================= */
.caps {
  background: var(--bg)
}

.caps__head, .show__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.6rem;
  flex-wrap: wrap
}

.caps__lead, .show__lead {
  max-width: 37ch
}
[dir="rtl"] .caps__lead, .show__lead {
  max-width: 66ch
}
.caps__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem
}

.cap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-s);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.cap:nth-child(1) {
  grid-column: span 3
}

.cap:nth-child(2) {
  grid-column: span 3
}

.cap:nth-child(3) {
  grid-column: span 2
}

.cap:nth-child(4) {
  grid-column: span 2
}

.cap:nth-child(5) {
  grid-column: span 2
}

.cap__img {
  position: absolute;
  inset: 0;
  z-index: 0
}

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

.cap__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 22, 15, .05), rgba(22, 22, 15, .78))
}

.cap__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem
}

.cap__tag {
  font-family: var(--ui);
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--sand);
  font-weight: 500
}

.cap__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  margin: .2rem 0 .5rem;
  line-height: 1.1
}

[dir="rtl"] .cap__name {
  font-family: var(--arabic);
  font-weight: 800
}

.cap__desc {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 34ch;
  margin-bottom: .7rem
}

[dir="rtl"] .cap__desc {
  font-weight: 300;
  max-width: 50ch;
}

.cap__list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .5s var(--ease)
}

.cap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l)
}

.cap:hover .cap__img img {
  transform: scale(1.06)
}

.cap:hover .cap__list {
  max-height: 120px;
  opacity: 1
}

.cap__pill {
  font-family: var(--ui);
  font-size: .68rem;
  letter-spacing: .02em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50px;
  padding: .28em .8em;
  backdrop-filter: blur(4px)
}

[dir="rtl"] .cap__pill {
  font-family: var(--arabic)
}

.ribbon {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 1rem 1.6rem
}

.ribbon__item {
  font-family: var(--ui);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 400
}

[dir="rtl"] .ribbon__item {
  font-family: var(--arabic)
}

.ribbon__item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-2)
}

/* =========================================================================
   5 · SHOWCASE (masonry)
   ========================================================================= */
.show {
  background: var(--bg-alt)
}

.show__masonry {
  columns: 3;
  column-gap: 1rem
}

.show__cell {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  border-radius: var(--radius-s);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-s);
  background: var(--surface)
}

.show__cell img {
  width: 100%;
  transition: transform 1s var(--ease)
}

.show__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22, 22, 15, .62));
  opacity: 0;
  transition: opacity .45s var(--ease)
}

.show__cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1.1rem;
  color: #fff;
  font-family: var(--ui);
  font-size: .82rem;
  letter-spacing: .02em;
  transform: translateY(8px);
  opacity: 0;
  transition: all .45s var(--ease)
}

[dir="rtl"] .show__cap {
  font-family: var(--arabic)
}

.show__plus {
  position: absolute;
  top: .8rem;
  inset-inline-end: .8rem;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(.7);
  transition: all .45s var(--ease)
}

.show__cell:hover img {
  transform: scale(1.07)
}

.show__cell:hover::after, .show__cell:hover .show__cap, .show__cell:hover .show__plus {
  opacity: 1
}

.show__cell:hover .show__cap {
  transform: translateY(0)
}

.show__cell:hover .show__plus {
  transform: scale(1)
}

/* =========================================================================
   6 · STATS band (forest)
   ========================================================================= */
.stats {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden
}

[data-theme="dark"] .stats {
  background: #465243
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 15% 0%, rgba(131, 134, 113, .22), transparent);
  pointer-events: none
}

.stats__in {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative
}

.stat {
  text-align: center;
  position: relative
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, .14)
}

[dir="rtl"] .stat:not(:last-child)::after {
  inset-inline-end: auto;
  inset-inline-start: 0
}

.stat__n {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: #fff
}

.stat__l {
  font-family: var(--ui);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--sand);
  margin-top: .7rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 18ch;
  margin-inline: auto
}

[dir="rtl"] .stat__l {
  font-family: var(--arabic);
  font-weight: 400
}

/* =========================================================================
   7 · PROCESS
   ========================================================================= */
.proc {
  background: var(--bg)
}

.proc__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem
}

.proc__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative
}

.proc__track::before {
  content: "";
  position: absolute;
  top: 18px;
  inset-inline: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 10%, var(--line) 90%, transparent)
}

.step {
  position: relative;
  padding-top: 0
}

.step__node {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--ui);
  font-weight: 600;
  font-size: .82rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  margin-bottom: 1.1rem;
  transition: all .5s var(--ease)
}

.step.is-on .step__node {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 16%, transparent)
}

.step__name {
  font-family: var(--ui);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .4rem
}

[dir="rtl"] .step__name {
  font-family: var(--arabic);
  font-weight: 700
}

.step__desc {
  font-size: .82rem;
  color: var(--text-soft);
  line-height: 1.55;
  font-weight: 400
}

[dir="rtl"] .step__desc {
  font-weight: 300
}

/* =========================================================================
   8 · COLLECTIONS (alternating splits)
   ========================================================================= */
.coll {
  background: var(--bg-alt)
}

.coll__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem
}

.coll__list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4.5rem)
}

.collrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center
}

.collrow:nth-child(even) .collrow__media {
  order: 2
}

.collrow__media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 5/4
}

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

.collrow:hover .collrow__media img {
  transform: scale(1.05)
}

.collrow__index {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  font-family: var(--display);
  font-size: 1.1rem;
  color: #fff;
  background: rgba(47, 61, 42, .7);
  backdrop-filter: blur(6px);
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 600
}

.collrow__body {
  padding-block: .5rem
}

.collrow__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--text);
  line-height: 1.12;
  margin-bottom: .9rem
}

[dir="rtl"] .collrow__name {
  font-family: var(--arabic);
  font-weight: 800
}

.collrow__desc {
  color: var(--text-soft);
  font-weight: 400;
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 1.3rem
}

[dir="rtl"] .collrow__desc {
  font-weight: 300;
      max-width: 73ch;

}

.collrow__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}

.collrow__tag {
  font-family: var(--ui);
  font-size: .74rem;
  letter-spacing: .02em;
  color: var(--text-soft);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: .4em 1em;
  background: var(--surface);
  transition: all .3s
}

[dir="rtl"] .collrow__tag {
  font-family: var(--arabic)
}

.collrow__tag:hover {
  border-color: var(--accent);
  color: var(--accent)
}

/* =========================================================================
   9 · SECTORS marquee
   ========================================================================= */
.marq {
  background: var(--forest);
  color: var(--cream);
  padding-block: 1.6rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 2rem
}

[data-theme="dark"] .marq {
  background: var(--surface)
}

.marq__label {
  font-family: var(--ui);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  white-space: nowrap;
  padding-inline-start: max(1.25rem, calc((100% - var(--container-wide))/2));
  flex-shrink: 0
}

[dir="rtl"] .marq__label {
  font-family: var(--arabic)
}

.marq__viewport {
  overflow: hidden;
  flex: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent)
}

.marq__row {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite
}

[dir="rtl"] .marq__row {
  animation-direction: reverse
}

.marq:hover .marq__row {
  animation-play-state: paused
}

.marq__chip {
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap
}

[dir="rtl"] .marq__chip {
  font-family: var(--arabic);
  font-style: normal;
  font-weight: 600
}

.marq__chip::after {
  content: "✦";
  font-size: .7rem;
  color: var(--sage);
  font-style: normal
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

/* =========================================================================
   10 · TESTIMONIALS
   ========================================================================= */
.test {
  background: #2f3e2ae3;
  color: var(--cream);
  position: relative
}

[data-theme="dark"] .test {
  background: #485b42e3
}

.test__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem
}

.test__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.tcard {
  background: rgba(239, 236, 228, .05);
  border: 1px solid rgba(239, 236, 228, .14);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  backdrop-filter: blur(4px);
  transition: all .5s var(--ease)
}

.tcard:hover {
  background: rgba(239, 236, 228, .09);
  transform: translateY(-4px)
}

.tcard__quote {
  font-family: var(--display);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream)
}

[dir="rtl"] .tcard__quote {
  font-family: var(--arabic);
  font-style: normal;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.7
}

.tcard__quote::before {
  content: "\201C";
  font-size: 2.4rem;
  color: var(--sage);
  line-height: 0;
  vertical-align: -.4em;
  margin-inline-end: .1em
}

.tcard__who {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: auto
}

.tcard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-family: var(--ui);
  font-weight: 600;
  font-size: .9rem;
  flex-shrink: 0
}

.tcard__name {
  font-family: var(--ui);
  font-weight: 600;
  font-size: .9rem;
  color: #fff
}

[dir="rtl"] .tcard__name {
  font-family: var(--arabic);
  font-weight: 700
}

.tcard__role {
  font-size: .76rem;
  color: var(--text-soft);
  font-weight: 300
}

[dir="rtl"] .tcard__role {
  font-weight: 400
}

/* =========================================================================
   11 · CTA
   ========================================================================= */
.cta {
  position: relative;
  display: grid;
  place-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: -2
}

.cta__media img {
  width: 100%;
  height: 120%;
  object-fit: cover
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--cream) 0%, var(--cream) 42%, rgba(239, 236, 228, .86) 56%, rgba(239, 236, 228, .3) 100%)
}

[dir="rtl"] .cta::after {
  background: linear-gradient(240deg, var(--cream) 0%, var(--cream) 42%, rgba(239, 236, 228, .86) 56%, rgba(239, 236, 228, .3) 100%)
}

[data-theme="dark"] .cta::after {
  background: linear-gradient(120deg, var(--bg) 0%, var(--bg) 42%, color-mix(in srgb, var(--bg) 86%, transparent) 56%, transparent 100%)
}

.cta__panel {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto
}

.cta__panel .h2 {
  max-width: 30ch;
  margin-block: .3rem .9rem
}

.cta__panel .lead {
  margin-bottom: 1.8rem
}

.cta__act {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

/* =========================================================================
   12 · CONTACT
   ========================================================================= */
.contact {
  background: var(--bg)
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start
}

.contact__intro .lead {
  margin-bottom: 2rem
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

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

.cinfo__ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0
}

.cinfo__k {
  font-family: var(--ui);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: .2rem
}

[dir="rtl"] .cinfo__k {
  font-family: var(--arabic);
  letter-spacing: 0
}

.cinfo__v {
  color: var(--text);
  font-weight: 400;
  font-size: .96rem
}

.cinfo__v a:hover {
  color: var(--accent)
}

.csocial {
  display: flex;
  gap: .6rem;
  margin-top: .5rem
}

.csocial a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  transition: all .3s
}

.csocial a:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  transform: translateY(-2px)
}

.contact__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-m)
}

.field {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem
}

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

.field--row>div {
  display: flex;
  flex-direction: column;
  gap: .45rem
}

.field label {
  font-family: var(--ui);
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500
}

[dir="rtl"] .field label {
  font-family: var(--arabic);
  letter-spacing: 0
}

.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: .8em .9em;
  transition: border-color .3s, box-shadow .3s;
  width: 100%
}

.field textarea {
  resize: vertical;
  min-height: 96px
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent)
}

.form__note {
  font-size: .82rem;
  color: var(--accent);
  min-height: 1.1rem;
  margin-bottom: .4rem
}

.form__note.is-err {
  color: #b3402f
}

.form__act {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: .4rem
}

.contact__map {
  width: min(100% - 2.5rem, var(--container));
  margin: 2.5rem auto 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  height: 340px
}

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

[data-theme="dark"] .contact__map iframe {
  filter: grayscale(.4) invert(.9) hue-rotate(170deg)
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.foot {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
 
}

.foot__in {
  width: min(100% - 2.5rem, var(--container-wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line)
}

.foot__brand .brand__name {
  font-size: 1.2rem
}

.foot__tag {
  color: var(--text-soft);
  font-size: .88rem;
  margin-top: 1rem;
  font-weight: 300;
  max-width: 30ch
}

[dir="rtl"] .foot__tag {
  font-weight: 400
}

.foot__nav {
  display: flex;
  flex-direction: column;
  gap: .7rem
}

.foot__navlabel {
  font-family: var(--ui);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: .3rem
}

[dir="rtl"] .foot__navlabel {
  font-family: var(--arabic);
  letter-spacing: 0
}

.foot__nav a {
  color: var(--text-soft);
  font-size: .9rem;
  transition: color .3s;
  width: fit-content
}

.foot__nav a:hover {
  color: var(--accent)
}

.foot__social {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  flex-wrap: wrap
}

.foot__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  transition: all .3s
}

.foot__social a:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent)
}

.foot__base {
  width: min(100% - 2.5rem, var(--container-wide));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .7rem;
  padding: 1.5rem 0;
  font-size: .78rem;
  color: var(--text-faint);
  font-family: var(--ui)
}

[dir="rtl"] .foot__base {
  font-family: var(--arabic)
}

.foot__top:hover {
  color: var(--accent)
}

/* ---------- WhatsApp float ---------- */
.wa {
  position: fixed;
  inset-block-end: 1.4rem;
  inset-inline-end: 1.4rem;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  opacity: 0;
  transform: translateY(20px) scale(.8);
  pointer-events: none;
  transition: all .5s var(--ease)
}

.wa.is-show {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

.wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.4s ease-out infinite;
  z-index: -1
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .6
  }

  100% {
    transform: scale(1.7);
    opacity: 0
  }
}

.wa:hover {
  transform: scale(1.08)
}

/* ---------- Lightbox ---------- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 160;
  background: rgba(18, 18, 12, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease);
  backdrop-filter: blur(8px)
}

.lb.is-open {
  opacity: 1;
  visibility: visible
}

.lb__fig {
  max-width: 88vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(.96);
  transition: transform .4s var(--ease)
}

.lb.is-open .lb__fig {
  transform: scale(1)
}

.lb__fig img {
  max-width: 88vw;
  max-height: 78vh;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-l)
}

.lb__fig figcaption {
  color: var(--sand);
  font-family: var(--ui);
  font-size: .86rem;
  letter-spacing: .04em
}

[dir="rtl"] .lb__fig figcaption {
  font-family: var(--arabic)
}

.lb__close {
  position: absolute;
  top: 1.2rem;
  inset-inline-end: 1.4rem;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  line-height: 1
}

.lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.4rem;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  transition: background .3s
}

.lb__nav:hover {
  background: rgba(255, 255, 255, .18)
}

.lb__prev {
  inset-inline-start: 1.2rem
}

.lb__next {
  inset-inline-end: 1.2rem
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out)
}

[data-reveal].is-in {
  opacity: 1;
  transform: none
}

[data-reveal-stagger]>* {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out)
}

[data-reveal-stagger].is-in>* {
  opacity: 1;
  transform: none
}

[data-reveal-stagger].is-in>*:nth-child(1) {
  transition-delay: .0s
}

[data-reveal-stagger].is-in>*:nth-child(2) {
  transition-delay: .08s
}

[data-reveal-stagger].is-in>*:nth-child(3) {
  transition-delay: .16s
}

[data-reveal-stagger].is-in>*:nth-child(4) {
  transition-delay: .24s
}

[data-reveal-stagger].is-in>*:nth-child(5) {
  transition-delay: .32s
}

[data-reveal-stagger].is-in>*:nth-child(6) {
  transition-delay: .40s
}

[data-reveal-stagger].is-in>*:nth-child(7) {
  transition-delay: .48s
}

[data-reveal-stagger].is-in>*:nth-child(8) {
  transition-delay: .56s
}

/* image clip reveal */
.imgreveal {
  transition: clip-path 1.1s var(--ease-out)
}

.imgreveal.is-in {
  clip-path: inset(0 0 0 0)
}

/* hero intro */
.hero .kicker, .hero__title, .hero__lead, .hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .9s var(--ease-out) forwards
}

.hero__title {
  animation-delay: .15s
}

.hero__lead {
  animation-delay: .3s
}

.hero__cta {
  animation-delay: .45s
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none
  }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width:1080px) {
  .caps__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cap:nth-child(n) {
    grid-column: span 1
  }

  .cap:nth-child(1) {
    grid-column: span 2
  }

  .proc__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem 1rem
  }

  .proc__track::before {
    display: none
  }

  .test__track {
    grid-template-columns: 1fr
  }

  .show__masonry {
    columns: 2
  }
}

@media (max-width:900px) {
  .nav, .head__cta {
    display: none
  }

  .burger {
    display: flex
  }

  .about__grid, .contact__grid, .collrow {
    grid-template-columns: 1fr
  }

  .collrow:nth-child(even) .collrow__media {
    order: 0
  }

  .about__media {
    max-width: 440px
  }

  .diff__grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .stat:nth-child(2)::after {
    display: none
  }
}

@media (max-width:560px) {
  :root {
    --section-y: clamp(2.8rem, 8vw, 4rem)
  }

  .caps__grid {
    grid-template-columns: 1fr
  }

  .cap:nth-child(1) {
    grid-column: span 1
  }

  .proc__track {
    grid-template-columns: 1fr 1fr
  }

  .diff__grid {
    grid-template-columns: 1fr
  }

  .show__masonry {
    columns: 1
  }

  .field--row {
    grid-template-columns: 1fr
  }

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

  .hero__cta .btn {
    width: 100%
  }

  .about__badge {
    inset-inline-end: 1rem;
    inset-block-end: -1rem;
    padding: .9rem 1.1rem
  }

  .marq__chip {
    font-size: 1.1rem
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important
  }

  [data-reveal], [data-reveal-stagger]>*, .imgreveal {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important
  }

  .hero .kicker, .hero__title, .hero__lead, .hero__cta {
    opacity: 1;
    transform: none
  }

  .marq__row {
    animation: none
  }
}

/* ---------- Print ---------- */
@media print {
  .head, .wa, .hero__scroll, .scrollbar, .curtain, .drawer, .marq {
    display: none
  }

  body {
    background: #fff
  }
}
.hero__scrim{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.601);
}
.show__cap , #lbCap{
    display: none !important;
}
[data-theme="dark"] .brand img {
    filter: invert(1) brightness(100);
}

[data-theme="dark"] .kicker--light {
  color: var(--text)
}
[data-theme="dark"] .hero__line--alt {
  color: var(--text);}

 [data-theme="dark"] .stat__l {

  color: var(--text);}