:root {
  --gold: #B8986A;
  --gold-light: #D4B896;
  --gold-dark: #8E6E45;
  --navy: #3A3A3A;
  --navy-dark: #2A2A2A;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--cream);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
img[src*="logo.png"] { object-fit: contain; }
button, input, select, textarea { font-family: inherit; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.section { padding: 6rem 1rem; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); }
.eyebrow {
  font-weight: 600; font-size: 0.875rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.75rem;
}
.section-title { font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.gold-divider {
  width: 4rem; height: 0.25rem; border-radius: 999px; margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.text-center { text-align: center; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--gold); color: #fff; font-weight: 700; padding: 1rem 2.25rem;
  border-radius: 1rem; border: none; cursor: pointer; transition: 0.3s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: 2px solid rgba(255,255,255,.18); color: #fff; font-weight: 600;
  padding: 1rem 2.25rem; border-radius: 1rem; transition: 0.3s; backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.card {
  background: #fff; border-radius: 1rem; padding: 1.5rem; border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,.04); transition: 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); border-color: var(--gold); }

/* Navbar */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 50;
  background: rgba(30,30,30,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: 0.3s;
}
.nav.scrolled {
  background: rgba(42,42,42,.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  border-bottom-color: rgba(184,152,106,.15);
}
.nav-inner {
  max-width: 80rem; margin: 0 auto; padding: 0 1rem;
  height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img {
  width: auto; height: 44px; object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(184,152,106,.4));
}
.nav-brand strong { color: #fff; display: block; line-height: 1.2; }
.nav-brand span { color: var(--gold); font-size: 0.75rem; font-weight: 500; }
.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: #d1d5db; padding: 0.5rem 1rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500;
  transition: 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-switch {
  color: var(--gold); border: 1px solid rgba(184,152,106,.4); background: rgba(184,152,106,.08);
  padding: 0.45rem 0.85rem; border-radius: 0.75rem; font-size: 0.8rem; font-weight: 700;
}
.staff-btn {
  display: none; background: var(--gold); color: #fff; font-weight: 600; font-size: 0.875rem;
  padding: 0.65rem 1.25rem; border-radius: 0.75rem;
}
.menu-btn { background: none; border: none; color: #fff; cursor: pointer; padding: 0.25rem; }
.mobile-menu {
  display: none; background: #2A2A2A; border-top: 1px solid rgba(184,152,106,.2); padding: 0.75rem 1rem 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: #d1d5db; padding: 0.85rem 1rem; border-radius: 0.75rem; font-size: 0.875rem;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .staff {
  text-align: center; background: var(--gold); color: #fff; font-weight: 700; margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .staff-btn { display: inline-block; }
  .menu-btn { display: none; }
}

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #141414 0%, #242424 45%, #3A3A3A 100%);
  padding: 9rem 1rem 6rem;
}
.hero-bg-shift {
  position: absolute; inset: -20%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(184,152,106,.14), transparent 55%),
    radial-gradient(ellipse 50% 45% at 80% 70%, rgba(184,152,106,.1), transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(58,58,58,.5), transparent 70%);
  animation: heroBgDrift 18s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.025; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(184,152,106,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,152,106,1) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 40s linear infinite;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(40px); z-index: 0;
  animation: orbPulse 8s ease-in-out infinite;
}
.hero-orb.o1 {
  width: 600px; height: 600px; top: -15%; inset-inline-end: -10%;
  background: radial-gradient(circle at 40% 40%, rgba(184,152,106,.22) 0%, transparent 65%);
}
.hero-orb.o2 {
  width: 500px; height: 500px; bottom: 5%; inset-inline-start: -12%;
  background: radial-gradient(circle at 60% 60%, rgba(184,152,106,.16) 0%, transparent 65%);
  animation-name: orbPulse2; animation-duration: 11s;
}
.hero-orb.o3 {
  width: 320px; height: 320px; top: 40%; left: 35%;
  background: radial-gradient(circle, rgba(184,152,106,.1) 0%, transparent 70%);
  filter: blur(30px);
  animation-duration: 14s;
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1;
}
.hero-particles span {
  position: absolute; border-radius: 50%; background: #B8986A;
  animation-name: particleFloat; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
}
.hero-content {
  position: relative; z-index: 2; max-width: 48rem;
  /* Align to reading start: right in Arabic (RTL), left in English (LTR) */
  margin-inline-start: 0;
  margin-inline-end: auto;
  text-align: start;
  width: 100%;
}
/* Matches TUNING.leftCenterX / leftSize so the intro canvas can hand off */
.hero-side-logo {
  display: none;
  position: absolute;
  left: 200px;
  top: 50vh;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 0 22px rgba(184,152,106,.55));
}
.hero-side-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
[dir="ltr"] .hero-side-logo {
  left: auto;
  right: 200px;
  transform: translate(50%, -50%);
}
@media (min-width: 1024px) {
  .hero-side-logo { display: flex; align-items: center; justify-content: center; }
}
.hero.intro-done .hero-side-logo { opacity: 1; }
.hero.intro-skipped .hero-side-logo { transition: opacity 0.8s ease; }
.hero-logo {
  width: auto; height: 90px; object-fit: contain; margin-bottom: 2rem;
  filter: drop-shadow(0 0 10px rgba(184,152,106,.45));
  animation: logoGlow 3s ease-in-out infinite;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.65rem;
  border: 1px solid rgba(184,152,106,.3); background: rgba(184,152,106,.08);
  color: var(--gold); padding: 0.65rem 1.25rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 500; margin-bottom: 2.5rem; backdrop-filter: blur(4px);
}
.ping { position: relative; width: 10px; height: 10px; }
.ping span {
  position: absolute; inset: 0; border-radius: 50%; background: var(--gold);
}
.ping span:first-child { animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite; opacity: .75; }
.hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem); font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.25rem;
}
.hero .gold-name {
  font-size: clamp(2.75rem, 7vw, 4.5rem); font-weight: 900; line-height: 1; display: block; margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; animation: shimmer 3s linear infinite;
}
.hero-line {
  height: 4px; max-width: 320px; border-radius: 999px; margin-bottom: 1.5rem; overflow: hidden;
  background: linear-gradient(to left, #8E6E45, #B8986A, #D4B896, #B8986A);
  box-shadow: 0 0 12px rgba(184,152,106,.6);
}
[dir="ltr"] .hero-line { background: linear-gradient(to right, #8E6E45, #B8986A, #D4B896, #B8986A); }
[dir="ltr"] .hero-ctas .btn-primary svg { transform: scaleX(-1); }
.hero-slogan { color: #fff; font-size: 1.25rem; font-weight: 600; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; }
.hero-stat { display: flex; align-items: center; gap: 0.75rem; }
.hero-stat-icon {
  width: 48px; height: 48px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  background: rgba(184,152,106,.12); border: 1px solid rgba(184,152,106,.2); color: var(--gold);
}
.hero-stat strong {
  color: #fff; font-size: 1.5rem; display: block; line-height: 1;
  font-variant-numeric: lining-nums; font-feature-settings: "tnum";
  unicode-bidi: isolate;
}
.hero-stat small { color: #9ca3af; font-size: 0.75rem; }
.phone-ltr {
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: lining-nums;
}
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: 90px; display: block; vertical-align: bottom; }
.section-cream { background: var(--cream); border-top: none; box-shadow: none; }
.hero + .section-cream { margin-top: -1px; border: 0; outline: none; }
.scroll-hint {
  position: absolute; bottom: 7rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(184,152,106,.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  z-index: 2;
}
.phone-fab {
  position: absolute; bottom: 6rem; inset-inline-end: 1.5rem; width: 56px; height: 56px;
  border-radius: 50%; background: var(--gold); color: #fff; display: none;
  align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.35);
  animation: pulseGold 2s ease-in-out infinite; z-index: 5;
}
@media (min-width: 1024px) { .phone-fab { display: flex; } }

/* About */
.about-grid {
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text p { color: #4b5563; line-height: 1.8; margin-bottom: 1rem; }
.about-checks { list-style: none; margin: 1.5rem 0 0; display: grid; gap: 0.75rem; }
.about-checks li { display: flex; gap: 0.75rem; align-items: flex-start; }
.about-checks svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-card {
  background: var(--navy); border-radius: 1.5rem; padding: 2.5rem; position: relative; overflow: hidden; color: #fff;
}
.about-card-logo {
  display: block; width: auto; height: 160px; object-fit: contain; margin: 0 auto 2rem;
  filter: drop-shadow(0 0 14px rgba(184,152,106,.45));
}
.about-card h3 { text-align: center; font-size: 1.25rem; margin-bottom: 0.25rem; }
.about-card .motto { text-align: center; color: #9ca3af; font-size: 0.75rem; font-style: italic; margin: 0.5rem 0 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-box {
  background: rgba(255,255,255,.05); border: 1px solid rgba(184,152,106,.12);
  border-radius: 0.75rem; padding: 0.85rem; text-align: center;
}
.stat-box strong { font-size: 1.5rem; font-weight: 900; display: block; }
.stat-box span { color: var(--gold); font-size: 0.75rem; }

/* Allies */
.allies-grid {
  display: grid; gap: 1.5rem; margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .allies-grid { grid-template-columns: repeat(3, 1fr); } }
.ally-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border-radius: 1rem; padding: 1.75rem 1.25rem;
  border: 1px solid #f3f4f6; box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: 0.3s;
}
.ally-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08);
  border-color: var(--gold);
}
.ally-logo {
  width: 100%; max-width: 180px; height: 120px; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.ally-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ally-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.35rem; }
.ally-card p { font-size: 0.8rem; color: #6b7280; }

/* Services */
.services-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 4rem;
}
.service-card {
  flex: 1 1 100%; max-width: 100%; cursor: pointer;
}
@media (min-width: 640px) { .service-card { flex-basis: calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); } }
@media (min-width: 1024px) { .service-card { flex-basis: calc(25% - 1.125rem); max-width: calc(25% - 1.125rem); } }
.service-icon {
  width: 56px; height: 56px; border-radius: 0.75rem; background: var(--cream);
  display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1.25rem; transition: 0.3s;
}
.service-card:hover .service-icon { background: var(--gold); color: #fff; }
.service-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-card p { color: #6b7280; font-size: 0.875rem; line-height: 1.7; }

/* Why us */
.why-grid { display: grid; gap: 1.5rem; margin-top: 4rem; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  text-align: center; padding: 2rem; border-radius: 1rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(184,152,106,.15); transition: 0.3s;
}
.why-card:hover { transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 0.75rem;
  background: rgba(184,152,106,.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.why-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.75rem; }
.why-card p { color: #9ca3af; font-size: 0.875rem; line-height: 1.7; }

/* Team */
.founder {
  display: flex; flex-direction: column; background: #fff; border: 2px solid var(--gold);
  border-radius: 1rem; overflow: hidden; margin-bottom: 2.5rem; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
@media (min-width: 768px) { .founder { flex-direction: row; } }
.founder-photo { position: relative; width: 100%; aspect-ratio: 3/4; background: var(--navy); }
@media (min-width: 768px) { .founder-photo { width: 20rem; aspect-ratio: auto; min-height: 24rem; flex-shrink: 0; } }
.founder-photo img, .member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.badge-scale {
  position: absolute; bottom: 0.75rem; inset-inline-start: 0.75rem; width: 40px; height: 40px;
  border-radius: 50%; background: var(--gold); border: 2px solid #fff; display: flex; align-items: center; justify-content: center; color: #fff;
}
.founder-info { padding: 2rem; display: flex; flex-direction: column; justify-content: center; text-align: center; }
@media (min-width: 768px) {
  [dir="rtl"] .founder-info { text-align: right; }
  [dir="ltr"] .founder-info { text-align: left; }
}
.founder-tag {
  display: inline-block; align-self: center; background: var(--gold); color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 999px; margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  [dir="rtl"] .founder-tag { align-self: flex-start; }
  [dir="ltr"] .founder-tag { align-self: flex-start; }
}
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; justify-content: center; }
@media (min-width: 768px) {
  [dir="rtl"] .tags { justify-content: flex-start; }
  [dir="ltr"] .tags { justify-content: flex-start; }
}
.tag { background: var(--cream); color: var(--gold); font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 999px; }
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.member-card {
  flex: 1 1 100%; max-width: 100%; background: #fff; border-radius: 1rem; overflow: hidden;
  border: 1px solid #f3f4f6; cursor: pointer; transition: 0.3s; display: flex; flex-direction: column;
}
@media (min-width: 768px) { .member-card { flex-basis: calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); } }
@media (min-width: 1024px) { .member-card { flex-basis: calc(25% - 1.125rem); max-width: calc(25% - 1.125rem); } }
.member-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.1); }
.member-photo { position: relative; aspect-ratio: 3/4; background: var(--navy); }
.member-info { padding: 1.25rem; text-align: center; flex: 1; display: flex; flex-direction: column; }
.member-info h3 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.member-info .role { color: var(--gold); font-size: 0.75rem; font-weight: 500; margin-bottom: 0.75rem; }
.details-link { color: var(--gold); font-size: 0.75rem; font-weight: 600; margin-top: auto; }

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.modal-panel {
  position: relative; z-index: 2; width: 100%; max-width: 48rem; max-height: 85vh; overflow: hidden;
  background: #FFFDF8; border: 2px solid var(--gold); border-radius: 1rem;
  display: flex; flex-direction: column; box-shadow: 0 25px 50px rgba(0,0,0,.35);
}
@media (min-width: 768px) { .modal-panel { flex-direction: row; } }
.modal-close {
  position: absolute; top: 1rem; inset-inline-start: 1rem; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(0,0,0,.45);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.modal-photo { width: 100%; height: 18rem; background: var(--navy); flex-shrink: 0; }
@media (min-width: 768px) { .modal-photo { width: 18rem; height: auto; min-height: 26rem; } }
.modal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.modal-body { padding: 2rem; overflow-y: auto; flex: 1; }
.modal-body h2 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.modal-body .role { color: var(--gold); font-weight: 500; margin-bottom: 1.25rem; }
.modal-body p { color: #374151; font-size: 0.875rem; line-height: 1.9; margin-bottom: 1.5rem; }

/* Clients */
.clients-block { margin-bottom: 4rem; }
.clients-block h3 {
  display: flex; align-items: center; gap: 0.75rem; font-size: 1.125rem; margin-bottom: 1.5rem;
}
.clients-block h3::before {
  content: ''; width: 4px; height: 1.5rem; border-radius: 999px; background: var(--gold);
}
.clients-grid { display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .clients-grid { grid-template-columns: 1fr 1fr; } }
.client-item {
  display: flex; align-items: flex-start; gap: 0.5rem; background: #fff;
  border: 1px solid rgba(184,152,106,.15); border-radius: 0.75rem; padding: 0.65rem 1rem; transition: 0.2s;
}
.client-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.06); border-color: var(--gold); }
.client-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 0.45rem; flex-shrink: 0; }
.client-item strong { font-size: 0.875rem; font-weight: 500; display: block; }
.client-item small { color: #9ca3af; font-size: 0.75rem; }

/* Articles */
.articles-list { max-width: 48rem; margin: 4rem auto 0; display: grid; gap: 1rem; }
.article-item {
  display: flex; align-items: center; gap: 1.25rem; cursor: pointer;
}
.article-num { font-size: 1.875rem; font-weight: 900; color: rgba(184,152,106,.3); width: 2.5rem; text-align: center; flex-shrink: 0; }
.article-item h3 { font-size: 1rem; transition: 0.2s; }
.article-item:hover h3 { color: var(--gold); }
.article-item small { color: #9ca3af; font-size: 0.75rem; }

/* Contact */
.contact-grid { display: grid; gap: 3rem; margin-top: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-box {
  background: var(--navy); border: 1px solid rgba(184,152,106,.2); border-radius: 1rem; padding: 2rem; color: #e5e7eb;
}
.contact-box h3 { color: #fff; font-size: 1.25rem; margin-bottom: 1.5rem; }
.contact-rows { display: grid; gap: 1.25rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 0.75rem; background: rgba(184,152,106,.15);
  color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row label { display: block; color: var(--gold); font-size: 0.75rem; font-weight: 500; margin-bottom: 0.15rem; }
.contact-row a:hover { color: #fff; }
.form-card { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.form-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.form-card .sub { color: #9ca3af; font-size: 0.875rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 0.75rem; border: 1px solid var(--cream-dark);
  background: var(--cream); color: var(--navy); font-size: 0.875rem; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,152,106,.15); }
.form-card .btn-primary { width: 100%; }
.form-success {
  text-align: center; padding: 2.5rem 1rem 1rem;
}
.form-success-icon {
  width: 64px; height: 64px; margin: 0 auto 1.25rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,152,106,.12); color: var(--gold);
}
.form-success h3 { color: var(--navy); margin-bottom: 0.75rem; }
.form-success p {
  color: #6b7280; font-size: 0.9rem; line-height: 1.7; max-width: 22rem;
  margin: 0 auto 1.75rem;
}

/* CTA */
.cta {
  padding: 5rem 1rem; text-align: center;
  background: linear-gradient(135deg, #3A3A3A 0%, #2A2A2A 100%);
}
.cta img { width: auto; height: 80px; object-fit: contain; margin: 0 auto 1rem; filter: drop-shadow(0 0 10px rgba(184,152,106,.35)); }
.cta h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta p { color: #9ca3af; max-width: 36rem; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Footer */
.footer { background: #2A2A2A; color: #a0a0a0; padding: 4rem 1rem 2rem; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; } }
.footer h4 {
  color: #fff; font-size: 0.875rem; margin-bottom: 1.25rem;
  border-inline-start: 2px solid var(--gold); padding-inline-start: 0.75rem;
}
.footer ul { list-style: none; display: grid; gap: 0.65rem; font-size: 0.875rem; }
.footer a:hover { color: #fff; }
.footer-contact { gap: 0.9rem !important; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.8rem; line-height: 1.6;
}
.footer-contact li > svg {
  flex-shrink: 0; margin-top: 0.15rem; color: var(--gold); width: 16px; height: 16px;
}
.footer-contact .footer-founder strong {
  color: #fff; font-weight: 700; font-size: 0.85rem; line-height: 1.5;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand .icon {
  width: auto; height: 48px; background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand .icon img {
  width: auto; height: 48px; object-fit: contain;
}
.footer-brand strong { color: #fff; display: block; }
.footer-brand span { color: var(--gold); font-size: 0.75rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; text-align: center; font-size: 0.75rem; color: #6b7280;
}

@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(184,152,106,.3)); }
  50% { filter: drop-shadow(0 0 14px rgba(184,152,106,.7)); }
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: .12; }
  50% { transform: scale(1.12) translate(12px, -18px); opacity: .18; }
}
@keyframes orbPulse2 {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: .08; }
  50% { transform: scale(1.2) translate(-16px, 14px); opacity: .15; }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,152,106,.4); }
  50% { box-shadow: 0 0 0 12px rgba(184,152,106,0); }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(8px); }
}
@keyframes heroBgDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.06); }
}
@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* Intro — CSS clip-path logo wipe (no canvas / particles). Matches INTRO-HANDOFF. */
.intro-overlay {
  position: fixed; inset: 0; z-index: 40; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; will-change: opacity;
}
.intro-overlay.is-fading { opacity: 0; }
.intro-overlay.is-done { display: none; }
.intro-logo-box {
  position: relative;
  width: min(82vw, 62vh, 480px);
  height: min(82vw, 62vh, 480px);
}
.intro-logo-clip {
  position: absolute; inset: 0;
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
  backface-visibility: hidden;
}
.intro-logo-clip.is-revealing {
  animation: introClipReveal var(--intro-reveal-ms, 1500ms)
             cubic-bezier(0.22, 1, 0.36, 1) both;
}
.intro-logo-clip img {
  display: block; width: 100%; height: 100%; object-fit: contain;
}
.intro-logo-glow {
  position: absolute; inset: -18%; border-radius: 50%;
  background: radial-gradient(circle,
              rgba(184, 152, 106, 0.55) 0%,
              rgba(184, 152, 106, 0.22) 38%,
              transparent 70%);
  opacity: 0; transform: scale(0.86);
  will-change: opacity, transform; pointer-events: none;
}
.intro-logo-glow.is-revealing {
  animation: introGlowBloom var(--intro-reveal-ms, 1500ms) ease-out both;
}
@keyframes introClipReveal {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0); }
}
@keyframes introGlowBloom {
  0%   { opacity: 0;    transform: scale(0.86); }
  60%  { opacity: 0.45; transform: scale(0.98); }
  88%  { opacity: 1;    transform: scale(1.08); }
  100% { opacity: 0.62; transform: scale(1); }
}
body.intro-playing { overflow: hidden; }

.hero-content {
  opacity: 1;
  transition: opacity 0.8s ease;
}
.js .hero-content { opacity: 0; }
.js .hero.revealed .hero-content { opacity: 1; }
.hero:not(.fx-on) .hero-orb,
.hero:not(.fx-on) .hero-particles,
.hero:not(.fx-on) .hero-bg-shift { opacity: 0; }
.hero:not(.revealed) .phone-fab { opacity: 0; pointer-events: none; }

/* Scroll reveals — match the Vercel section motion */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-card {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-card.in { opacity: 1; transform: none; }
.reveal-line {
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
              opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.reveal-line.in { transform: scaleX(1); opacity: 1; }
.stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: 0.00s; }
.stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
.stagger.in > *:nth-child(7) { transition-delay: 0.48s; }
.stagger.in > *:nth-child(8) { transition-delay: 0.56s; }
.stagger.in > *:nth-child(9) { transition-delay: 0.64s; }
.stagger.in > *:nth-child(10) { transition-delay: 0.72s; }
.stagger.in > *:nth-child(11) { transition-delay: 0.80s; }
.stagger.in > *:nth-child(12) { transition-delay: 0.88s; }
.stagger.in > *:nth-child(n+13) { transition-delay: 0.96s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-card, .reveal-line, .stagger > *, .hero-content, .hero-side-logo {
    opacity: 1 !important;
    transform: none !important;
  }
}
