/* ─── SELF-HOSTED FONTS ─── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/outfit.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/dm-mono-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/dm-mono-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── BRAND TOKENS ─── */
:root {
  --navy-950:  #060D1A;
  --navy-900:  #0A1628;
  --navy-800:  #0F1E38;
  --navy-700:  #162847;
  --navy-600:  #1E3560;
  --gold-400:  #E8BC5A;
  --gold-500:  #D4A030;
  --gold-600:  #B8881F;
  --sage-400:  #6B9E7A;
  --sage-500:  #4D7A5A;
  --slate-400: #8A9BB5;
  --slate-300: #A8B8CF;
  --slate-200: #C5D1E0;
  --cream:     #F2EDE6;
  --white:     #FAFAF9;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy-950);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

.display-xl {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.display-lg { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; }
.display-md { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; }
.display-sm { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }

.body-lg  { font-family: var(--font-body); font-size: 1.125rem; line-height: 1.7; color: var(--slate-300); }
.body-md  { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; color: var(--slate-300); }
.label    { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-500); }
.italic   { font-style: italic; }
.gold     { color: var(--gold-400); }
.sage     { color: var(--sage-400); }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* ─── LOGO SVG ─── */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  text-decoration: none;
}
.logo-mark img {
  display: block;
  margin-right: -0.75rem;
}
.logo-mark svg { width: 36px; height: 36px; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.logo-name span { color: var(--gold-400); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(6, 13, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 160, 48, 0.1);
  padding: 0.85rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--slate-400);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--cream); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(212, 160, 48, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242, 237, 230, 0.2);
}
.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: translateY(-1px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ─── DIVIDER ─── */
.divider {
  width: 3rem;
  height: 1px;
  background: var(--gold-500);
  margin: 1.5rem 0;
  opacity: 0.6;
}
.divider--center { margin: 1.5rem auto; }

/* ─── HERO ─── */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: clamp(5.5rem, 10vh, 7.5rem);
  padding-bottom: clamp(1.25rem, 3vh, 2rem);
}

/* Geometric background pattern */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(22, 40, 71, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(212, 160, 48, 0.06) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
  padding-top: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}
.hero-eyebrow-line {
  width: 2rem;
  height: 1px;
  background: var(--gold-500);
}

.hero-headline {
  margin-bottom: 0.75rem;
  font-size: clamp(2.7rem, 5vw, 4.45rem);
  line-height: 1.02;
}
.hero-headline .line2 { color: var(--gold-400); }

.hero-sub {
  margin-bottom: 1.25rem;
  max-width: 440px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 0.96rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(64svh, 44rem);
}

/* ─── 3D GEOMETRIC HERO ─── */
.hero-geo {
  position: relative;
  width: 100%;
  max-width: min(52vw, 62svh, 680px);
  aspect-ratio: 1;
  margin: 0 auto;
  filter: drop-shadow(0 0 60px rgba(10, 22, 40, 0.45));
}
#heroCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── MARQUEE TRUST BAR ─── */
.trust-bar {
  border-top: 1px solid rgba(242, 237, 230, 0.06);
  border-bottom: 1px solid rgba(242, 237, 230, 0.06);
  padding: 1.25rem 0;
  overflow: hidden;
  background: rgba(10, 22, 40, 0.5);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--slate-400);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── WHAT WE DO — STACKED LIST ─── */
#services { background: var(--navy-900); }

.section-header {
  margin-bottom: 4rem;
}
.section-header--center { text-align: center; }

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(212, 160, 48, 0.2);
  position: relative;
  transition: var(--transition);
}
.service-row:last-child {
  border-bottom: 1px solid rgba(212, 160, 48, 0.2);
}
.service-row::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: rgba(212, 160, 48, 0.03);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-row:hover::after {
  opacity: 1;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(212, 160, 48, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
  position: relative;
  z-index: 1;
}
.service-row:hover .service-icon-wrap {
  background: rgba(212, 160, 48, 0.15);
}
.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-400);
  fill: none;
  stroke-width: 1.5;
}

.service-text {
  position: relative;
  z-index: 1;
}
.service-text h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--cream);
  font-family: var(--font-display);
  transition: color var(--transition);
}
.service-row:hover .service-text h3 {
  color: var(--gold-400);
}
.service-text p {
  font-size: 0.92rem;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 640px;
}

/* ─── WHY ITQAN — PULL-QUOTE CENTERED ─── */
#why {
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 48, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Centered pull-quote block */
.why-quote-block {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  padding: 3rem 0;
}

.why-quote-marks {
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 300;
  line-height: 0.5;
  color: var(--gold-500);
  opacity: 0.08;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.why-arabic {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--gold-400);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1.5rem;
  direction: rtl;
}

.why-meaning-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.why-meaning-sub {
  font-size: 0.95rem;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1.25rem;
}

.why-hadith {
  font-style: italic;
  color: var(--slate-300);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.8;
}

.why-divider-center {
  width: 60px;
  height: 1px;
  background: var(--gold-500);
  margin: 2rem auto;
  opacity: 0.4;
}

