:root {
  --sand-50: #fbf8f2;
  --sand-100: #f4efe6;
  --sand-200: #e8dece;
  --sand-300: #d2c2ac;
  --wood: #8b5e3c;
  --gold: #ad8040;
  --green: #315c4f;
  --charcoal: #242725;
  --ink: #292b29;
  --muted: #66675f;
  --white: #fffdf9;
  --line: #d9d0c3;
  --shadow: 0 18px 48px rgb(45 37 26 / 10%);
  --shell: min(100% - 32px, 1240px);
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--sand-50);
  color: var(--ink);
  font-family: "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.drawer-open { overflow: hidden; }
main, section, header, footer, nav, aside { min-width: 0; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; background: var(--sand-100); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
h1, h2, h3, p, figure { margin-block-start: 0; }
h1, h2, h3 { line-height: 1.25; text-wrap: balance; }
p { text-wrap: pretty; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  inset-block-start: 8px;
  inset-inline-start: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 16px;
}
.skip-link:focus { transform: none; }

:focus-visible {
  outline: 3px solid #176bff;
  outline-offset: 3px;
}

.section-shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: 60px; }
.section-heading { max-width: 760px; margin-block-end: 28px; }
.section-heading h2 {
  margin-block-end: 12px;
  font-size: clamp(1.85rem, 7vw, 3.35rem);
  letter-spacing: -.025em;
}
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.02rem; }
.kicker {
  margin-block-end: 8px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 30;
  height: 66px;
  border-block-end: 1px solid var(--line);
  background: var(--white);
}
.header-inner {
  width: min(100% - 16px, 1320px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 4px;
}
.menu-button, .header-whatsapp {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}
.menu-button svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.header-whatsapp { color: var(--green); }
.header-whatsapp svg { width: 26px; fill: currentColor; }
.brand {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  font-size: .93rem;
  font-weight: 750;
}
.brand strong { color: var(--gold); font-size: 1.05rem; }
.desktop-nav, .desktop-cta { display: none; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgb(20 22 20 / 58%);
}
.drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-start: 0;
  z-index: 50;
  width: min(91vw, 410px);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(105%);
  transition: transform .22s ease;
  background: var(--white);
  box-shadow: var(--shadow);
}
[dir="rtl"] .drawer { transform: translateX(105%); }
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  position: sticky;
  inset-block-start: 0;
  z-index: 1;
  height: 70px;
  padding-inline: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-block-end: 1px solid var(--line);
  background: var(--white);
}
.drawer-head .brand { justify-content: flex-start; }
.drawer-head button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--sand-100);
}
.drawer-head svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.drawer nav { display: grid; padding: 14px 18px 24px; }
.drawer nav a { min-height: 48px; display: flex; align-items: center; border-block-end: 1px solid var(--line); }
.drawer nav p { margin: 22px 0 2px; color: var(--gold); font-weight: 800; }
.drawer-contact { padding: 0 18px 32px; }

