@font-face {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/FuturaPT-Book.woff2") format("woff2");
}

@font-face {
  font-family: "Futura PT";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/FuturaPT-BookOblique.woff2") format("woff2");
}

@font-face {
  font-family: "Futura PT";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/FuturaPT-Medium.woff2") format("woff2");
}

:root {
  --ink: #0a0a0a;
  --paper: #f6f4ef;
  --white: #ffffff;
  --muted: #77736d;
  --line: rgba(10, 10, 10, 0.16);
  --line-dark: rgba(255, 255, 255, 0.22);
  --accent: #f74827;
  --header-height: 86px;
  --gutter: clamp(22px, 4vw, 68px);
  --content: 1440px;
  --sans: "Futura PT", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  --serif: "Futura PT", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

a {
  color: inherit;
  text-underline-offset: 0.24em;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  font-weight: 300;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--gutter);
  background: var(--ink);
  color: var(--white);
}

.wordmark {
  max-width: 240px;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-3.5px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  font-size: 0.69rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

main {
  min-height: 70vh;
  padding-top: var(--header-height);
}

.wrap {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display,
.page-title,
.project-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.display {
  max-width: 920px;
  font-size: clamp(3rem, 8vw, 8.8rem);
}

.page-title {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 7.3rem);
}

.project-title {
  max-width: 900px;
  font-size: clamp(3.2rem, 7.5vw, 8rem);
}

.lede {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(1.12rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.text-link,
.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button-link {
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid currentColor;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.button-link:hover,
.button-link:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: 580px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero--carousel {
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.hero--carousel.is-dragging {
  cursor: grabbing;
}

.hero-slides,
.hero-slide::after {
  position: absolute;
  inset: 0;
}

.hero--carousel .hero-slides {
  display: flex;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero--carousel.is-dragging .hero-slides,
.hero--carousel .hero-slides.is-jumping {
  transition: none;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
}

.hero-slide::after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.08) 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent 50%);
}

.hero--carousel .hero-slide::after {
  display: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 80px;
  padding-bottom: clamp(50px, 8vh, 108px);
}

.hero-content .display {
  max-width: 800px;
  font-size: clamp(3.1rem, 7vw, 8rem);
}

.hero-action {
  margin-top: 34px;
}

.slide-dots {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: clamp(52px, 8vh, 110px);
  display: flex;
  gap: 11px;
}

.slide-dot {
  width: 31px;
  height: 20px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
}

.slide-dot.is-active {
  border-color: var(--white);
}

.hero--carousel .slide-dots {
  right: auto;
  bottom: 28px;
  left: 50%;
  gap: 8px;
  transform: translateX(-50%);
}

.hero--carousel .slide-dot {
  width: clamp(34px, 5vw, 64px);
  height: 3px;
  border: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero--carousel .slide-dot.is-active {
  background: var(--white);
}

.intro {
  padding-top: clamp(80px, 12vw, 180px);
  padding-bottom: clamp(70px, 10vw, 140px);
}

.intro--dark {
  background: var(--ink);
  color: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 16px);
  padding: 0 clamp(8px, 1vw, 16px) clamp(8px, 1vw, 16px);
  background: var(--ink);
}

.work-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  border: 0;
  padding: 0;
  background: #1a1a1a;
  cursor: zoom-in;
}

.work-item:nth-child(7n + 1),
.work-item:nth-child(11n + 4) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 300ms ease;
}

.work-item:hover img,
.work-item:focus-visible img {
  transform: scale(1.025);
  opacity: 0.86;
}

.page-hero-image,
.project-hero {
  position: relative;
  min-height: min(76svh, 900px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero-image > img,
.project-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-image::after,
.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.08) 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 56%);
}

.page-hero-content,
.project-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(76svh, 900px);
  padding-top: 110px;
  padding-bottom: clamp(54px, 8vw, 112px);
}

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

.service-group {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) 2fr;
  gap: clamp(34px, 8vw, 140px);
  padding: clamp(54px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--line);
}

.service-group h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 78px);
}