/* Why points — single column below quote */
.why-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 680px;
  margin: 0 auto;
}
.why-point {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}
.why-point-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.why-point h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--cream);
}
.why-point p {
  font-size: 0.9rem;
  color: var(--slate-400);
  line-height: 1.7;
}

/* ─── PROCESS — Vertical Timeline ─── */
#process { background: var(--navy-900); }

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 4rem;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.6rem;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(212, 160, 48, 0.3) 10%,
    var(--gold-500) 30%,
    var(--gold-500) 70%,
    rgba(212, 160, 48, 0.3) 90%,
    transparent 100%
  );
}

.timeline-step {
  position: relative;
  padding: 0 0 3.5rem 2rem;
}
.timeline-step:last-child {
  padding-bottom: 0;
}

/* Gold dot on timeline */
.timeline-dot {
  position: absolute;
  left: -2.55rem;
  top: 0.15rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--gold-500);
  z-index: 2;
  transition: all var(--transition);
}
.timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: 0;
  transition: opacity var(--transition);
}
.timeline-step:hover .timeline-dot {
  border-color: var(--gold-400);
  box-shadow: 0 0 20px rgba(212, 160, 48, 0.3);
}
.timeline-step:hover .timeline-dot::after {
  opacity: 1;
}

.timeline-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.timeline-step h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.timeline-step p {
  font-size: 0.9rem;
  color: var(--slate-400);
  line-height: 1.7;
}

/* ─── RESULTS / NUMBERS ─── */
#results {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-top: 1px solid rgba(212, 160, 48, 0.08);
  border-bottom: 1px solid rgba(212, 160, 48, 0.08);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.result-item {}
.result-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.result-label { font-size: 0.85rem; color: var(--slate-400); letter-spacing: 0.03em; }

/* ─── TESTIMONIAL ─── */
#testimonial {}
.testimonial-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.testimonial-quote::before { content: '\201C'; color: var(--gold-400); }
.testimonial-quote::after  { content: '\201D'; color: var(--gold-400); }
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 1px solid rgba(212, 160, 48, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-400);
}
.testimonial-name { font-size: 0.9rem; font-weight: 500; color: var(--cream); }
.testimonial-biz  { font-size: 0.8rem; color: var(--slate-400); }

/* ─── CTA ─── */
#cta {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 160, 48, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(242, 237, 230, 0.06);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.footer-right a {
  font-size: 0.85rem;
  color: var(--slate-400);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-right a:hover { color: var(--gold-400); }
.footer-copy { font-size: 0.8rem; color: var(--slate-400); margin-top: 0.25rem; }

/* ─── ANIMATIONS ─── */
.js-motion .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-motion .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ─── HAMBURGER MENU ─── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
  position: relative;
}
.nav-hamburger span::before,
.nav-hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.nav-hamburger span::before { top: -7px; }
.nav-hamburger span::after  { top: 7px; }
.nav-hamburger.open span { background: transparent; }
.nav-hamburger.open span::before { top: 0; transform: rotate(45deg); }
.nav-hamburger.open span::after  { top: 0; transform: rotate(-45deg); }

/* ─── CONTACT FORM ─── */
#contact {
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(212, 160, 48, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.contact-form {
  background: rgba(15, 30, 56, 0.5);
  border: 1px solid rgba(212, 160, 48, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-300);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--navy-900);
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--slate-400);
  opacity: 0.7;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn-primary { width: 100%; justify-content: center; }
.form-status {
  display: none;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.form-status.success {
  display: block;
  background: rgba(107, 158, 122, 0.15);
  border: 1px solid rgba(107, 158, 122, 0.3);
  color: var(--sage-400);
}
.form-status.error {
  display: block;
  background: rgba(212, 80, 80, 0.15);
  border: 1px solid rgba(212, 80, 80, 0.3);
  color: #E8655A;
}

/* ─── FOCUS / ACCESSIBILITY ─── */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(212, 160, 48, 0.2);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #hero            { align-items: flex-start; padding-top: clamp(6rem, 12vh, 7rem); }
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-content    { max-width: 100%; padding-top: 0; }
  .hero-visual     { min-height: auto; margin-top: 2rem; }
  .hero-geo        { max-width: min(88vw, 560px); }
  .service-row     { grid-template-columns: 48px 1fr; gap: 1.25rem; }
  .why-points      { max-width: 100%; }
  .timeline        { padding-left: 3rem; }
  .timeline::before { left: 1.1rem; }
  .timeline-dot    { left: -2.05rem; }
  .results-grid    { grid-template-columns: 1fr 1fr; }
  /* Hamburger visible */
  .nav-hamburger { display: block; }

  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 13, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 105;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.25rem; color: var(--cream); }
}
@media (max-width: 560px) {
  .service-row     { grid-template-columns: 1fr; gap: 0.75rem; }
  .service-icon-wrap { width: 44px; height: 44px; }
  .results-grid    { grid-template-columns: 1fr 1fr; }
  .why-quote-block { padding: 2rem 0; }
  .section         { padding: 4.5rem 0; }
}
