/* ============ Melaha — ملاحة ============ */
*, *::before, *::after {
  letter-spacing: 0 !important;
  word-spacing: normal !important;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "Wathiq";
  src: url("fonts/itfWathiqThuluth-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wathiq";
  src: url("fonts/itfWathiqThuluth-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* deep cinematic blue palette */
  --bg: #02060f;
  --bg-deep: #00030a;
  --bg-card: #07112a;
  --ink: #ffffff;
  --ink-soft: #d8e0ec;
  --ink-mute: #7d8694;
  --amber: #009cff;
  --amber-deep: #0079c7;
  --ember: #009cff;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
}

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

html, body {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(0, 90, 180, 0.18) 0%, transparent 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(0, 156, 255, 0.10) 0%, transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: "Wathiq", "Tajawal", "IBM Plex Sans Arabic", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* subtle film grain across whole site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ===== Cursor (disabled) ===== */
.cursor-dot, .cursor-ring { display: none !important; }
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--amber);
  transition: width 0.2s ease, height 0.2s ease;
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1px solid rgba(232, 213, 183, 0.4);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}
.cursor-hover .cursor-ring {
  /* hover scaling disabled */
}
@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(17, 10, 5, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 48px;
  border-bottom-color: var(--line);
}
.nav-logo img { height: 38px; width: auto; display: block; filter: brightness(0) invert(1); }
.nav-logo {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  height: 1px;
  width: 0;
  background: var(--amber);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { width: 100%; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 400;
  font-size: 15px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-pill:hover {
  background: var(--amber);
  color: var(--bg-deep);
  transform: translateY(-2px);
}
.btn-pill .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn-pill:hover .arrow { transform: translateX(-6px); }
.btn-pill.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-pill.outline:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-pill.dark {
  background: var(--bg);
  color: var(--ink);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: hero-pan 18s ease-in-out infinite alternate, hero-swap 14s steps(1) infinite;
}
@keyframes hero-swap {
  0%, 45%   { background-image: url("images/hero.png"); }
  50%, 95%  { background-image: url("images/hero-2.png"); }
  100%      { background-image: url("images/hero.png"); }
}
@keyframes hero-pan {
  0% { transform: scale(1.06) translateX(0) translateY(0); }
  100% { transform: scale(1.12) translateX(-1.5%) translateY(-1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 3, 10, 0.55) 0%,
      rgba(0, 3, 10, 0.20) 30%,
      rgba(0, 3, 10, 0.50) 70%,
      rgba(0, 3, 10, 0.95) 100%),
    radial-gradient(140% 90% at 50% 80%, rgba(0, 156, 255, 0.20) 0%, transparent 60%);
  pointer-events: none;
}

.hero-corner-mark {
  position: absolute;
  top: 100px; right: 48px;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink);
  opacity: 0.7;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.hero-corner-mark .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px var(--ember);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 140px;
  max-width: 1500px;
}
.hero-label {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--amber);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}
.hero-label::before {
  content: "";
  display: block;
  width: 48px; height: 1px;
  background: var(--amber);
}
.hero-title {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: clamp(52px, 6.6vw, 112px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 32px;
  text-wrap: balance;
}
.hero-title .accent {
  color: var(--amber);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.78;
  max-width: 56ch;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-meta {
  position: absolute;
  bottom: 32px; left: 48px; right: 48px;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: uppercase;
  opacity: 0.7;
}
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-hint .line {
  display: inline-block;
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, var(--ink) 40%, var(--ink) 60%, transparent);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0.3) translateY(-20%); transform-origin: top; }
  50% { transform: scaleY(1) translateY(0); }
  100% { transform: scaleY(0.3) translateY(20%); transform-origin: bottom; }
}

/* ===== Marquee ===== */
.marquee-strip {
  background: var(--bg-deep);
  position: relative;
  z-index: 1;
  color: var(--ink);
  padding: 36px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
.marquee-item img { height: 110px; width: auto; opacity: 1; filter: brightness(0) invert(1); transition: opacity 0.3s ease; }
.marquee-item:hover img { opacity: 1; }
.marquee-item {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0;
  color: var(--ink);
  opacity: 0.65;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-shrink: 0;
}
.marquee-item::after {
  content: "";
  display: none;
}

/* ===== Section base ===== */
section { position: relative; }
.section {
  padding: 140px 48px;
  max-width: 1500px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--amber);
  margin-bottom: 28px;
  text-transform: uppercase;
  font-weight: 400;
}
.section-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--amber);
}
.section-heading {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 28px;
  text-wrap: balance;
}
.section-heading .accent { color: var(--amber); }
.section-sub {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink);
  opacity: 0.7;
  max-width: 56ch;
}

