:root {
  --black: #070707;
  --black-soft: #0f0f0f;
  --ivory: #f3efe6;
  --ivory-soft: #d9d4ca;
  --muted: #a7a39a;
  --signal: #e83a2a;
  --signal-dark: #bd291e;
  --line: rgba(243, 239, 230, 0.18);
  --line-strong: rgba(243, 239, 230, 0.32);
  --pad: clamp(1.25rem, 4vw, 4.75rem);
  --header-h: 82px;
  --arabic: "Alexandria", sans-serif;
  --hand: "Aref Ruqaa", "Alexandria", serif;
  --latin: "Manrope", "Alexandria", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--arabic);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[lang="en"] body { font-family: var(--latin); }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button, a, input, textarea, select { touch-action: manipulation; }
button { border: 0; }
img { max-width: 100%; }
::selection { color: white; background: var(--signal); }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }

.film-scratches,
.cursor-glow,
.cursor-ring,
.click-burst,
.cinema-loader,
.cinema-transition,
.film-progress,
.film-hud { display: none !important; }

.grain {
  position: fixed;
  z-index: 35;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: var(--header-h);
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(to bottom, rgba(7,7,7,.92), rgba(7,7,7,0));
  border-bottom: 1px solid transparent;
  transition: height .3s ease, background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  height: 70px;
  background: rgba(7,7,7,.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; direction: ltr; flex: 0 0 auto; }
.brand img { display: block; width: 142px; height: 54px; object-fit: contain; object-position: left center; }
.desktop-nav {
  position: absolute;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.3vw, 2.6rem);
  white-space: nowrap;
  color: rgba(243,239,230,.78);
  font-size: .82rem;
  font-weight: 500;
}
[dir="rtl"] .desktop-nav { transform: translateX(50%); }
.desktop-nav a { position: relative; padding: .75rem 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 .3rem;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.lang-toggle {
  width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7,7,7,.35);
  cursor: pointer;
  font-family: var(--latin);
  font-size: .66rem;
  font-weight: 600;
}
.header-cta {
  min-height: 48px;
  padding: .75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-radius: 999px;
  background: var(--signal);
  color: white;
  font-size: .78rem;
  font-weight: 600;
  transition: background .25s ease, transform .25s ease;
}
.header-cta:hover { background: #f04a38; transform: translateY(-2px); }
.header-cta i { font-family: var(--latin); font-style: normal; }
.menu-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  display: none;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7,7,7,.3);
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 1px; background: var(--ivory); transition: transform .25s ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 7rem var(--pad) max(2rem, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  background: #090909;
  transform: translateY(-105%);
  visibility: hidden;
  transition: transform .42s cubic-bezier(.22,1,.36,1), visibility 0s .42s;
}
.menu-open .mobile-menu { transform: none; visibility: visible; transition-delay: 0s; }
.menu-open .site-header { z-index: 110; background: transparent; border-color: transparent; }
.mobile-symbol { position: absolute; inset: auto auto 8% 8%; width: 42vw; max-width: 220px; opacity: .055; }
.mobile-menu-links { display: grid; border-top: 1px solid var(--line); }
.mobile-menu-links a {
  min-height: 70px;
  padding: .9rem 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-links span { color: var(--signal); font-family: var(--latin); font-size: .64rem; }
.mobile-menu-links b { font-family: var(--hand); font-size: clamp(1.65rem, 7vw, 2.5rem); font-weight: 700; line-height: 1.2; }
html[lang="en"] .mobile-menu-links b { font-family: var(--latin); font-weight: 500; }
.mobile-menu-booking b { color: var(--signal); }
.mobile-menu > p { margin: 0; color: var(--muted); font-family: var(--latin); font-size: .72rem; line-height: 1.8; }

/* Keep Arabic display copy readable when a live image or red section sits behind it. */
html[lang="ar"] .hero-v27 h1 em,
html[lang="ar"] .hero-v27-feature span,
html[lang="ar"] .project-card .card-cta { color: var(--ivory); }
html[lang="ar"] .process-section .eyebrow,
html[lang="ar"] .process-section h2,
html[lang="ar"] .process-section .process-step > span,
html[lang="ar"] .process-section .process-step h3,
html[lang="ar"] .process-section .process-step p,
html[lang="ar"] .home-booking .eyebrow,
html[lang="ar"] .home-booking h2,
html[lang="ar"] .home-booking p { color: #fff; }

main { min-height: 70vh; }
.page { animation: page-in .48s cubic-bezier(.22,1,.36,1) both; }
@keyframes page-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--ivory-soft);
  font-family: var(--latin);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-shell { padding: clamp(5.5rem, 9vw, 9rem) var(--pad); }
.section-head-v27 {
  margin-bottom: clamp(2rem, 4vw, 4.5rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.section-head-v27 > div { max-width: 780px; }
.section-head-v27 h2,
.about-preview h2,
.process-section h2,
.home-booking h2,
.about-statement h2,
.about-recognition h2 {
  margin: 0;
  font-family: var(--hand);
  font-size: clamp(2.7rem, 6.5vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}
html[lang="en"] .section-head-v27 h2,
html[lang="en"] .about-preview h2,
html[lang="en"] .process-section h2,
html[lang="en"] .home-booking h2,
html[lang="en"] .about-statement h2,
html[lang="en"] .about-recognition h2 {
  font-family: var(--latin);
  font-weight: 400;
  letter-spacing: -.055em;
}
.section-head-v27 p:last-child { max-width: 610px; margin: 1rem 0 0; color: var(--muted); }
.text-link {
  min-height: 48px;
  padding-bottom: .25rem;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 600;
}
.text-link span { color: var(--signal); font-family: var(--latin); }
.button {
  min-height: 52px;
  padding: .85rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.35;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--signal); color: white; }
.button-primary:hover { background: #f04a38; }
.button-ghost { border-color: var(--line-strong); background: rgba(7,7,7,.18); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: var(--ivory); }
.button span { font-family: var(--latin); }

/* Home */
.hero-v27 {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 5rem) var(--pad) clamp(3rem, 7vw, 6rem);
  isolation: isolate;
}
.hero-v27-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(.75) contrast(1.06) brightness(.77);
  transform: scale(1.015);
  animation: hero-drift 15s ease-in-out infinite alternate;
}
@keyframes hero-drift { to { transform: scale(1.055); } }
.hero-v27-scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,7,.96) 0%, rgba(7,7,7,.45) 55%, rgba(7,7,7,.6) 100%),
    linear-gradient(90deg, rgba(7,7,7,.72), transparent 68%);
}
[dir="rtl"] .hero-v27-scrim {
  background:
    linear-gradient(to top, rgba(7,7,7,.96) 0%, rgba(7,7,7,.45) 55%, rgba(7,7,7,.6) 100%),
    linear-gradient(270deg, rgba(7,7,7,.72), transparent 68%);
}
.hero-v27-content { width: min(880px, 72vw); position: relative; z-index: 2; }
.hero-v27 h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--hand);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 700;
  line-height: .96;
}
.hero-v27 h1 em { color: var(--signal); font-style: normal; }
html[lang="en"] .hero-v27 h1 {
  font-family: var(--latin);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .9;
}
.hero-v27-lead { max-width: 690px; margin: 1.6rem 0 0; color: rgba(243,239,230,.84); font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.85; }
.hero-v27-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.reel-trigger {
  min-height: 52px;
  padding: .5rem .8rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 600;
}
.reel-trigger i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--signal);
  font-family: var(--latin);
  font-size: .7rem;
  font-style: normal;
}
.hero-v27-feature {
  position: absolute;
  z-index: 2;
  inset-inline-end: var(--pad);
  bottom: clamp(3rem, 7vw, 6rem);
  width: min(270px, 24vw);
  padding: 1.25rem 0;
  display: grid;
  gap: .2rem;
  border-block: 1px solid var(--line);
}
.hero-v27-feature small { color: var(--muted); font-family: var(--latin); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-v27-feature strong { font-family: var(--hand); font-size: 1.5rem; line-height: 1.35; }
html[lang="en"] .hero-v27-feature strong { font-family: var(--latin); font-size: 1.15rem; }
.hero-v27-feature span { margin-top: .5rem; color: var(--signal); font-size: .7rem; font-weight: 600; }
.hero-scroll {
  position: absolute;
  inset: auto 50% 1.2rem auto;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(243,239,230,.52);
  font-family: var(--latin);
  font-size: .5rem;
  letter-spacing: .16em;
}
.hero-scroll i { width: 42px; height: 1px; background: var(--signal); }
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--black-soft);
}
.proof-strip div { min-height: 94px; padding: 1.25rem var(--pad); display: flex; align-items: center; gap: 1rem; border-inline-end: 1px solid var(--line); }
.proof-strip div:last-child { border-inline-end: 0; }
.proof-strip small { color: var(--signal); font-family: var(--latin); font-size: .56rem; }
.proof-strip span { font-size: .78rem; line-height: 1.6; }