.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-block: 24px 0; }
.actions-compact { display: grid; grid-template-columns: 1fr 1fr; }
.button {
  min-height: 50px;
  padding: 11px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
}
.button svg { width: 21px; height: 21px; }
.button-primary { background: var(--green); color: #fff; }
.button-primary svg { fill: currentColor; }
.button-secondary { border-color: var(--charcoal); background: transparent; }
.button-secondary svg { fill: currentColor; }
.button-dark { background: var(--charcoal); color: #fff; }

.hero {
  min-height: calc(100svh - 66px);
  padding-block: 26px 46px;
  display: grid;
  align-content: center;
  gap: 28px;
}
.hero-media figure { margin: 0; border: 1px solid var(--line); background: var(--sand-100); }
.hero-media img { width: 100%; }
.hero-media figcaption, .service-hero-media figcaption {
  margin: 0;
  padding: 10px 13px;
  border-block-start: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
}
.hero-copy h1 {
  max-width: 14ch;
  margin-block-end: 17px;
  font-size: clamp(2.25rem, 11.5vw, 5.15rem);
  letter-spacing: -.04em;
}
.hero-lead { max-width: 680px; margin-block-end: 0; color: var(--muted); font-size: 1.05rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 0; padding: 0; list-style: none; }
.hero-tags li { padding: 5px 10px; border: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid #3c3f3b;
  background: var(--charcoal);
  color: var(--white);
}
.quick-links a { min-height: 50px; padding: 10px; display: grid; place-items: center; border: 1px solid #fff1; font-size: .79rem; font-weight: 700; }

.service-list, .all-services { display: grid; gap: 26px; }
.service-tile { min-width: 0; border-block-start: 1px solid var(--line); }
.service-tile > a { display: grid; gap: 14px; padding-block-start: 14px; }
.service-tile-media { overflow: hidden; background: var(--sand-100); }
.service-tile-media img { width: 100%; }
.service-tile-copy p { margin-block-end: 4px; color: var(--muted); font-size: .8rem; }
.service-tile-copy h3 { margin-block-end: 13px; font-size: 1.45rem; }
.service-tile-copy > span:not(.sr-only) { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: .84rem; font-weight: 800; }
.service-tile-copy svg, .text-link svg, .story-copy a svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.section-link { margin-block-start: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; border-block-end: 1px solid currentColor; color: var(--green); font-weight: 800; }

.selected-work { border-block: 1px solid var(--line); background: var(--white); }
.showcase-grid { display: grid; gap: 24px; }
.media-card { min-width: 0; break-inside: avoid; }
.media-open {
  position: relative;
  width: 100%;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: var(--sand-100);
  text-align: inherit;
}
.media-open img { width: 100%; }
.media-open:hover img { filter: brightness(.96); }
.media-card-copy { padding-block-start: 12px; }
.media-card-copy .media-kind { margin-block-end: 2px; color: var(--gold); font-size: .72rem; font-weight: 800; }
.media-card-copy h3 { margin-block-end: 5px; font-size: 1.2rem; }
.media-card-copy > p:last-child { margin: 0; color: var(--muted); font-size: .88rem; }
.play-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 6px 22px rgb(0 0 0 / 18%);
}
.play-mark svg { width: 27px; fill: currentColor; }
.video-label {
  position: absolute;
  inset-block-end: 10px;
  inset-inline-start: 10px;
  padding: 3px 8px;
  border-radius: 2px;
  background: rgb(25 27 25 / 82%);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
}
.video-reel {
  margin-inline: -16px;
  padding-inline: 16px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 83%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}
.video-reel .media-card { scroll-snap-align: start; }

.process-section { background: var(--sand-100); }
.process-gallery {
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 16px;
  overflow-x: auto;
  list-style: none;
  scroll-snap-type: inline mandatory;
}
.process-gallery li { scroll-snap-align: start; }
.process-gallery li > span { display: block; margin-block-end: 8px; color: var(--gold); font-weight: 900; }
.process-gallery h3 { margin: 11px 0 4px; font-size: 1.15rem; }
.process-gallery p { margin: 0; color: var(--muted); font-size: .86rem; }

.stories { display: grid; gap: 70px; }
.story { display: grid; gap: 22px; }
.story-copy { align-self: center; }
.story-copy h3 { margin-block-end: 12px; font-size: clamp(1.7rem, 6vw, 2.8rem); }
.story-copy > p:not(.kicker) { color: var(--muted); }
.story-copy a { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 800; }
.story-media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; align-items: start; }
.story-frame:first-child { grid-column: 1 / -1; }
.story-frame .media-open { height: 100%; }

.why-section { background: var(--charcoal); color: var(--white); }
.why-section .section-heading > p:last-child { color: #c8c5bd; }
.why-grid { display: grid; gap: 18px; }
.why-points { display: grid; }
.why-points article { padding-block: 22px; border-block-start: 1px solid #fff3; }
.why-points span { color: #d8b06d; font-size: .78rem; font-weight: 900; }
.why-points h3 { margin: 4px 0 7px; }
.why-points p { margin: 0; color: #c8c5bd; font-size: .9rem; }

.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 12px; padding-block: 18px; border-block-start: 1px solid var(--line); }
.steps > li > span { color: var(--gold); font-size: 1.25rem; font-weight: 900; }
.steps h3 { margin-block-end: 4px; font-size: 1.2rem; }
.steps p { margin: 0; color: var(--muted); font-size: .9rem; }

.faq-section { background: var(--white); }
.faq-list { max-width: 880px; }
.faq-list details { border-block-start: 1px solid var(--line); }
.faq-list details:last-child { border-block-end: 1px solid var(--line); }
.faq-list summary { min-height: 58px; padding-block: 15px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 800; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; flex: 0 0 auto; color: var(--gold); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { padding-block-end: 18px; margin: 0; color: var(--muted); }

.final-cta { padding-block: 64px; border-block-start: 1px solid #b5a68f; background: var(--sand-200); }
.final-cta h2 { max-width: 16ch; margin-block-end: 12px; font-size: clamp(2rem, 8vw, 3.7rem); }
.final-cta p:not(.kicker) { max-width: 650px; color: #5c584f; }

.page-intro { padding-block: 34px 58px; border-block-end: 1px solid var(--line); background: var(--sand-100); }
.page-intro h1 { max-width: 18ch; margin-block-end: 16px; font-size: clamp(2.3rem, 10vw, 5rem); }
.page-intro > .section-shell > p:last-child { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.breadcrumbs { margin-block-end: 36px; display: flex; flex-wrap: wrap; gap: 5px 9px; color: var(--muted); font-size: .76rem; }
.breadcrumbs a { border-block-end: 1px solid transparent; }
.breadcrumbs a:hover { border-color: currentColor; }
.breadcrumbs i { font-style: normal; opacity: .5; }

.service-hero { padding-block: 24px 54px; border-block-end: 1px solid var(--line); background: var(--sand-100); }
.service-hero-grid { display: grid; gap: 28px; }
.service-hero-copy h1 { max-width: 17ch; margin-block-end: 16px; font-size: clamp(2.25rem, 10vw, 4.8rem); }
.service-hero-copy > p:not(.kicker) { max-width: 650px; color: var(--muted); font-size: 1.03rem; }
.service-hero-media { margin: 0; border: 1px solid var(--line); background: var(--white); }
.service-hero-media .media-open, .service-hero-media > img { width: 100%; }
.service-scope { padding-block: 24px; background: var(--charcoal); color: var(--white); }
.service-scope .section-shell { display: grid; gap: 13px; }
.service-scope h2 { margin: 0; font-size: 1rem; color: #d8b06d; }
.service-scope ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.service-scope li { padding: 5px 9px; border: 1px solid #fff3; font-size: .78rem; }
.service-work { background: var(--white); }
.service-media-grid { display: grid; gap: 26px; }
.service-ideas { background: var(--sand-100); }
.ideas-grid { display: grid; gap: 24px; }
.ideas-grid figure { margin: 0; }
.ideas-grid figcaption { padding-block-start: 12px; }
.ideas-grid h3 { margin-block-end: 4px; }
.ideas-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.service-steps ol { margin: 0; padding: 0; list-style: none; counter-reset: service-step; }
.service-steps li { display: grid; grid-template-columns: 50px minmax(0, 1fr); align-items: start; gap: 12px; padding-block: 17px; border-block-start: 1px solid var(--line); }
.service-steps li span { color: var(--gold); font-weight: 900; }
.service-steps li p { margin: 0; }

.gallery-controls-wrap { padding-block: 24px; border-block-end: 1px solid var(--line); background: var(--white); }
.gallery-controls-wrap h2 { margin-block-end: 13px; font-size: 1.1rem; }
.gallery-controls { display: grid; gap: 12px; }
.gallery-controls label { display: grid; gap: 5px; color: var(--muted); font-size: .76rem; font-weight: 700; }
.gallery-controls select, .gallery-controls button {
  width: 100%;
  min-height: 48px;
  padding-inline: 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--sand-50);
  color: var(--ink);
}
.gallery-controls button { align-self: end; font-weight: 800; }
.gallery-result { margin: 13px 0 0; color: var(--muted); font-size: .84rem; }
.projects-grid { padding-block: 36px 24px; columns: 1; column-gap: 20px; }
.project-card { margin: 0 0 28px; display: inline-block; width: 100%; break-inside: avoid; }
.project-card-copy { padding-block-start: 11px; }
.project-card-copy > div { display: flex; flex-wrap: wrap; gap: 5px; }
.project-card-copy > div span { padding: 2px 7px; border: 1px solid var(--line); color: var(--muted); font-size: .65rem; }
.project-card-copy h2 { margin: 9px 0 4px; font-size: 1.12rem; }
.project-card-copy p { margin: 0; color: var(--muted); font-size: .84rem; }
.load-more-wrap { padding: 8px 16px 60px; display: flex; justify-content: center; }

.about-hero-grid { display: grid; gap: 28px; }
.about-hero-grid > div > p:not(.kicker) { max-width: 680px; color: var(--muted); }
.about-hero-grid figure { margin: 0; }
.about-hero-grid figcaption { padding-block-start: 9px; color: var(--muted); font-size: .8rem; }
.about-values > div:last-child { display: grid; }
.about-values article { padding-block: 22px; border-block-start: 1px solid var(--line); }
.about-values article > span { color: var(--gold); font-weight: 900; }
.about-values h2 { margin: 5px 0; font-size: 1.25rem; }
.about-values article p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; gap: 38px; }
.contact-methods { display: grid; align-content: start; }
.contact-methods > * { min-height: 96px; padding-block: 18px; display: grid; grid-template-columns: 48px minmax(0, 1fr); align-items: center; gap: 13px; border-block-start: 1px solid var(--line); }
.contact-methods > div { grid-template-columns: 1fr; }
.contact-methods > *:last-child { border-block-end: 1px solid var(--line); }
.contact-methods svg { width: 34px; fill: var(--green); }
.contact-methods span { display: grid; }
.contact-methods small { color: var(--muted); }
.contact-methods p { margin: 3px 0 0; color: var(--muted); font-size: .83rem; }
.contact-form { padding: 22px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.contact-form > p { color: var(--muted); font-size: .86rem; }
.contact-form label { margin-block: 16px; display: grid; gap: 6px; font-weight: 750; }
.contact-form label > span { color: var(--muted); font-size: .73rem; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 48px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 2px; background: var(--sand-50); color: var(--ink); }
.contact-form textarea { resize: vertical; }
.contact-form [aria-invalid="true"] { border-color: #a3332d; }
.field-error { min-height: 1.2em; color: #a3332d; font-size: .73rem; }
.form-status { min-height: 1.5em; margin: 11px 0 0; color: var(--green) !important; }

.not-found { min-height: 62vh; padding-block: 90px; }
.not-found h1 { font-size: clamp(2.7rem, 11vw, 5rem); }

.media-dialog {
  width: min(100% - 16px, 1120px);
  max-height: calc(100dvh - 16px);
  padding: 0;
  overflow: hidden;
  border: 1px solid #686961;
  border-radius: 4px;
  background: #171918;
  color: #fff;
}
.media-dialog::backdrop { background: rgb(0 0 0 / 82%); }
.dialog-top { min-height: 56px; padding-inline: 16px 8px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-block-end: 1px solid #fff2; }
.dialog-top p { margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dialog-top button { width: 46px; height: 46px; display: grid; place-items: center; border: 0; background: transparent; color: #fff; }
.dialog-top svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.dialog-stage { min-height: 230px; max-height: calc(100dvh - 74px); display: grid; place-items: center; overflow: auto; }
.dialog-stage img, .dialog-stage video { width: auto; max-width: 100%; max-height: calc(100dvh - 92px); object-fit: contain; background: #171918; }
.dialog-nav { position: absolute; inset-block-start: 50%; width: 48px; height: 54px; display: grid; place-items: center; transform: translateY(-50%); border: 0; background: rgb(0 0 0 / 58%); color: #fff; }
.dialog-nav svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.dialog-prev { inset-inline-start: 6px; }
.dialog-next { inset-inline-end: 6px; }
.dialog-next svg { transform: rotate(180deg); }

.site-footer { padding: 58px 0 92px; border-block-start: 1px solid #393c38; background: var(--charcoal); color: #f4f0e8; }
.footer-grid { width: var(--shell); margin-inline: auto; display: grid; gap: 34px; }
.footer-grid > div:first-child p { max-width: 410px; color: #bdbab2; }
.footer-brand { display: inline-flex; align-items: baseline; gap: 8px; margin-block-end: 12px; font-size: 1.1rem; font-weight: 800; }
.footer-brand strong { color: #d8b06d; }
.footer-grid nav, .footer-grid > div:last-child { display: grid; align-content: start; gap: 6px; }
.footer-grid h2 { margin-block-end: 7px; color: #d8b06d; font-size: .86rem; }
.footer-grid a { width: fit-content; color: #ece8df; font-size: .86rem; }
.footer-grid > div:last-child p { color: #bdbab2; font-size: .82rem; }
.footer-phone { font-size: 1rem !important; font-weight: 800; }
.footer-bottom { width: var(--shell); margin: 34px auto 0; padding-block-start: 18px; display: flex; justify-content: space-between; gap: 16px; border-block-start: 1px solid #fff2; color: #9d9b95; font-size: .74rem; }
.desktop-floating { display: none; }
.mobile-contact-bar {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 28;
  height: 66px;
  padding: 7px max(10px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8px;
  border-block-start: 1px solid var(--line);
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity .18s ease, transform .18s ease;
}
.mobile-contact-bar.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-contact-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--charcoal); border-radius: 3px; font-size: .85rem; font-weight: 800; }
.mobile-contact-bar a:last-child { border-color: var(--green); background: var(--green); color: #fff; }
.mobile-contact-bar svg { width: 21px; height: 21px; fill: currentColor; }

@media (min-width: 700px) {
  :root { --shell: min(100% - 52px, 1240px); }
  .section { padding-block: 78px; }
  .hero { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; gap: 44px; }
  .hero-media { order: 1; }
  .hero-copy { order: 2; }
  .hero-copy h1 { font-size: clamp(3rem, 6.2vw, 5.15rem); }
  .quick-links { grid-template-columns: repeat(4, 1fr); }
  .service-list, .all-services { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 46px 28px; }
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 24px; align-items: start; }
  .showcase-wide { grid-column: 1 / -1; }
  .video-reel { margin: 0; padding: 0; grid-auto-flow: row; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .process-gallery { grid-auto-flow: row; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .story { grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); gap: 42px; }
  .story-reverse .story-copy { order: 2; }
  .story-reverse .story-media { order: 1; }
  .why-points { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; }
  .steps li { grid-template-columns: 70px minmax(0, 1fr); }
  .service-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: 46px; }
  .service-scope .section-shell { grid-template-columns: 180px minmax(0, 1fr); align-items: center; }
  .service-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 24px; align-items: start; }
  .ideas-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-controls { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .projects-grid { columns: 2; }
  .about-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; }
  .about-values > div:last-child { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .contact-grid { grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); gap: 60px; }
  .footer-grid { grid-template-columns: 1.3fr .7fr 1fr .8fr; }
}

@media (min-width: 1024px) {
  body { padding-block-end: 0; }
  .site-header { height: 74px; }
  .header-inner { grid-template-columns: 230px minmax(0, 1fr) 150px; gap: 24px; }
  .menu-button, .header-whatsapp { display: none; }
  .brand { justify-content: flex-start; font-size: 1.02rem; }
  .desktop-nav { display: flex; align-items: center; justify-content: center; gap: 24px; font-size: .85rem; font-weight: 700; }
  .desktop-nav > a, .desktop-nav summary { min-height: 44px; display: flex; align-items: center; }
  .services-popover { position: relative; }
  .services-popover summary { list-style: none; cursor: pointer; }
  .services-popover summary::-webkit-details-marker { display: none; }
  .services-popover summary::after { content: '⌄'; margin-inline-start: 5px; color: var(--gold); }
  .services-popover > div { position: absolute; inset-block-start: calc(100% + 6px); inset-inline-start: 50%; width: 340px; padding: 13px 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; transform: translateX(50%); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
  .services-popover:not([open]) > div { display: none; }
  .services-popover > div a { padding-block: 8px; border-block-end: 1px solid var(--line); font-size: .77rem; }
  .desktop-cta { min-height: 44px; display: grid; place-items: center; border: 1px solid var(--green); color: var(--green); font-size: .8rem; font-weight: 800; }
  .hero { min-height: calc(100svh - 74px); grid-template-columns: minmax(0, 1.18fr) minmax(410px, .82fr); padding-block: 46px 62px; }
  .hero-copy h1 { font-size: clamp(3.6rem, 5vw, 5.15rem); }
  .service-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .all-services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .showcase-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .showcase-grid .media-card { grid-column: span 4; }
  .showcase-grid .media-card:nth-child(2), .showcase-grid .media-card:nth-child(5) { grid-column: span 5; }
  .showcase-grid .media-card:nth-child(3), .showcase-grid .media-card:nth-child(4) { grid-column: span 7; }
  .showcase-grid .showcase-wide { grid-column: span 7; }
  .video-reel { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .process-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px 24px; }
  .story { grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr); gap: 70px; }
  .why-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 80px; }
  .service-media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .projects-grid { columns: 3; column-gap: 26px; }
  .mobile-contact-bar { display: none; }
  .desktop-floating { position: fixed; inset-inline-start: 22px; inset-block-end: 22px; z-index: 27; display: grid; gap: 8px; }
  .desktop-floating a { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--charcoal); box-shadow: 0 7px 24px rgb(0 0 0 / 18%); }
  .desktop-floating a:last-child { background: var(--green); color: #fff; }
  .desktop-floating svg { width: 24px; fill: currentColor; }
  .site-footer { padding-block-end: 42px; }
}

@media (max-width: 1023px) { body { padding-block-end: 66px; } }

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

@media print {
  .site-header, .drawer, .drawer-backdrop, .desktop-floating, .mobile-contact-bar, .actions, .media-dialog { display: none !important; }
  body { padding: 0; background: #fff; }
  a { text-decoration: underline; }
}