/* ===== Services ===== */
.services {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.services-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: 56px 44px 48px;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(196, 117, 58, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service-card:hover { background: var(--bg-card); }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink-mute);
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.service-num .glyph {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover .glyph {
  border-color: var(--amber);
  background: rgba(212, 165, 116, 0.08);
}
.service-name {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
}
.service-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 32px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--amber);
  letter-spacing: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.service-link .arrow { transition: transform 0.3s ease; }
.service-card:hover .service-link .arrow { transform: translateX(-8px); }

/* ===== Statement / quiet quote ===== */
.statement {
  background: var(--bg-deep);
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement::before,
.statement::after {
  content: "";
  display: block;
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent, var(--amber), transparent);
  margin: 0 auto;
}
.statement::before { margin-bottom: 48px; }
.statement::after { margin-top: 48px; }
.statement-text {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto;
  text-wrap: balance;
}
.statement-text .accent { color: var(--amber); }
.statement-attrib {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ===== Work preview ===== */
.work-preview {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.work-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 20px;
}
.work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-deep);
}
.work-card.large { grid-column: span 7; aspect-ratio: 4 / 5; }
.work-card.tall { grid-column: span 5; aspect-ratio: 3 / 5; }
.work-card.wide { grid-column: span 12; aspect-ratio: 21 / 9; }
.work-card.uniform { grid-column: span 4; aspect-ratio: 4 / 5; }
.work-card.uniform .title { font-size: 26px; }

.work-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s ease;
  filter: saturate(0.85) contrast(1.05);
}
.work-card:hover .bg { transform: scale(1.06); }
.work-card .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,4,0) 30%, rgba(10,6,4,0.92) 100%);
}
.work-card .meta {
  position: absolute;
  bottom: 28px; right: 28px; left: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.work-card .client {
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 10px;
}
.work-card .title {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0;
}
.work-card.wide .title { font-size: 44px; }
.work-card .tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 6, 4, 0.5);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--ink);
  white-space: nowrap;
  text-transform: uppercase;
}
.work-card .arrow-ic {
  position: absolute;
  top: 28px; left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232, 213, 183, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 16px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  z-index: 3;
}
.work-card:hover .arrow-ic {
  opacity: 1;
  transform: translateY(0);
  background: var(--amber);
  color: var(--bg-deep);
  border-color: var(--amber);
}

.work-cta-row {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

/* ===== About ===== */
.about {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-head {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: 0;
  margin-bottom: 32px;
  text-wrap: balance;
}
.about-head .accent { color: var(--amber); }
.about-body {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 24px;
  max-width: 52ch;
}
.about-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  max-width: 560px;
}
.stat-num {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0;
}
.stat-num .plus { color: var(--amber); }
.stat-label {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.55;
  margin-top: 10px;
  letter-spacing: 0;
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg);
}
.about-visual .img {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,4,0) 50%, rgba(10,6,4,0.8) 100%);
}
.about-visual .badge {
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 2;
  background: rgba(17, 10, 5, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 22px 24px;
  max-width: 260px;
}
.about-visual .badge .since {
  font-size: 11px;
  letter-spacing: 0;
  color: var(--amber);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.about-visual .badge .text {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}

/* ===== Process ===== */
.process {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 90px;
}
.process-head .section-eyebrow { justify-content: center; }
.process-head .section-heading { margin-right: auto; margin-left: auto; }
.process-head .section-sub { margin-right: auto; margin-left: auto; }

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.process-line {
  position: absolute;
  top: 28px; right: 4%; left: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 8%, var(--line-strong) 92%, transparent);
}
.step {
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--amber);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.step-name {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0;
}
.step-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  opacity: 0.65;
}

/* ===== Final CTA ===== */
.cta {
  background: var(--bg-deep);
  padding: 180px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, rgba(196, 117, 58, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 12px;
  letter-spacing: 0;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}
.cta-text {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 32px;
  position: relative;
  text-wrap: balance;
}
.cta-text .accent { color: var(--amber); }
.cta-sub {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.7;
  max-width: 56ch;
  margin: 0 auto 48px;
  position: relative;
}
.cta-buttons {
  position: relative;
  display: inline-flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-big {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 18px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.cta-big:hover {
  background: var(--amber);
  color: var(--bg-deep);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-deep);
  padding: 100px 48px 36px;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.newsletter-head {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0;
  max-width: 18ch;
}
.newsletter-form {
  display: grid;
  gap: 12px;
  max-width: 460px;
}
.newsletter-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 14px 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}
.newsletter-form input::placeholder { color: var(--ink); opacity: 0.45; }
.newsletter-form input:focus { border-color: var(--amber); }
.newsletter-form button {
  margin-top: 12px;
  justify-self: start;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 400;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.newsletter-form button:hover {
  background: var(--amber);
  color: var(--bg-deep);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 26px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: grid; gap: 14px; }
.footer-col a {
  font-size: 16px;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-col a:hover { opacity: 1; color: var(--amber); }

.footer-mid {
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.footer-logo img { height: clamp(140px, 22vw, 280px); width: auto; margin: 0 auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-logo {
  font-family: "Wathiq", sans-serif;
  font-weight: 400;
  font-size: clamp(120px, 20vw, 320px);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(232, 213, 183, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink);
  opacity: 0.55;
  letter-spacing: 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  color: var(--ink);
}
.footer-socials a svg { display: block; }
.footer-socials a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .section { padding: 90px 24px; }
  .services-head, .work-head, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card.large, .work-card.tall, .work-card.wide, .work-card.uniform { grid-column: span 1; aspect-ratio: 4/5; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-line { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; }
  .footer { padding: 64px 24px 32px; }
  .hero-content { padding: 0 24px 100px; }
  .hero-corner-mark { right: 24px; top: 88px; }
  .hero-meta { left: 24px; right: 24px; }
  .nav-links { display: none; }
  .statement { padding: 100px 24px; }
  .cta { padding: 100px 24px; }
}