.home-project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.home-project-grid .project-card:nth-child(1),
.home-project-grid .project-card:nth-child(4) { grid-column: span 7; }
.home-project-grid .project-card:nth-child(2),
.home-project-grid .project-card:nth-child(3) { grid-column: span 5; }
.home-project-grid .project-card:nth-child(2) { margin-top: 7rem; }
.home-project-grid .project-card:nth-child(4) { margin-top: -4rem; }
.project-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  aspect-ratio: 4 / 5;
  min-width: 0;
  overflow: hidden;
  display: block;
  background: var(--card-bg, #161616);
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .25s ease, filter .25s ease;
}
.project-card.reveal.visible { transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry)); }
.project-art,
.project-cover,
.project-card-shade { position: absolute; inset: 0; }
.project-art { background: var(--card-bg, #171717); transition: transform .6s cubic-bezier(.16,1,.3,1); }
.project-art::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  inset: var(--orb-y, 35%) auto auto var(--orb-x, 50%);
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: var(--orb, var(--signal));
  filter: blur(70px);
  opacity: .68;
}
.project-cover {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  filter: grayscale(.75) contrast(1.08) brightness(.78);
  transition: transform .75s cubic-bezier(.16,1,.3,1), filter .5s ease, opacity .5s ease;
}
.project-card-shade {
  z-index: 2;
  background: linear-gradient(to top, rgba(5,5,5,.92), rgba(5,5,5,.08) 65%, rgba(5,5,5,.3));
}
.project-card:hover .project-cover { transform: scale(1.055); filter: grayscale(0) contrast(1.02) brightness(.9); opacity: 1; }
.project-index {
  position: absolute;
  z-index: 3;
  inset: 1rem 1rem auto auto;
  color: rgba(255,255,255,.78);
  font-family: var(--latin);
  font-size: .58rem;
  letter-spacing: .12em;
}
[dir="rtl"] .project-index { inset: 1rem auto auto 1rem; }
.project-film-badge {
  position: absolute;
  z-index: 3;
  inset: 1rem auto auto 1rem;
  padding: .42rem .65rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(5,5,5,.42);
  color: rgba(255,255,255,.82);
  font-family: var(--latin);
  font-size: .48rem;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}
[dir="rtl"] .project-film-badge { inset: 1rem 1rem auto auto; }
.project-film-badge i { color: var(--signal); font-style: normal; }
.project-meta {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  padding: clamp(1.1rem, 2.4vw, 2rem);
}
.project-meta small { display: block; min-height: 1.2em; color: rgba(255,255,255,.62); font-family: var(--latin); font-size: .56rem; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.project-meta :is(h2,h3) { margin: .45rem 0 0; font-family: var(--hand); font-size: clamp(1.65rem, 3vw, 3.2rem); font-weight: 700; line-height: 1.15; }
html[lang="en"] .project-meta :is(h2,h3) { font-family: var(--latin); font-size: clamp(1.4rem, 2.4vw, 2.6rem); font-weight: 400; letter-spacing: -.04em; }
.card-cta { margin-top: .7rem; display: inline-flex; color: var(--signal); font-size: .68rem; font-weight: 600; }

.studio-journal {
  scroll-margin-top: var(--header-h);
  border-block: 1px solid var(--line);
  background: #090909;
}
.studio-journal .section-head-v27 { margin-bottom: clamp(2rem, 4vw, 4rem); }
.studio-journal .section-head-v27 h2 { color: var(--ivory); }
.studio-journal-grid {
  column-count: 4;
  column-width: 250px;
  column-gap: .75rem;
}
.studio-journal-frame {
  margin: 0 0 .75rem;
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  background: #151515;
}
.studio-journal-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(.28) contrast(1.04);
  transition: filter .45s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}
.studio-journal-frame:hover img { filter: grayscale(0); transform: scale(1.018); }
.studio-journal-frame span {
  position: absolute;
  inset: auto .7rem .65rem;
  color: rgba(255,255,255,.78);
  font-family: var(--latin);
  font-size: .46rem;
  letter-spacing: .12em;
  text-shadow: 0 1px 8px rgba(0,0,0,.9);
  pointer-events: none;
}
.bts-photo-journal { padding-top: clamp(5rem, 9vw, 9rem); padding-bottom: clamp(5rem, 9vw, 9rem); }

.about-preview {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 760px;
  border-block: 1px solid var(--line);
  background: var(--ivory);
  color: var(--black);
}
.about-preview-image { min-height: 620px; position: relative; display: block; overflow: hidden; }
.about-preview-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); transition: filter .5s ease, transform .8s ease; }
.about-preview-image:hover img { filter: grayscale(.15); transform: scale(1.025); }
.about-preview-image span { position: absolute; inset: auto 1rem 1rem; color: white; font-family: var(--latin); font-size: .52rem; letter-spacing: .14em; text-shadow: 0 1px 8px black; }
.about-preview-copy { padding: clamp(3rem, 7vw, 8rem); display: flex; flex-direction: column; justify-content: center; }
.about-preview-copy .eyebrow { color: #5d5b55; }
.about-preview-copy p:not(.eyebrow) { max-width: 600px; margin: 1.6rem 0 2.2rem; color: #4e4c47; font-size: 1rem; line-height: 1.9; }
.about-preview-copy .text-link { align-self: flex-start; border-color: rgba(7,7,7,.35); }

.services-preview { background: #0b0b0b; }
.services-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.service-tile {
  min-height: 320px;
  padding: clamp(1.5rem, 3.5vw, 3.5rem);
  position: relative;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.service-tile:nth-child(even) { border-inline-end: 0; }
.service-tile:hover { background: #141414; }
.service-tile > span { color: var(--signal); font-family: var(--latin); font-size: .58rem; }
.service-tile h3 { max-width: 520px; margin: 2.4rem 0 .9rem; font-family: var(--hand); font-size: clamp(2rem, 3.7vw, 3.7rem); font-weight: 700; line-height: 1.1; }
html[lang="en"] .service-tile h3 { font-family: var(--latin); font-weight: 400; letter-spacing: -.04em; }
.service-tile p { max-width: 560px; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.85; }
.service-tile > i { position: absolute; inset: auto auto 2rem 2rem; color: var(--signal); font-family: var(--latin); font-style: normal; }
[dir="rtl"] .service-tile > i { inset: auto 2rem 2rem auto; }

.process-section { padding: clamp(5.5rem, 9vw, 9rem) var(--pad); background: var(--signal); color: white; }
.process-section .eyebrow,
.home-booking .eyebrow { color: rgba(255,255,255,.72); }
.process-section .section-head-v27 p:last-child { color: rgba(255,255,255,.76); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.3); }
.process-step { min-height: 260px; padding: 1.5rem 1.2rem 1.5rem 0; border-inline-end: 1px solid rgba(255,255,255,.3); }
[dir="rtl"] .process-step { padding: 1.5rem 0 1.5rem 1.2rem; }
.process-step:last-child { border-inline-end: 0; }
.process-step > span { font-family: var(--latin); font-size: .58rem; opacity: .72; }
.process-step h3 { margin: 4.3rem 0 .8rem; font-family: var(--hand); font-size: clamp(2rem, 3vw, 3rem); line-height: 1; }
html[lang="en"] .process-step h3 { font-family: var(--latin); font-weight: 400; letter-spacing: -.04em; }
.process-step p { max-width: 260px; margin: 0; color: rgba(255,255,255,.78); font-size: .76rem; line-height: 1.8; }

.recognition-preview { background: var(--ivory); color: var(--black); }
.recognition-preview .eyebrow,
.recognition-preview .section-head-v27 p:last-child { color: #615e57; }
.recognition-preview .text-link { border-color: rgba(7,7,7,.3); }
.recognition-rail { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(7,7,7,.2); }
.recognition-card { min-height: 280px; padding: 1.5rem 1.5rem 1.5rem 0; position: relative; border-inline-end: 1px solid rgba(7,7,7,.2); }
[dir="rtl"] .recognition-card { padding: 1.5rem 0 1.5rem 1.5rem; }
.recognition-card:last-child { border-inline-end: 0; }
.recognition-card > span { color: var(--signal); font-family: var(--latin); font-size: .66rem; font-weight: 600; }
.recognition-card h3 { margin: 3.4rem 0 .8rem; font-family: var(--hand); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.1; }
html[lang="en"] .recognition-card h3 { font-family: var(--latin); font-size: clamp(1.45rem, 2.3vw, 2.2rem); font-weight: 500; letter-spacing: -.035em; }
.recognition-card p { margin: 0; color: #5c5953; font-size: .78rem; line-height: 1.75; }
.recognition-card small { position: absolute; inset: auto auto 1.5rem 0; color: var(--signal); font-size: .64rem; font-weight: 600; }
[dir="rtl"] .recognition-card small { inset: auto 0 1.5rem auto; }

.home-booking {
  min-height: 64vh;
  padding: clamp(5rem, 10vw, 10rem) var(--pad);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  background:
    linear-gradient(90deg, rgba(232,58,42,.97), rgba(169,35,25,.89)),
    url("/assets/bts/IMG_4442.webp") center / cover;
  color: white;
}
[dir="rtl"] .home-booking { background: linear-gradient(270deg, rgba(232,58,42,.97), rgba(169,35,25,.89)), url("/assets/bts/IMG_4442.webp") center / cover; }
.home-booking > div { max-width: 820px; }
.home-booking h2 { font-size: clamp(3rem, 7vw, 7rem); }
.home-booking p:last-child { max-width: 620px; color: rgba(255,255,255,.82); }
.home-booking .button-primary { flex: 0 0 auto; border: 1px solid rgba(255,255,255,.55); background: white; color: var(--black); }
.home-booking--inline {
  min-height: auto;
  padding-block: clamp(4.5rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.home-booking-copy { position: sticky; top: calc(var(--header-h) + 2rem); }
.home-booking-copy h2 { max-width: 680px; margin: .7rem 0 1.3rem; }
.home-booking-copy > p:last-of-type { max-width: 620px; margin: 0; color: rgba(255,255,255,.86); }
.booking-promise--light { color: rgba(255,255,255,.86); }
.booking-promise--light i { background: white; color: var(--signal); }
.booking-form--inline { width: 100%; background: rgba(7,7,7,.94); border-color: rgba(255,255,255,.28); box-shadow: 0 2rem 6rem rgba(63,5,0,.28); }
.home-booking .booking-form h2 { font-size: 1rem; line-height: 1.4; }
.booking-form--inline .field-row > .field:only-child { grid-column: 1 / -1; }

/* Behind the scenes */
.bts-page { background: #090909; }
.bts-page-hero {
  min-height: max(760px, 92svh);
  padding: calc(var(--header-h) + 6rem) var(--pad) clamp(4.5rem, 8vw, 8rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: end;
}
.bts-page-hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(.4) contrast(1.08) brightness(.72);
  transform: scale(1.015);
}
.bts-page-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,7,.96) 0%, rgba(7,7,7,.76) 38%, rgba(7,7,7,.18) 72%, rgba(7,7,7,.58) 100%),
    linear-gradient(to top, rgba(7,7,7,.92), transparent 55%);
}
[dir="rtl"] .bts-page-hero-shade {
  background:
    linear-gradient(270deg, rgba(7,7,7,.96) 0%, rgba(7,7,7,.76) 38%, rgba(7,7,7,.18) 72%, rgba(7,7,7,.58) 100%),
    linear-gradient(to top, rgba(7,7,7,.92), transparent 55%);
}
.bts-page-hero-copy { z-index: 1; width: min(780px, 72vw); }
.bts-page-hero-copy h1 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--hand);
  font-size: clamp(4.8rem, 10vw, 10rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .86;
}
html[lang="en"] .bts-page-hero-copy h1 {
  font-family: var(--latin);
  font-weight: 400;
  letter-spacing: -.07em;
}
.bts-page-hero-copy > p:last-child {
  max-width: 590px;
  margin: 2rem 0 0;
  color: var(--ivory-soft);
  font-size: 1rem;
  line-height: 1.9;
}
.bts-scroll-link {
  position: absolute;
  z-index: 2;
  inset: auto auto clamp(2rem, 4vw, 4rem) var(--pad);
  min-height: 48px;
  padding: 0 0 .35rem;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid var(--ivory);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 600;
}
[dir="ltr"] .bts-scroll-link { inset: auto var(--pad) clamp(2rem, 4vw, 4rem) auto; }
.bts-scroll-link span { color: var(--signal); font-family: var(--latin); font-size: 1rem; }
.bts-library { border-top: 1px solid var(--line); }
.bts-story {
  scroll-margin-top: 90px;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
}
.bts-story + .bts-story {
  margin-top: clamp(6rem, 10vw, 11rem);
  padding-top: clamp(6rem, 10vw, 11rem);
  border-top: 1px solid var(--line);
}
.bts-media { min-width: 0; margin: 0; }
.bts-player {
  width: min(100%, 520px);
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  background: #020202;
  border: 1px solid var(--line-strong);
  box-shadow: 0 2.4rem 7rem rgba(0,0,0,.42);
}
.bts-player.is-portrait { aspect-ratio: 9 / 16; }
.bts-player.is-landscape { width: 100%; max-width: none; aspect-ratio: 16 / 9; }
.bts-player video { width: 100%; height: 100%; display: block; object-fit: contain; background: #020202; }
.bts-player-code {
  position: absolute;
  inset: .85rem auto auto .85rem;
  padding: .35rem .5rem;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(7,7,7,.56);
  color: white;
  font-family: var(--latin);
  font-size: .52rem;
  letter-spacing: .12em;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.bts-media figcaption {
  width: min(100%, 520px);
  margin: .9rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-family: var(--latin);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bts-media figcaption b { color: var(--ivory); font-weight: 600; }
.bts-story-copy { max-width: 700px; }
.bts-story-copy h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--hand);
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 700;
  line-height: .98;
}
.bts-story-copy h2 span { display: inline-block; color: var(--ivory); font-family: var(--latin); font-size: .8em; font-weight: 400; letter-spacing: -.055em; }
html[lang="en"] .bts-story-copy h2 {
  font-family: var(--latin);
  font-weight: 400;
  letter-spacing: -.06em;
}
.bts-story-copy > p:not(.eyebrow) { max-width: 620px; margin: 1.8rem 0 2.1rem; color: var(--ivory-soft); line-height: 1.95; }
.bts-story-copy dl { margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: 1.4rem 3rem; }
.bts-story-copy dl div { min-width: 120px; }
.bts-story-copy dt { color: var(--muted); font-family: var(--latin); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; }
.bts-story-copy dd { margin: .25rem 0 0; color: var(--ivory); font-family: var(--latin); font-size: .76rem; }
.bts-closing {
  padding: clamp(5.5rem, 10vw, 10rem) var(--pad);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  background: var(--ivory);
  color: var(--black);
}
.bts-closing > div { max-width: 880px; }
.bts-closing .eyebrow { color: #666159; }
.bts-closing h2 {
  margin: 0;
  font-family: var(--hand);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1;
}
html[lang="en"] .bts-closing h2 { font-family: var(--latin); font-weight: 400; letter-spacing: -.06em; }
.bts-closing p:last-child { max-width: 650px; margin: 1.5rem 0 0; color: #514e48; }
.bts-closing .button-primary { flex: 0 0 auto; }

/* Inner-page headings and work archive */
.page-hero {
  min-height: 66vh;
  padding: calc(var(--header-h) + 7rem) var(--pad) 4rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr minmax(280px, .55fr);
  align-items: end;
  gap: 4rem;
  border-bottom: 1px solid var(--line);
  background: #090909;
}
.visual-page-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--page-bg);
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.1) brightness(.62);
}
.visual-page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,.95), rgba(7,7,7,.2) 68%, rgba(7,7,7,.6));
}
.page-hero h1 {
  margin: 0;
  font-family: var(--hand);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 700;
  line-height: .95;
}
html[lang="en"] .page-hero h1 { font-family: var(--latin); font-weight: 400; letter-spacing: -.065em; }
.page-hero > p { max-width: 540px; margin: 0 0 .7rem; color: var(--ivory-soft); font-size: .95rem; line-height: 1.9; }
.filters {
  position: sticky;
  z-index: 20;
  top: 70px;
  padding: .75rem var(--pad);
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  background: rgba(7,7,7,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}
.filter {
  min-height: 44px;
  padding: .65rem 1rem;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--ivory-soft);
  font-size: .72rem;
}
.filter.active { border-color: var(--signal); background: var(--signal); color: white; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.projects-grid .project-card { aspect-ratio: 16 / 11; }
.project-card.hidden { display: none; }
.project-card.filtering-out { opacity: 0; filter: blur(8px); pointer-events: none; }

/* About */
.about-hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 6rem) var(--pad) 5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: end;
}
.about-hero > img,
.about-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-hero > img { z-index: -2; object-fit: cover; filter: grayscale(1) contrast(1.1) brightness(.68); }
.about-hero-shade { z-index: -1; background: linear-gradient(to top, rgba(7,7,7,.96), rgba(7,7,7,.1) 70%, rgba(7,7,7,.58)); }
.about-hero > div:last-child { max-width: 1000px; }
.about-hero h1 {
  margin: 0;
  font-family: var(--hand);
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: .98;
}
html[lang="en"] .about-hero h1 { font-family: var(--latin); font-weight: 400; letter-spacing: -.065em; line-height: .92; }
.about-hero p:last-child { max-width: 680px; margin: 1.6rem 0 0; color: var(--ivory-soft); font-size: 1.05rem; }
.about-statement { background: var(--ivory); color: var(--black); }
.about-statement .eyebrow { color: #625f58; }
.about-statement h2 { max-width: 1150px; }
.about-process { background: #0b0b0b; }
.about-recognition {
  padding: clamp(5.5rem, 9vw, 9rem) var(--pad);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  background: var(--ivory);
  color: var(--black);
}
.about-recognition .eyebrow { color: #625f58; }
.about-recognition > div:last-child { border-top: 1px solid rgba(7,7,7,.25); }
.about-recognition a { min-height: 82px; display: grid; grid-template-columns: 4rem 1fr auto; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(7,7,7,.25); }
.about-recognition a span { color: var(--signal); font-family: var(--latin); font-size: .65rem; }
.about-recognition a b { font-weight: 500; }
.about-recognition a i { color: var(--signal); font-family: var(--latin); font-style: normal; }
.compact-booking { min-height: 48vh; }

/* Awards and services */
.awards-list,
.services-list { padding: 0 var(--pad) clamp(5rem, 9vw, 9rem); }
.award {
  min-height: 190px;
  display: grid;
  grid-template-columns: .18fr .9fr 1fr auto;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}
.award-year { color: var(--signal); font-family: var(--latin); font-size: .72rem; }
.award h2 { margin: 0; font-family: var(--hand); font-size: clamp(2rem, 4vw, 4rem); line-height: 1.1; }
html[lang="en"] .award h2 { font-family: var(--latin); font-weight: 400; letter-spacing: -.04em; }
.award p { margin: 0; color: var(--muted); font-size: .82rem; }
.award-mark { min-width: 92px; padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 999px; text-align: center; color: var(--ivory-soft); font-size: .6rem; }
.service-row { border-bottom: 1px solid var(--line); }
.service-button {
  width: 100%;
  min-height: 132px;
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: .14fr 1fr auto;
  align-items: center;
  gap: 2rem;
  background: transparent;
  text-align: start;
  cursor: pointer;
}
.service-button > span { color: var(--signal); font-family: var(--latin); font-size: .62rem; }
.service-button h2 { margin: 0; font-family: var(--hand); font-size: clamp(2.2rem, 5vw, 5rem); font-weight: 700; line-height: 1.05; }
html[lang="en"] .service-button h2 { font-family: var(--latin); font-weight: 400; letter-spacing: -.045em; }
.service-button i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--latin);
  font-style: normal;
  transition: transform .3s ease, background .3s ease;
}
.service-row.open .service-button i { transform: rotate(45deg); background: var(--ivory); color: var(--black); }
.service-panel { max-height: 0; overflow: hidden; display: grid; grid-template-columns: .14fr 1fr auto; gap: 2rem; transition: max-height .45s ease; }
.service-row.open .service-panel { max-height: 320px; }
.service-panel p { grid-column: 2; max-width: 760px; margin: 0 0 2.3rem; color: var(--muted); font-size: .9rem; line-height: 1.9; }
.service-panel ul { margin: 0 0 2.3rem; padding: 0; list-style: none; color: var(--muted); font-family: var(--latin); font-size: .65rem; line-height: 2; }

/* Booking */
.booking-hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 6rem) var(--pad) clamp(5rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  background:
    linear-gradient(90deg, rgba(7,7,7,.7), rgba(7,7,7,.98) 47%),
    url("/assets/bts/IMG_4446.webp") center / cover fixed;
}
[dir="rtl"] .booking-hero { background: linear-gradient(270deg, rgba(7,7,7,.7), rgba(7,7,7,.98) 47%), url("/assets/bts/IMG_4446.webp") center / cover fixed; }
.booking-copy { position: sticky; top: calc(var(--header-h) + 3rem); }
.booking-copy h1 {
  margin: 0;
  font-family: var(--hand);
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 700;
  line-height: .98;
}
html[lang="en"] .booking-copy h1 { font-family: var(--latin); font-weight: 400; letter-spacing: -.06em; line-height: .9; }
.booking-copy > p:not(.eyebrow) { max-width: 570px; margin: 1.7rem 0 0; color: var(--ivory-soft); font-size: .95rem; }
.booking-direct { margin-top: 3.5rem; padding-block: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-block: 1px solid var(--line); font-size: .75rem; }
.booking-direct span { color: var(--muted); }
.booking-direct a { color: var(--ivory); font-family: var(--latin); font-weight: 600; }
.booking-promise { margin-top: 1.2rem; display: flex; gap: .8rem; color: var(--muted); font-size: .72rem; }
.booking-promise i { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--signal); color: white; font-style: normal; }
.booking-form {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(15,15,15,.94);
  border: 1px solid var(--line);
  box-shadow: 0 2rem 7rem rgba(0,0,0,.45);
}
.form-heading { margin: .5rem 0 2rem; padding-bottom: .8rem; display: grid; grid-template-columns: 3rem 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.form-heading:not(:first-child) { margin-top: 3.2rem; }
.form-heading span { color: var(--signal); font-family: var(--latin); font-size: .58rem; }
.form-heading h2 { margin: 0; font-size: 1rem; font-weight: 500; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.3rem; position: relative; }
.field label,
.field-label { display: block; margin-bottom: .55rem; color: var(--ivory-soft); font-size: .72rem; font-weight: 500; }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: .8rem .95rem;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #0a0a0a;
  color: var(--ivory);
  font-size: 16px;
  color-scheme: dark;
  transition: border-color .25s ease, background .25s ease;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.75; }
