/* === FONTS === */
@font-face { font-family: 'Thmanyah'; src: url('fonts/ThmanyahSerifDisplay-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'DINArabic'; src: url('fonts/DINNextLTArabic-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'DINArabic'; src: url('fonts/DINNextLTArabic-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'DINArabic'; src: url('fonts/DINNextLTArabic-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'DINPro'; src: url('fonts/DINPro-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'BleuBelle'; src: url('fonts/BleuBelle.otf') format('opentype'); font-weight: 400; font-display: swap; }

/* === ROOT === */
:root {
  --ink: #0B1A26;
  --paper: #F4EFE6;
  --paper-warm: #EFE7D6;
  --navy: #0B2236;
  --navy-deep: #061421;
  --teal: #2A6B7C;
  --teal-mist: #91B4BA;
  --gold: #C8A064;
  --gold-bright: #E0B97A;
  --line: rgba(11, 26, 38, 0.14);
  --muted: rgba(11, 26, 38, 0.58);

  --gutter: clamp(20px, 4vw, 56px);
  --pad-y: clamp(96px, 12vh, 180px);
  --max: 1480px;

  --font-display: 'Thmanyah', 'Times New Roman', serif;
  --font-body: 'DINPro', 'Helvetica Neue', Arial, sans-serif;
  --font-arabic: 'DINArabic', 'Noto Naskh Arabic', serif;
  --font-script: 'BleuBelle', serif;
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.ar {
  font-family: var(--font-arabic);
  direction: rtl;
  unicode-bidi: isolate;
}

.italic {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  background: linear-gradient(to bottom, color-mix(in oklab, var(--paper) 92%, transparent), transparent);
  backdrop-filter: blur(8px);
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--paper) 96%, transparent);
  padding: 14px var(--gutter);
  border-bottom-color: var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 12px; height: 56px; transition: height .3s ease; }
.nav__logo img { height: 100%; width: auto; }
.nav.scrolled .nav__logo { height: 44px; }

.nav__links {
  display: flex; gap: 32px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity .25s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--gold);
  transition: width .3s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 18px; border: 1px solid var(--ink);
  background: transparent; color: var(--ink);
  transition: background .25s ease, color .25s ease;
  display: inline-block;
}
.nav__cta:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 880px) {
  .nav { justify-content: flex-start; gap: 14px; padding: 16px var(--gutter); }
  .nav.scrolled { padding: 12px var(--gutter); }
  .nav__links { display: none; }
  .nav__logo { height: 44px; }
  .nav.scrolled .nav__logo { height: 38px; }
  .nav__cta { padding: 7px 12px; font-size: 10px; letter-spacing: 0.14em; }
}

/* === SECTION FRAME === */
.section {
  padding: var(--pad-y) var(--gutter);
  position: relative;
}
.section__inner { max-width: var(--max); margin: 0 auto; }

.sec-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 28px;
  margin-bottom: clamp(48px, 8vh, 96px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.sec-head__num {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.sec-head__title {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}
.sec-head__ar {
  font-family: var(--font-arabic);
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  text-align: right;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative;
  padding: 140px var(--gutter) 60px;
  background:
    radial-gradient(ellipse at 20% 90%, color-mix(in oklab, var(--teal) 18%, transparent), transparent 60%),
    radial-gradient(ellipse at 90% 10%, color-mix(in oklab, var(--gold) 12%, transparent), transparent 55%),
    var(--paper);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max); margin: auto 0;
  width: 100%; position: relative;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.hero__tag::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 188px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.hero__title .italic {
  color: var(--teal);
  letter-spacing: 0.01em;
  display: inline-block;
  transform: translateY(0.04em);
}
.hero__title .word {
  display: inline-block;
  opacity: 0; transform: translateY(0.4em);
  animation: word-rise 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__meta-item__label {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.hero__meta-item__value {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
}
.hero__meta-item__ar {
  font-family: var(--font-arabic);
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  text-align: left;
  direction: rtl;
}

.hero__bg-mark {
  position: absolute; right: -4vw; bottom: -8vh;
  font-family: var(--font-arabic);
  font-size: clamp(220px, 38vw, 620px);
  font-weight: 300;
  color: color-mix(in oklab, var(--teal) 14%, transparent);
  pointer-events: none; user-select: none;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 32px;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 32px;
  background: var(--muted);
  animation: scroll-pulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 720px) {
  .hero__meta { grid-template-columns: 1fr; gap: 24px; }
}

/* === STORY === */
.story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.story__lede {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}
.story__lede .italic {
  color: var(--teal);
}
.story__body {
  display: flex; flex-direction: column; gap: 24px;
}
.story__body p { margin: 0; font-size: 16px; line-height: 1.7; max-width: 56ch; }
.story__body .ar { font-size: 16px; line-height: 1.9; color: var(--muted); }
.story__stats {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.story__stat__num {
  font-family: var(--font-display);
  font-size: 48px; line-height: 1;
  color: var(--teal);
}
.story__stat__label {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

@media (max-width: 880px) {
  .story { grid-template-columns: 1fr; gap: 40px; }
}

/* === PHILOSOPHY (dark band) === */
.philo {
  background:
    radial-gradient(ellipse at 70% 30%, color-mix(in oklab, var(--teal) 30%, transparent), transparent 50%),
    var(--navy);
  color: var(--paper);
  --ink: var(--paper);
  --line: rgba(244, 239, 230, 0.16);
  --muted: rgba(244, 239, 230, 0.6);
  text-align: center;
}
.philo__pull {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 86px);
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 auto;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.philo__pull .italic {
  color: var(--gold-bright);
}
.philo__sub {
  margin-top: 48px;
  max-width: 58ch;
  margin-left: auto; margin-right: auto;
  font-size: 16px; line-height: 1.7;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
}
.philo__sub-ar {
  margin-top: 16px;
  font-family: var(--font-arabic);
  direction: rtl;
  color: color-mix(in oklab, var(--paper) 60%, transparent);
  font-size: 15px; line-height: 1.9;
  max-width: 58ch;
  margin-left: auto; margin-right: auto;
}

/* === VISION + MISSION === */
.vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.vm__cell {
  padding: clamp(40px, 6vw, 80px);
  border-right: 1px solid var(--line);
  position: relative;
}
.vm__cell:last-child { border-right: none; }
.vm__label {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.vm__label-ar {
  font-family: var(--font-arabic);
  font-size: 14px; color: var(--muted);
  margin-bottom: 28px; direction: rtl;
}
.vm__copy {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.vm__copy-ar {
  margin-top: 32px;
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 16px; line-height: 1.9;
  color: var(--muted);
}
.vm__num {
  position: absolute; top: 28px; right: 32px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.3em; color: var(--muted);
}

@media (max-width: 880px) {
  .vm { grid-template-columns: 1fr; }
  .vm__cell { border-right: none; border-bottom: 1px solid var(--line); }
  .vm__cell:last-child { border-bottom: none; }
}

/* === VALUES === */
.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values__item {
  padding: 48px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  transition: background .3s ease;
}
.values__item:last-child { border-right: none; }
.values__item:hover { background: color-mix(in oklab, var(--gold) 8%, transparent); }
.values__num {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.3em; color: var(--gold);
  margin-bottom: 32px;
}
.values__title {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
}
.values__desc {
  font-size: 13px; line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 880px) {
  .values { grid-template-columns: 1fr 1fr; }
  .values__item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .values__item:nth-child(2n) { border-right: none; }
}

/* === SERVICES === */
.services__list {
  border-top: 1px solid var(--line);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1.2fr auto 1fr 60px;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding .25s ease;
  position: relative;
}
.svc-row::before {
  content: ''; position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: color-mix(in oklab, var(--gold) 6%, transparent);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
}
.svc-row:hover::before { opacity: 1; }
.svc-row:hover { padding-left: 24px; padding-right: 24px; }
.svc__num {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.3em; color: var(--muted);
}
.svc__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.svc__ar {
  font-family: var(--font-arabic);
  font-size: 18px; color: var(--muted);
  direction: rtl;
  white-space: nowrap;
}
.svc__desc {
  font-size: 13px; line-height: 1.55;
  color: var(--muted);
  max-width: 36ch;
}
.svc__arrow {
  text-align: right;
  font-family: var(--font-display);
  font-size: 22px;
  transition: transform .3s ease;
}
.svc-row:hover .svc__arrow { transform: translateX(8px); }

@media (max-width: 880px) {
  .svc-row { grid-template-columns: 50px 1fr; gap: 16px; }
  .svc__ar, .svc__desc, .svc__arrow { grid-column: 2; }
}

/* === WHY === */
.why {
  background: var(--paper-warm);
}
.why__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.why__card {
  padding: 40px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
  min-height: 240px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -20px rgba(11, 26, 38, 0.3);
}
.why__num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 32px;
}
.why__title {
  font-family: var(--font-display);
  font-size: 20px; line-height: 1.2;
  margin: 0 0 8px 0;
}
.why__ar {
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 13px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 16px;
}

@media (max-width: 1100px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why__grid { grid-template-columns: 1fr; } }

/* === PORTFOLIO === */
.portfolio__filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.portfolio__filter button {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all .25s ease;
}
.portfolio__filter button:hover { border-color: var(--ink); }
.portfolio__filter button.active {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.proj {
  position: relative;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}
.proj:hover { transform: translateY(-6px); }
.proj.is-hidden { display: none; }
.proj--lg { grid-column: span 7; min-height: 520px; }
.proj--md { grid-column: span 5; min-height: 520px; }
.proj--sm { grid-column: span 4; min-height: 400px; }
.proj--half { grid-column: span 6; min-height: 520px; }

.proj__media {
  flex: 1;
  position: relative;
  background:
    repeating-linear-gradient(45deg,
      color-mix(in oklab, var(--teal) 10%, var(--paper-warm)) 0 2px,
      transparent 2px 16px),
    var(--paper-warm);
  overflow: hidden;
}
.proj__media[data-placeholder]::before {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.proj__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.proj:hover .proj__img { transform: scale(1.03); }
.proj__media-tag {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 6px 12px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}
.proj__media-year {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
}
.proj__info {
  padding: 28px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.proj__client {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.proj__client-ar {
  font-family: var(--font-arabic);
  font-size: 13px; color: var(--muted);
  letter-spacing: 0;
}
.proj__title {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
}
.proj__loc {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.proj__loc::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 50%; background: var(--teal);
  display: inline-block;
}

@media (max-width: 1000px) {
  .proj--lg, .proj--md, .proj--sm, .proj--half { grid-column: span 12; min-height: 360px; }
}

/* === PARTNERS === */
.partners {
  background: var(--navy);
  color: var(--paper);
  --ink: var(--paper);
  --line: rgba(244, 239, 230, 0.14);
  --muted: rgba(244, 239, 230, 0.6);
}
.partners__marquee {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner {
  aspect-ratio: 5 / 3;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
  transition: background .3s ease, color .3s ease;
  text-align: center;
  padding: 16px;
  position: relative;
}
.partner:hover {
  background: color-mix(in oklab, var(--paper) 4%, transparent);
  color: var(--gold-bright);
}
.partner::after {
  content: attr(data-ar);
  position: absolute; bottom: 12px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 10px;
  color: color-mix(in oklab, var(--paper) 40%, transparent);
}
.partner:nth-child(6n) { border-right: none; }

@media (max-width: 880px) {
  .partners__marquee { grid-template-columns: repeat(3, 1fr); }
  .partner:nth-child(6n) { border-right: 1px solid var(--line); }
  .partner:nth-child(3n) { border-right: none; }
}

/* === CONTACT === */
.contact {
  background: var(--navy-deep);
  color: var(--paper);
  --ink: var(--paper);
  --line: rgba(244, 239, 230, 0.16);
  --muted: rgba(244, 239, 230, 0.55);
}
.contact__hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.contact__big {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
}
.contact__big .italic {
  color: var(--gold-bright);
}
.contact__sub {
  font-size: 16px; line-height: 1.7;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
  max-width: 36ch;
}
.contact__sub-ar {
  font-family: var(--font-arabic);
  direction: rtl;
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px; line-height: 1.9;
}

.contact__form {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact__form-full { grid-column: 1 / -1; }
.field {
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.field label {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 0;
  font-size: 16px;
  font-family: var(--font-display);
  transition: border-color .25s ease;
  outline: none;
  resize: none;
}
.field textarea { min-height: 80px; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in oklab, var(--paper) 35%, transparent); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
}
.field--err input, .field--err textarea {
  border-color: #D87060;
}
.field__err {
  font-size: 11px;
  color: #D87060;
  margin-top: 4px;
  letter-spacing: 0;
  text-transform: none;
}
.field__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.field__chips button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  transition: all .25s ease;
}
.field__chips button:hover { border-color: var(--gold); color: var(--gold-bright); }
.field__chips button.active {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.form-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact__form-error {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border: 1px solid #D87060;
  background: color-mix(in oklab, #D87060 12%, transparent);
  color: #F2C8BF;
  font-size: 13px;
  line-height: 1.5;
}
.contact__submit {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.contact__submit-note {
  font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted);
}
.contact__submit button {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease;
  display: inline-flex; align-items: center; gap: 12px;
}
.contact__submit button:hover { background: var(--gold-bright); }
.contact__submit button:disabled { opacity: 0.4; cursor: not-allowed; }
.contact__submit button::after {
  content: '→'; font-family: var(--font-display); font-size: 18px;
  transition: transform .25s ease;
}
.contact__submit button:hover::after { transform: translateX(4px); }

.contact__success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  border: 1px solid var(--gold);
  background: color-mix(in oklab, var(--gold) 6%, transparent);
}
.contact__success h3 {
  font-family: var(--font-script);
  font-size: 64px;
  color: var(--gold-bright);
  margin: 0 0 16px 0;
  font-weight: 400;
}
.contact__success p { color: var(--muted); }

.contact__info {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.contact__info-cell strong {
  display: block;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 14px;
}
.contact__info-cell p {
  font-family: var(--font-display);
  font-size: 18px; line-height: 1.4;
  margin: 0;
}
.contact__info-cell .ar {
  font-family: var(--font-arabic);
  font-size: 14px; color: var(--muted);
  margin-top: 6px;
}

.contact__foot {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .contact__hero { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { grid-template-columns: 1fr; }
  .contact__info { grid-template-columns: 1fr 1fr; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

::selection { background: var(--gold); color: var(--navy-deep); }
