:root {
  --bg: #ffffff;
  --bg-alt: #f3f6f9;
  --ink: #121820;
  --muted: #5c6773;
  --navy: #0b2740;
  --blue: #1570b0;
  --blue-deep: #0e5688;
  --lemon: #e6b63f;
  --line: #dde3ea;
  --white: #ffffff;
  --sans: "Figtree", system-ui, sans-serif;
  --display: "Syne", "Figtree", sans-serif;
  --arabic: "IBM Plex Sans Arabic", "Figtree", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
}

body[data-lang="ar"] {
  font-family: var(--arabic);
}

body[data-lang="ar"] h1,
body[data-lang="ar"] h2,
body[data-lang="ar"] h3,
body[data-lang="ar"] .mark {
  font-family: var(--arabic);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: white;
  padding: 0.55rem 0.9rem;
  z-index: 20;
}

.skip:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.4rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.mark {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}

.mark-en {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.mark-ar {
  font-size: 0.82rem;
  color: var(--muted);
  font-family: var(--arabic);
}

.nav-desktop {
  margin-inline-start: auto;
  display: flex;
  gap: 1.35rem;
}

.nav-desktop a,
.nav-drawer a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-desktop a:hover,
.nav-drawer a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang,
.nav-toggle {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}

.lang {
  padding: 0.42rem 0.8rem;
  font: inherit;
  font-size: 0.86rem;
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 4px;
}

.nav-toggle span {
  position: absolute;
  inset-inline: 11px;
  height: 1.5px;
  background: var(--ink);
}

.nav-toggle span:first-child {
  top: 15px;
}

.nav-toggle span:last-child {
  bottom: 15px;
}

.nav-drawer {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  background: var(--blue);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn:hover {
  background: var(--blue-deep);
}

.btn-small {
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--bg-alt);
}

.hero,
.about,
.who,
.kitchen,
.connect,
.site-footer,
.stats {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.2rem, 6vw, 4.5rem) 0 3rem;
}

.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 0.9rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.35rem);
}

.name-ar {
  margin: -0.35rem 0 1.15rem;
  font-family: var(--arabic);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  color: var(--navy);
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 1rem;
}

.place {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-photo {
  margin: 0;
  background: #f3f6f9;
  border-radius: 4px;
}

.hero-photo picture,
.hero-photo img {
  width: 100%;
}

.hero-photo img {
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 4px;
}

.hero-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-photo figcaption span:first-child {
  font-family: var(--arabic);
  color: var(--ink);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.stats div {
  background: var(--bg-alt);
  padding: 1.1rem 1rem;
}

.stats strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.about,
.who,
.kitchen,
.connect {
  padding: 4.2rem 0;
  scroll-margin-top: 4.8rem;
}

.about {
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
}

.about p {
  color: var(--muted);
  max-width: 40rem;
}

blockquote {
  margin: 1.6rem 0 0;
  padding: 0;
  border-inline-start: 3px solid var(--lemon);
  padding-inline-start: 1rem;
  font-size: 1.2rem;
  color: var(--navy);
  max-width: 32rem;
}

.creds-panel {
  background: var(--navy);
  color: #e8eef4;
  padding: 1.5rem;
  border-radius: 4px;
  height: fit-content;
}

.creds-panel h3 {
  color: var(--lemon);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.creds-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.creds-panel li {
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.creds-panel li span {
  color: rgba(232, 238, 244, 0.68);
  font-size: 0.88rem;
}

.who {
  background: var(--bg-alt);
  width: 100%;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
}

.who-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

body.nav-open {
  overflow: hidden;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.who article {
  background: white;
  border: 1px solid var(--line);
  padding: 1.2rem 1.15rem;
}

.who .kitchen-note {
  margin-top: 0.35rem;
  max-width: 40rem;
}

.who h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.who p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.kitchen-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.kitchen-note {
  max-width: 24rem;
  color: var(--muted);
  margin: 0;
}

.kitchen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.kitchen-card {
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.kitchen-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.kitchen-card div {
  padding: 1.05rem 1.1rem 1.2rem;
}

.kitchen-card .meta {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.kitchen-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.kitchen-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.kitchen-card:hover {
  border-color: var(--blue);
}

.connect {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  padding-bottom: 4.5rem;
}

.connect-card {
  background: var(--navy);
  color: #e8eef4;
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  border-radius: 4px;
}

.connect-card .kicker {
  color: var(--lemon);
}

.connect-card h2,
.connect-card p {
  color: inherit;
}

.connect-card p {
  opacity: 0.86;
}

.connect-card .btn {
  margin-top: 0.4rem;
  background: white;
  color: var(--navy);
}

.connect-card .btn:hover {
  background: var(--lemon);
}

.social-panel {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: clamp(1.3rem, 3vw, 1.8rem);
}

.social-panel h2 {
  margin-bottom: 1.1rem;
}

.social-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.social-grid a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.8rem;
  background: white;
  border: 1px solid var(--line);
  text-decoration: none;
}

.social-grid a:hover {
  border-color: var(--blue);
}

.social-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
}

.social-grid strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
}

.social-grid .handle {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  direction: ltr;
  unicode-bidi: isolate;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  max-width: 36rem;
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  margin-top: 0.5rem;
}

.footer-social a {
  color: var(--blue);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--navy);
}

[dir="rtl"] .hero-photo figcaption span:first-child {
  font-family: var(--arabic);
}

@media (max-width: 960px) {
  .nav-desktop,
  .header-actions .btn-small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: white;
    padding: 1rem 1.2rem 1.3rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }

  .nav-drawer.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero,
  .about-grid,
  .connect,
  .kitchen-head,
  .kitchen-cards {
    grid-template-columns: 1fr;
  }

  .stats,
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .stats,
  .who-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