.date-input-wrap { position: relative; }
.date-input-wrap input { min-height: 62px; padding-inline-end: 4rem; cursor: pointer; }
.date-quick-picks { margin-bottom: .65rem; display: grid; grid-template-columns: repeat(3,1fr); gap: .55rem; }
.date-chip {
  min-height: 58px;
  padding: .55rem .65rem;
  display: grid;
  align-content: center;
  gap: .08rem;
  border: 1px solid var(--line);
  background: #111;
  color: var(--ivory);
  cursor: pointer;
  text-align: start;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.date-chip b { font-size: .7rem; font-weight: 600; }
.date-chip span { color: var(--muted); font-family: var(--latin); font-size: .58rem; }
.date-chip:hover,
.date-chip:focus-visible { border-color: rgba(255,255,255,.52); transform: translateY(-1px); }
.date-chip.selected { border-color: var(--signal); background: rgba(232,58,42,.17); }
.date-chip.selected span { color: var(--ivory-soft); }
.date-picker-trigger {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--signal);
  color: white;
  cursor: pointer;
  font-family: var(--latin);
  font-size: 1.15rem;
  transition: background .2s ease, transform .2s ease;
}
.date-picker-trigger:hover,
.date-picker-trigger:focus-visible { background: #f04a38; transform: translateY(-1px); }
.date-help { display: block; padding-top: .45rem; color: var(--muted); font-size: .62rem; line-height: 1.5; }
.date-field .field-error { padding-top: .15rem; }
.time-options { display: grid; grid-template-columns: repeat(3,1fr); gap: .55rem; }
.time-option { position: relative; cursor: pointer; }
.time-option input { width: 1px; height: 1px; position: absolute; opacity: 0; pointer-events: none; }
.time-option span {
  min-height: 58px;
  padding: .65rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: var(--ivory-soft);
  font-size: .68rem;
  line-height: 1.4;
  text-align: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.time-option:hover span { border-color: rgba(255,255,255,.52); transform: translateY(-1px); }
.time-option input:focus-visible + span { outline: 2px solid var(--signal); outline-offset: 3px; }
.time-option input:checked + span { border-color: var(--signal); background: var(--signal); color: white; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--signal); background: #0d0d0d; }
.field-error { min-height: 1.2rem; display: block; padding-top: .3rem; color: #ff6c5e; font-size: .65rem; }
.form-actions { margin-top: 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.form-note { max-width: 390px; margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.75; }
.submit { min-height: 54px; min-width: 255px; padding: .9rem 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; border-radius: 999px; background: var(--signal); color: white; cursor: pointer; font-weight: 600; }
.submit:hover { background: #f04a38; transform: translateY(-2px); }

/* Project detail */
.project-detail-hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 5rem) var(--pad) 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  background: var(--card-bg, #111);
  isolation: isolate;
}
.project-detail-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.97), rgba(5,5,5,.12) 65%, rgba(5,5,5,.58));
}
.project-detail-hero .project-art { z-index: -2; }
.detail-cover { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) contrast(1.05) brightness(.72); }
.detail-symbol { position: absolute; z-index: 3; inset: calc(var(--header-h) + 1.5rem) auto auto var(--pad); width: 82px; opacity: .72; }
[dir="rtl"] .detail-symbol { inset: calc(var(--header-h) + 1.5rem) var(--pad) auto auto; }
.project-detail-hero .project-glyph { display: none; }
.project-detail-title { width: 100%; position: relative; z-index: 3; }
.project-detail-title h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--hand);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 700;
  line-height: .95;
}
html[lang="en"] .project-detail-title h1 { font-family: var(--latin); font-weight: 400; letter-spacing: -.06em; }
.project-facts { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem 3rem; }
.project-facts div { min-width: 150px; }
.project-facts small { display: block; color: var(--muted); font-family: var(--latin); font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; }
.project-facts b { display: block; margin-top: .4rem; font-size: .78rem; font-weight: 500; }
.case-intro { padding: clamp(5rem, 9vw, 9rem) var(--pad); display: grid; grid-template-columns: .4fr 1.6fr; gap: 5vw; }
.case-intro h2 { max-width: 1050px; margin: 0; font-family: var(--hand); font-size: clamp(2.6rem, 5.5vw, 5.5rem); font-weight: 700; line-height: 1.15; }
html[lang="en"] .case-intro h2 { font-family: var(--latin); font-weight: 400; letter-spacing: -.045em; }
.case-intro p { max-width: 760px; margin: 1.5rem 0 0; color: var(--muted); font-size: .92rem; line-height: 1.95; }
.case-film { padding: 0 var(--pad) clamp(5rem, 9vw, 9rem); }
.case-film-head { margin-bottom: 1rem; display: flex; justify-content: space-between; align-items: center; direction: ltr; }
.case-film-head .eyebrow { margin: 0; }
.case-film-head > span { color: var(--muted); font-family: var(--latin); font-size: .54rem; letter-spacing: .12em; }
.case-player { aspect-ratio: 16 / 9; position: relative; overflow: hidden; background: #020202; border: 1px solid var(--line); }
.case-player video,
.case-player iframe { width: 100%; height: 100%; display: block; object-fit: contain; border: 0; background: #020202; }
.case-player-edge { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 90px rgba(0,0,0,.36); }
.portrait-film { width: min(100%, 720px); margin-inline: auto; }
.portrait-player { width: min(100%, 620px); aspect-ratio: 9 / 16; margin-inline: auto; }
.case-frames { padding: 0 var(--pad) 7rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; }
.case-frame { min-height: 560px; position: relative; overflow: hidden; background: var(--card-bg); }
.case-frame:nth-child(2) { min-height: 420px; margin-top: 7rem; }
.case-frame::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; inset: 50% auto auto 50%; transform: translate(-50%,-50%); border-radius: 50%; background: var(--orb); filter: blur(70px); opacity: .7; }
.case-frame span { position: absolute; inset: auto 1rem 1rem; color: var(--muted); font-family: var(--latin); font-size: .54rem; }
.project-booking {
  min-height: 42vh;
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  background: #111;
  border-top: 1px solid var(--line);
}
.project-booking h2 { max-width: 850px; margin: 0; font-family: var(--hand); font-size: clamp(2.8rem, 6vw, 6rem); line-height: 1.05; }
html[lang="en"] .project-booking h2 { font-family: var(--latin); font-weight: 400; letter-spacing: -.05em; }
.next-project { min-height: 42vh; padding: clamp(4rem, 8vw, 8rem) var(--pad); display: flex; align-items: end; justify-content: space-between; gap: 2rem; background: var(--ivory); color: var(--black); }
.next-project small { color: #625f58; font-family: var(--latin); font-size: .6rem; letter-spacing: .1em; }
.next-project h2 { margin: .8rem 0 0; font-family: var(--hand); font-size: clamp(2.8rem, 6vw, 6rem); line-height: 1.05; }
html[lang="en"] .next-project h2 { font-family: var(--latin); font-weight: 400; letter-spacing: -.05em; }
.next-project > i { width: 64px; height: 64px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(7,7,7,.25); border-radius: 50%; color: var(--signal); font-family: var(--latin); font-style: normal; }

.reel-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  padding: var(--pad);
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility 0s .3s;
}
.reel-modal.open { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.reel-window { width: min(100%, 1100px); aspect-ratio: 16 / 9; position: relative; background: #020202; border: 1px solid var(--line); transform: scale(.94); transition: transform .4s cubic-bezier(.22,1,.36,1); }
.reel-modal.open .reel-window { transform: none; }
.reel-window iframe { width: 100%; height: 100%; display: block; border: 0; }
.reel-close { position: absolute; z-index: 2; top: .8rem; right: .8rem; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: rgba(7,7,7,.85); color: white; cursor: pointer; font-size: 1.3rem; }
.toast {
  position: fixed;
  z-index: 130;
  inset: auto auto 2rem 50%;
  padding: .8rem 1.2rem;
  transform: translate(-50%, 1rem);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--black);
  font-size: .75rem;
  transition: opacity .3s ease, transform .3s ease;
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.site-footer { padding: clamp(4rem, 8vw, 7rem) var(--pad) 2.5rem; background: #050505; border-top: 1px solid var(--line); }
.footer-lead { display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: clamp(1.5rem, 4vw, 4rem); }
.footer-symbol { width: 84px; opacity: .86; }
.footer-lead p { max-width: 760px; margin: 0; font-family: var(--hand); font-size: clamp(2.3rem, 5vw, 5rem); font-weight: 700; line-height: 1.05; }
html[lang="en"] .footer-lead p { font-family: var(--latin); font-weight: 400; letter-spacing: -.05em; }
.footer-lead > a { min-height: 48px; padding-bottom: .3rem; display: inline-flex; align-items: center; border-bottom: 1px solid var(--signal); color: var(--signal); font-size: .78rem; font-weight: 600; white-space: nowrap; }
.footer-meta { margin-top: 4rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--latin); font-size: .62rem; }
.mobile-booking-dock { display: none; }

.featured-v27,
.home-photo-journal,
.about-preview,
.services-preview,
.seo-discovery,
.process-section,
.recognition-preview { content-visibility: auto; contain-intrinsic-size: 900px; }

@media (max-width: 1160px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .header-cta { display: none; }
}

@media (max-width: 1060px) {
  .hero-v27-content { width: min(760px, 78vw); }
  .hero-v27-feature { width: 210px; }
  .booking-hero { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
  .about-preview { grid-template-columns: 1fr; }
  .about-preview-image { min-height: 70vw; max-height: 760px; }
  .about-recognition { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --pad: 1.1rem; --header-h: 72px; }
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  .site-header { height: var(--header-h); }
  .site-header.scrolled { height: 64px; }
  .brand img { width: 116px; height: 46px; }
  .lang-toggle, .menu-toggle { width: 46px; height: 46px; min-height: 46px; }
  .mobile-booking-dock {
    position: fixed;
    z-index: 60;
    inset: auto .8rem max(.75rem, env(safe-area-inset-bottom));
    min-height: 58px;
    padding: .8rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .8rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: #dd3425;
    color: white;
    box-shadow: 0 .8rem 2.5rem rgba(0,0,0,.48);
    font-size: .84rem;
    font-weight: 600;
    transition: opacity .2s ease, transform .2s ease;
  }
  .booking-form-visible .mobile-booking-dock { opacity: 0; pointer-events: none; transform: translateY(calc(100% + 1.5rem)); }
  .mobile-booking-dot { width: 8px; height: 8px; border-radius: 50%; background: #78e37e; box-shadow: 0 0 0 4px rgba(120,227,126,.15); }
  .mobile-booking-dock b { font-family: var(--latin); }
  .menu-open .mobile-booking-dock,
  body:has(.reel-modal.open) .mobile-booking-dock,
  body:has(.booking-page) .mobile-booking-dock { display: none; }
  .mobile-menu { padding-top: 6.4rem; }
  .grain { opacity: .025; }
  .section-shell { padding-block: 5.5rem; }
  .section-head-v27 { align-items: start; flex-direction: column; gap: 1.2rem; }
  .section-head-v27 h2,
  .about-preview h2,
  .process-section h2,
  .home-booking h2,
  .about-statement h2,
  .about-recognition h2 { font-size: clamp(2.75rem, 13vw, 4.4rem); line-height: 1.05; }
  .hero-v27 {
    min-height: max(720px, 100svh);
    padding: calc(var(--header-h) + 3.5rem) var(--pad) 4.2rem;
    align-items: end;
  }
  .hero-v27-image { object-position: 57% center; animation: none; }
  .hero-v27-scrim {
    background: linear-gradient(to top, rgba(7,7,7,.98) 0%, rgba(7,7,7,.52) 58%, rgba(7,7,7,.62) 100%);
  }
  [dir="rtl"] .hero-v27-scrim { background: linear-gradient(to top, rgba(7,7,7,.98) 0%, rgba(7,7,7,.52) 58%, rgba(7,7,7,.62) 100%); }
  .hero-v27-content { width: 100%; }
  .hero-v27 h1 { max-width: 95%; font-size: clamp(3.4rem, 17vw, 5.7rem); line-height: 1; }
  html[lang="en"] .hero-v27 h1 { font-size: clamp(3.15rem, 15vw, 5rem); line-height: .94; }
  .hero-v27-lead { margin-top: 1.2rem; font-size: 1rem; line-height: 1.75; }
  .hero-v27-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-v27-actions .button { width: 100%; }
  .hero-v27-actions .reel-trigger { grid-column: 1 / -1; padding-inline: 0; }
  .hero-v27-feature,
  .hero-scroll { display: none; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { min-height: 66px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { border-bottom: 0; }
  .home-project-grid {
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    display: flex;
    gap: .9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-project-grid .project-card:nth-child(n) {
    flex: 0 0 84vw;
    margin: 0;
    scroll-snap-align: center;
  }
  .project-card.reveal.visible { transform: none; }
  .project-cover { filter: grayscale(.35) contrast(1.05) brightness(.82); }
  .project-meta { padding: 1.2rem; }
  .project-meta :is(h2,h3) { font-size: 2rem; }
  .studio-journal-grid { column-count: 2; column-width: auto; column-gap: .55rem; }
  .studio-journal-frame { margin-bottom: .55rem; }
  .studio-journal-frame span { font-size: .4rem; inset: auto .45rem .45rem; }
  .about-preview { min-height: auto; }
  .about-preview-image { min-height: 112vw; }
  .about-preview-copy { padding: 4.5rem var(--pad); }
  .services-preview-grid { grid-template-columns: 1fr; }
  .service-tile { min-height: 280px; border-inline-end: 0; }
  .service-tile h3 { margin-top: 2rem; font-size: 2.65rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { min-height: 220px; border-bottom: 1px solid rgba(255,255,255,.3); }
  .process-step:nth-child(even) { border-inline-end: 0; padding-inline-start: 1rem; }
  .process-step h3 { margin-top: 3.5rem; font-size: 2.35rem; }
  .recognition-rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .recognition-card { min-width: 82vw; scroll-snap-align: center; }
  .home-booking { min-height: 72vh; align-items: start; flex-direction: column; justify-content: flex-end; }
  .home-booking .button { width: 100%; }
  .home-booking--inline { min-height: auto; padding-block: 4.5rem; display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
  .home-booking-copy { position: static; }
  .booking-form--inline { padding: 1.2rem; }
  .date-quick-picks,
  .time-options { grid-template-columns: 1fr; }
  .bts-page-hero {
    min-height: max(680px, 92svh);
    padding-top: calc(var(--header-h) + 4.5rem);
    padding-bottom: 7.5rem;
    align-items: end;
  }
  .bts-page-hero-image { object-position: center; }
  .bts-page-hero-shade,
  [dir="rtl"] .bts-page-hero-shade {
    background: linear-gradient(to top, rgba(7,7,7,.98) 0%, rgba(7,7,7,.56) 57%, rgba(7,7,7,.48) 100%);
  }
  .bts-page-hero-copy { width: 100%; }
  .bts-page-hero-copy h1 { font-size: clamp(4rem, 20vw, 6.5rem); line-height: .92; }
  html[lang="en"] .bts-page-hero-copy h1 { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .bts-page-hero-copy > p:last-child { margin-top: 1.3rem; font-size: .95rem; line-height: 1.75; }
  .bts-scroll-link,
  [dir="ltr"] .bts-scroll-link { inset: auto auto 1.6rem var(--pad); }
  [dir="ltr"] .bts-scroll-link { inset-inline-start: var(--pad); }
  .bts-story { grid-template-columns: 1fr; gap: 3rem; }
  .bts-player { width: min(100%, 430px); }
  .bts-story-copy h2 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  html[lang="en"] .bts-story-copy h2 { font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .bts-closing { align-items: stretch; flex-direction: column; }
  .bts-closing h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .bts-closing .button { width: 100%; }
  .page-hero { min-height: 62vh; padding-top: calc(var(--header-h) + 5rem); grid-template-columns: 1fr; gap: 1.5rem; }
  .page-hero h1,
  .about-hero h1,
  .project-detail-title h1 { font-size: clamp(3.5rem, 17vw, 5.8rem); line-height: 1; }
  html[lang="en"] .page-hero h1,
  html[lang="en"] .about-hero h1,
  html[lang="en"] .project-detail-title h1 { font-size: clamp(3.1rem, 15vw, 5rem); line-height: .94; }
  .page-hero > p { font-size: .95rem; }
  .filters { top: 64px; padding-inline: var(--pad); }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-grid .project-card { aspect-ratio: 4 / 5; }
  .about-hero { min-height: 90svh; padding-top: calc(var(--header-h) + 4rem); }
  .about-hero p:last-child { font-size: .97rem; }
  .about-recognition a { grid-template-columns: 3.2rem 1fr auto; }
  .award { min-height: 150px; grid-template-columns: 3.5rem 1fr auto; gap: 1rem; }
  .award p { display: none; }
  .award h2 { font-size: 2.1rem; }
  .award-mark { min-width: 64px; padding-inline: .5rem; }
  .service-button { min-height: 108px; grid-template-columns: 2.5rem 1fr auto; gap: .7rem; }
  .service-button h2 { font-size: 2.3rem; }
  .service-button i { width: 42px; height: 42px; }
  .service-panel { grid-template-columns: 2.5rem 1fr; gap: .7rem; }
  .service-panel p { grid-column: 2; font-size: .86rem; }
  .service-panel ul { display: none; }
  .booking-hero { padding-top: calc(var(--header-h) + 4rem); background-attachment: scroll; }
  .booking-copy h1 { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .booking-form { padding: 1.2rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .submit { width: 100%; min-width: 0; }
  .case-intro { grid-template-columns: 1fr; gap: 1.2rem; }
  .case-intro h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .case-film-head > span { display: none; }
  .case-frames { grid-template-columns: 1fr; }
  .case-frame,
  .case-frame:nth-child(2) { min-height: 110vw; margin: 0; }
  .project-booking,
  .next-project { min-height: 52vh; align-items: stretch; flex-direction: column; justify-content: flex-end; }
  .project-booking .button { width: 100%; }
  .next-project > i { width: 52px; height: 52px; }
  .reel-modal { padding: .6rem; }
  .reel-window { width: 100%; }
  .footer-lead { grid-template-columns: auto 1fr; align-items: start; }
  .footer-lead p { font-size: 2.7rem; }
  .footer-lead > a { grid-column: 1 / -1; justify-self: start; }
  .footer-meta { padding-bottom: .5rem; flex-direction: column; }
  .toast { bottom: calc(5.4rem + env(safe-area-inset-bottom)); width: max-content; max-width: calc(100vw - 2rem); }
}

@media (max-width: 430px) {
  .hero-v27-actions { grid-template-columns: 1fr; }
  .hero-v27-actions .reel-trigger { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step:nth-child(even) { min-height: 190px; padding-inline: 0; border-inline-end: 0; }
  .process-step h3 { margin-top: 2.7rem; }
  .studio-journal-grid { column-count: 2; }
  .footer-lead { grid-template-columns: 1fr; }
}

@media (pointer: coarse) {
  .project-card:hover .project-cover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
