:root {
  --yellow: #FEC95A;
  --orange: #FB9200;
  --red: #E03F34;
  --navy: #003F5B;
  --navy-light: #004f72;
  --cream: #FFFDF8;
  --gray-100: #F6F5F2;
  --gray-200: #EDECE8;
  --gray-500: #9A9890;
  --gray-700: #4A4845;
  --text: #1A1916;
}

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

html {
  scroll-behavior: smooth;
}



#about {
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(0, 63, 91, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 63, 91, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 185px;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 63, 91, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* SVG Tali icon inline */
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-wordmark .wm-tali {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo-wordmark .wm-studios {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--gray-200);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 20%, rgba(254, 201, 90, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(224, 63, 52, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 50% 110%, rgba(0, 63, 91, 0.06) 0%, transparent 70%),
    var(--cream);
}

/* floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 10px;
  opacity: 0.55;
  animation: floatShape 6s ease-in-out infinite;
}

/* Right side */
.hs1 {
  width: 60px;
  height: 30px;
  background: var(--navy);
  top: 18%;
  right: calc(18% + 38px);
  animation-delay: 0s;
}

.hs2 {
  width: 30px;
  height: 30px;
  background: var(--red);
  top: 18%;
  right: 18%;
  animation-delay: 0.5s;
}

.hs3 {
  width: 90px;
  height: 90px;
  background: var(--yellow);
  bottom: 30%;
  right: 10%;
  animation-delay: 1s;
}

.hs4 {
  width: 38px;
  height: 90px;
  background: var(--orange);
  bottom: 30%;
  right: calc(13% + 68px);
  animation-delay: 1.5s;
}

/* Left side */
.hs5 {
  width: 50px;
  height: 50px;
  background: var(--orange);
  top: 22%;
  left: 10%;
  animation-delay: 0.8s;
}

.hs6 {
  width: 80px;
  height: 35px;
  background: var(--navy);
  bottom: 28%;
  left: 15%;
  animation-delay: 0.3s;
}

.hs7 {
  width: 32px;
  height: 32px;
  background: var(--red);
  bottom: calc(28% + 50px);
  left: calc(5% + 90px);
  animation-delay: 1.2s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 63, 91, 0.07);
  border: 1px solid rgba(0, 63, 91, 0.12);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: block;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0, 63, 91, 0.25);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 63, 91, 0.3);
}

.btn-primary svg {
  transition: transform 0.25s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(0, 63, 91, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-scroll {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  z-index: 1;
  animation: fadeUp 1.2s 0.4s ease both;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gray-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ── SECTION SHARED ── */
section {
  padding: 100px 48px;
}

#cta {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 600px;
  font-weight: 300;
}

/* ── ABOUT ── */
/* #about { background: var(--cream); } */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}


.about-right {
  padding-top: 16px;
}

.about-right p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  font-weight: 300;
  margin-bottom: 20px;
}

.tali-meaning {
  margin-top: 48px;
  padding: 40px;
  background: var(--navy);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.tali-meaning::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(254, 201, 90, 0.1);
}

.tali-meaning-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.tali-arabic {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 4px 20px rgba(254, 201, 90, 0.3);
}

.tali-meaning-text {
  color: rgba(255, 255, 255, 0.9);
}

.tali-meaning-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.tali-meaning-text p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.about-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

/* ── SERVICES ── */
#services {
  background: var(--gray-100);
}