.service-item h3,
.contact-card h2,
.project-copy h2,
.menu-category h2 {
  margin: 0 0 16px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-item p,
.project-copy p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(60px, 9vw, 150px);
  padding-top: clamp(70px, 10vw, 140px);
  padding-bottom: clamp(80px, 12vw, 180px);
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 34px;
}

.contact-card {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.contact-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-card__copy {
  padding: 24px 0 30px;
}

.contact-card p {
  margin: 0;
}

.contact-card a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}

.contact-form h2,
.contact-form .full,
.form-status {
  grid-column: 1 / -1;
}

.contact-form h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 0;
  outline: 0;
  background: transparent;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
}

.contact-form button {
  justify-self: start;
  border: 1px solid var(--ink);
  padding: 15px 22px;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.project-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.5fr);
  gap: clamp(50px, 10vw, 170px);
  padding-top: clamp(72px, 10vw, 140px);
  padding-bottom: clamp(72px, 10vw, 140px);
}

.project-copy .project-statement {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1.12;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--ink);
}

.project-gallery figure {
  margin: 0;
  min-height: 360px;
  background: #161616;
}

.project-gallery figure:first-child:nth-last-child(odd),
.project-gallery figure:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 620px;
}

.feature-panel__image {
  min-height: 480px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.feature-panel__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(54px, 8vw, 120px);
  background: var(--ink);
  color: var(--white);
}

.feature-panel__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 6.4rem);
  font-weight: 400;
  line-height: 0.98;
}

.feature-panel__copy p {
  max-width: 520px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.72);
}

.menu-header {
  padding-top: clamp(80px, 12vw, 170px);
  padding-bottom: clamp(70px, 9vw, 120px);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.menu-header .page-title,
.menu-header .lede {
  margin-right: auto;
  margin-left: auto;
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 38px;
}

.menu-nav a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  background: var(--line);
}

.menu-category {
  padding: clamp(44px, 7vw, 96px);
  background: var(--paper);
}

.menu-category h2 {
  margin-bottom: 34px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item p {
  margin: 0;
}

.menu-item .arabic {
  grid-column: 1;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
}

.menu-item .price {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: none;
  place-items: center;
  padding: 58px;
  background: rgba(0, 0, 0, 0.94);
  color: var(--white);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100svh - 116px);
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 300;
}

.lightbox-close {
  top: 16px;
  right: 22px;
  width: 44px;
  height: 44px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 54px;
  height: 70px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.site-footer {
  padding: clamp(58px, 8vw, 110px) var(--gutter) 42px;
  background: var(--white);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 50px;
  width: min(100%, var(--content));
  margin: 0 auto;
}

.footer-brand {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.footer-copy,
.footer-links {
  margin: 0;
  font-size: 0.78rem;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 7px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  width: min(100%, var(--content));
  margin: 70px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: var(--gutter);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.not-found p {
  max-width: 540px;
}

@media (max-width: 980px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout,
  .project-copy,
  .feature-panel,
  .service-group {
    grid-template-columns: 1fr;
  }

  .feature-panel__image {
    min-height: 62svh;
  }

  .service-items {
    max-width: 760px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .wordmark {
    max-width: 190px;
    font-size: 0.64rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 30px var(--gutter);
    background: var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-content .display {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .slide-dots {
    right: auto;
    bottom: 22px;
    left: var(--gutter);
  }

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

  .work-item,
  .work-item:nth-child(7n + 1),
  .work-item:nth-child(11n + 4) {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }

  .service-items,
  .contact-form,
  .project-gallery,
  .menu-sections,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 80px;
  }

  .contact-form {
    gap: 25px;
  }

  .contact-form h2,
  .contact-form .full,
  .form-status {
    grid-column: auto;
  }

  .project-gallery figure,
  .project-gallery figure:first-child:nth-last-child(odd),
  .project-gallery figure:last-child:nth-child(odd) {
    grid-column: auto;
    min-height: 280px;
  }

  .menu-category {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .lightbox {
    padding: 60px 10px 44px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 0;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