.services-header {
  max-width: 1100px;
  margin: 0 auto 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.services-header .section-body {
  margin: 0;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.svc-card {
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.svc-card.wide {
  grid-column: 1;
}

.svc-card.tall {
  grid-column: 2;
}

/* card themes
.svc-card.theme-orange { background: var(--orange); }
.svc-card.theme-red   { background: var(--red); }
.svc-card.theme-yellow{ background: var(--yellow); }
.svc-card.theme-muted { background: #E8E7E3; }
.svc-card.theme-navy  { background: var(--navy); } */

.svc-card.theme-orange {
  background: linear-gradient(135deg, #FB9200, #d77d00);
}

.svc-card.theme-red {
  background: linear-gradient(135deg, #E03F34, #c42d23);
}

.svc-card.theme-yellow {
  background: linear-gradient(135deg, #FEC95A, #f5b830);
}

.svc-card.theme-muted {
  background: linear-gradient(135deg, #E8E7E3, #DDDCD7);
}

.svc-card.theme-navy {
  background: linear-gradient(135deg, #003F5B, #002740);
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: rgba(0, 0, 0, 0.10);
}

.theme-orange .svc-icon-wrap,
.theme-yellow .svc-icon-wrap,
.theme-muted .svc-icon-wrap {
  background: rgba(0, 63, 91, 0.12);
}

.svc-icon-wrap svg {
  color: var(--navy);
}

.theme-red .svc-icon-wrap svg {
  color: rgba(255, 255, 255, 0.85);
}

.theme-navy .svc-icon-wrap svg {
  color: var(--yellow);
}

.svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.theme-red h3 {
  color: #fff;
}

.theme-navy h3 {
  color: #fff;
}

.theme-orange h3 {
  color: #fff;
}

.svc-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(26, 25, 22, 0.65);
}

.theme-red p {
  color: rgba(255, 255, 255, 0.78);
}

.theme-navy p {
  color: rgba(255, 255, 255, 0.68);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  transition: gap 0.2s;
  padding-top: 14px;
}

.svc-link:hover {
  gap: 12px;
}

.theme-red .svc-link {
  color: rgba(255, 255, 255, 0.9);
}

.theme-navy .svc-link {
  color: var(--yellow);
}

/* bottom row of services */
.services-row2 {
  max-width: 1100px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.services-row2 .svc-card.wide {
  grid-column: auto;
}

/* ── MISSION & VISION ── */
#mission {
  background: var(--cream);
}

.mv-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.mv-header {
  text-align: center;
  margin-bottom: 60px;
}

.mv-header .section-body {
  margin: 0 auto;
  text-align: center;
}

.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  border-radius: 28px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.mv-card.mission {
  background: var(--navy);
}

.mv-card.vision {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
}

.mv-num {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 24px;
  opacity: 0.05;
  color: #fff;
  user-select: none;
  font-style: italic;
}

.vision .mv-num {
  color: var(--navy);
}

.mv-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission .mv-card-label {
  color: var(--yellow);
}

.vision .mv-card-label {
  color: var(--orange);
}

.mv-card-label::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 1px;
}

.mission .mv-card-label::before {
  background: var(--yellow);
}

.vision .mv-card-label::before {
  background: var(--orange);
}

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.mission h3 {
  color: #fff;
}

.vision h3 {
  color: var(--navy);
}

.mv-card p {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.mission p {
  color: rgba(255, 255, 255, 0.78);
}

.vision p {
  color: var(--gray-700);
}

/* ── FOUNDERS ── */
#founders {
  background: var(--gray-100);
}

.founders-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.founders-header {
  margin-bottom: 60px;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.founder-card {
  background: var(--cream);
  border-radius: 28px;
  padding: 44px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 63, 91, 0.10);
}

.founder-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.founder-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.founder-info .founder-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
}

.founder-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  font-weight: 300;
  margin-bottom: 24px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.founder-tag {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}

.founder-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--navy);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-btn:hover {
  background: var(--gray-200);
  color: #fff;
  border-color: var(--navy);
}

/* ── CTA ── */
#cta {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 120px 0px;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 201, 90, 0.12), transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title em {
  font-style: italic;
  color: var(--yellow);
}

.cta-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto 44px;
  display: block;
  text-align: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--navy);
  padding: 18px 38px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(254, 201, 90, 0.35);
}

.btn-cta:hover {
  background: #ffd06e;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(254, 201, 90, 0.5);
}

.cta-contact {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.cta-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── FOOTER ── */
footer {
  background: #001e2d;
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 185px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo .wm-tali {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-logo .wm-studios {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  text-align: right;
}

.footer-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.3);
}

/* ── CUSTOM SCROLLBAR ── */

/* Hide default scrollbar */
* {
  scrollbar-width: none;
  /* Firefox */
}

*::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}



/* ── TABLET ── */
@media (max-width: 1400px) {
  nav {
    padding: 18px 48px;
  }

  footer {
    padding: 48px;
  }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    width: 220px;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 63, 91, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 200;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: background 0.15s;
  }

  .nav-links a:hover {
    background: rgba(0, 63, 91, 0.07);
    color: var(--navy);
  }

  .nav-links li:not(:last-child) a {
    border-bottom: none;
  }

  /* Separator before CTA */
  .nav-links li:last-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    margin-top: 4px;
    padding-top: 4px;
  }

  .nav-links a.nav-cta {
    background: var(--navy);
    color: #fff;
    text-align: center;
    margin-top: 2px;
  }

  .nav-links a.nav-cta:hover {
    background: var(--navy-light);
  }

  .nav-hamburger {
    display: flex;
    z-index: 200;
  }

  section {
    padding: 72px 24px;
  }

  #hero {
    padding: 100px 24px 80px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tali-meaning-inner {
    flex-direction: column;
    text-align: center;
  }

  .tali-arabic {
    font-size: 56px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-card.tall {
    grid-row: auto;
    grid-column: auto;
  }

  .services-row2 {
    grid-template-columns: 1fr;
  }

  .mv-cards {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 40px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .footer-logo {
    margin-bottom: 16px;
  }

  .footer-copy {
    text-align: left;
  }

  .hero-shape {
    opacity: 0.35;
  }

  .hs5 {
    left: 35%;
    top: 20%
  }

  .hs3,
  .hs4,
  .hs6,
  .hs7 {
    display: none;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

}