@font-face {
  font-family: "LUX Display";
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "LUX Display";
  src: url("../fonts/cormorant-garamond-latin-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "LUX Sans";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "LUX Arabic";
  src: url("../fonts/noto-naskh-arabic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --paper: #f4f2ec;
  --paper-deep: #ebe8de;
  --surface: #faf9f5;
  --white: #fffefb;
  --ink: #151612;
  --ink-soft: #35372f;
  --muted: #6f7169;
  --olive: #30382c;
  --olive-soft: #59604f;
  --limestone: #d7d3c8;
  --line: #c9c5ba;
  --sand: #b6aa98;
  --bronze: #937857;
  --error: #813c2e;
  --success: #3f6046;
  --font-display: "LUX Display", Georgia, serif;
  --font-sans: "LUX Sans", Arial, sans-serif;
  --font-arabic: "LUX Arabic", Tahoma, sans-serif;
  --container: min(100% - 80px, 1500px);
  --section-space: clamp(76px, 7vw, 116px);
  --ease: cubic-bezier(.22, .8, .25, 1);
  --shadow-soft: 0 30px 80px rgba(29, 28, 23, .10);
}

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

main *, .site-header *, .mobile-panel *, .site-footer * { min-width: 0; }

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

html, body {
  width: 100%;
  max-width: 100%;
}

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: var(--font-arabic);
  font-size: 17px;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--olive); color: var(--paper); }

img, picture, video { display: block; max-width: 100%; }
img { object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

h1, h2, h3, h4, p, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3, h4 { font-weight: 500; }

html:not([dir="rtl"]) .display,
html:not([dir="rtl"]) h1,
html:not([dir="rtl"]) h2,
html:not([dir="rtl"]) .card-title,
html:not([dir="rtl"]) .quote-mark {
  font-family: var(--font-display);
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .display,
html[dir="rtl"] .card-title {
  font-family: var(--font-arabic);
  letter-spacing: 0 !important;
}

.skip-link {
  position: fixed;
  inset-inline-start: 18px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 920px); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section-sm { padding-block: clamp(52px, 5vw, 82px); }
.surface { background: var(--surface); }
.ink-surface { background: var(--ink); color: var(--paper); }
.olive-surface { background: var(--olive); color: var(--paper); }
.rule { height: 1px; background: var(--line); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .20em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
html[dir="rtl"] .eyebrow { font-size: 13px; letter-spacing: 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
  align-items: end;
  gap: 72px;
  margin-bottom: clamp(42px, 6vw, 82px);
}
.section-heading h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: .98;
  letter-spacing: -.035em;
}
.section-heading p { margin: 0 0 4px; color: var(--muted); font-size: 16px; }
.section-heading.compact h2 { font-size: clamp(42px, 4.4vw, 68px); }
.section-heading.center { display: block; max-width: 920px; margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center p { max-width: 620px; margin: 24px auto 0; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 650;
}
.text-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .35s var(--ease);
}
html[dir="rtl"] .text-link::after { transform-origin: right; }
.text-link:hover::after { transform: scaleX(.35); }
.arrow { display: inline-block; transition: transform .25s ease; }
.text-link:hover .arrow { transform: translateX(5px); }
html[dir="rtl"] .text-link:hover .arrow { transform: translateX(-5px); }

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.01em;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--olive); border-color: var(--olive); color: var(--white); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-light { border-color: rgba(255,255,255,.65); color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--ink); }
.btn-quiet { border-color: var(--line); }
.btn-quiet:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 92px;
  border-bottom: 1px solid rgba(130, 128, 118, .35);
  background: rgba(244, 242, 236, .93);
  backdrop-filter: blur(18px);
  transition: height .3s var(--ease), background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { height: 76px; background: rgba(250, 249, 245, .97); box-shadow: 0 8px 28px rgba(28,28,22,.06); }
.header-inner {
  width: min(calc(100% - 64px), 1640px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px 1fr 250px;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}
.brand small {
  color: var(--bronze);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
html[dir="rtl"] .brand { font-family: var(--font-display); direction: ltr; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.1vw, 38px); }
.nav-link {
  position: relative;
  padding-block: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 550;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 3px;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
html[dir="rtl"] .nav-link::after { transform-origin: right; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.language-toggle {
  display: flex;
  gap: 7px;
  align-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
}
.language-toggle .off { color: var(--muted); font-weight: 500; }
.header-consult { min-height: 50px; padding-inline: 21px; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span { width: 20px; height: 1px; background: var(--ink); transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 190;
  padding: 130px 30px 40px;
  display: grid;
  align-content: start;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: .35s var(--ease);
}
.mobile-panel.open { opacity: 1; visibility: visible; transform: none; }
.mobile-panel nav { display: grid; }
.mobile-panel a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(28px, 8vw, 42px);
}
.mobile-panel a::after { content: "↗"; color: var(--bronze); font-family: var(--font-sans); font-size: 18px; }
.mobile-panel .mobile-meta { display: grid; gap: 8px; margin-top: 34px; color: var(--muted); font-size: 13px; }

.home-hero {
  min-height: clamp(620px, calc(100svh - 92px), 760px);
  display: grid;
  grid-template-columns: 42% 58%;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.hero-copy {
  min-height: 0;
  padding: clamp(58px, 7vh, 88px) clamp(36px, 4vw, 72px) 30px max(40px, calc((100vw - 1640px) / 2 + 32px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html[dir="rtl"] .hero-copy { padding-inline: clamp(36px, 4vw, 72px) max(40px, calc((100vw - 1640px) / 2 + 32px)); }
.hero-copy .eyebrow { margin-bottom: 30px; }
.hero-copy h1 {
  margin-bottom: 26px;
  max-width: 700px;
  font-size: clamp(62px, 4.9vw, 82px);
  line-height: .94;
  letter-spacing: -.045em;
}
html[dir="rtl"] .hero-copy h1 { font-size: clamp(54px, 5.5vw, 86px); line-height: 1.12; }
.hero-copy > p { max-width: 540px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(16px, 1.2vw, 19px); }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-services {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.hero-services a {
  position: relative;
  padding: 20px 14px 0 0;
  font-size: 13px;
}
.hero-services a:not(:last-child)::after { content: ""; position: absolute; inset-inline-end: 14px; top: 19px; width: 1px; height: 24px; background: var(--line); }
.hero-media {
  height: clamp(620px, calc(100svh - 92px), 760px);
  min-height: 0;
  padding: 18px 18px 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(150px, 1fr);
  gap: 10px;
  overflow: hidden;
}
html[dir="rtl"] .hero-media { padding: 18px 0 18px 18px; }
.hero-media-main, .hero-media-detail { position: relative; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; transition: transform 1.1s var(--ease); }
.hero-media:hover img { transform: scale(1.018); }
.hero-media-main::after { content: "01"; position: absolute; inset-inline-start: 18px; bottom: 12px; color: var(--white); font-size: 13px; }
.hero-media-detail img { object-position: 74% center; }

.trust-strip { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 118px; padding: 24px 28px; display: flex; align-items: center; gap: 18px; }
.trust-item:not(:last-child) { border-inline-end: 1px solid var(--line); }
.trust-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--olive); }
.trust-item strong { display: block; margin-bottom: 2px; font-size: 13px; }
.trust-item span { color: var(--muted); font-size: 12px; }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card { position: relative; height: clamp(440px, 39vw, 560px); min-height: 0; overflow: hidden; background: var(--limestone); color: var(--white); }
.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 7; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 5; }
.service-card img { width: 100%; height: 100%; transition: transform .9s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(13,14,11,.76)); }
.service-card:hover img { transform: scale(1.025); }
.service-card-content { position: absolute; z-index: 2; inset-inline: 32px; bottom: 30px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.service-card .number { margin-bottom: 8px; color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .15em; }
.service-card h3 { margin: 0; font-size: clamp(42px, 4vw, 64px); line-height: 1; }
.service-card p { max-width: 270px; margin: 10px 0 0; color: rgba(255,255,255,.78); font-size: 13px; }
.card-arrow { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); font-size: 18px; transition: .25s ease; }
.service-card:hover .card-arrow { background: var(--white); color: var(--ink); transform: translate(2px,-2px); }

.manifesto { display: grid; grid-template-columns: 3fr 7fr; gap: 8vw; align-items: start; }
.manifesto-label { padding-top: 12px; color: var(--muted); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.manifesto blockquote { margin: 0; font-size: clamp(44px, 5.4vw, 88px); line-height: .98; letter-spacing: -.035em; }
.manifesto blockquote em { color: var(--olive-soft); font-weight: 400; }

.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.project-card { grid-column: span 4; }
.project-card.featured { grid-column: span 8; }
.project-image { position: relative; aspect-ratio: 5 / 6; overflow: hidden; background: var(--limestone); }
.project-card.featured .project-image { aspect-ratio: 16 / 9; }
.project-image img { width: 100%; height: 100%; transition: transform .8s var(--ease); }
.project-card:hover img { transform: scale(1.02); }
.project-index { position: absolute; top: 14px; inset-inline-end: 14px; min-width: 38px; height: 38px; display: grid; place-items: center; background: rgba(244,242,236,.9); font-size: 11px; }
.project-meta { padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.project-meta h3 { margin: 0 0 4px; font-family: var(--font-sans); font-size: 16px; font-weight: 650; }
.project-meta p { margin: 0; color: var(--muted); font-size: 12px; }
.project-meta span { color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.24); }
.process-step { position: relative; min-height: 270px; padding: 28px; border-inline-end: 1px solid rgba(255,255,255,.24); counter-increment: process; }
.process-step:last-child { border-inline-end: 0; }
.process-step::before { content: "0" counter(process); display: block; margin-bottom: 56px; color: var(--sand); font-size: 12px; letter-spacing: .15em; }
.process-step h3 { margin-bottom: 14px; font-family: var(--font-sans); font-size: 16px; font-weight: 650; }
.process-step p { margin: 0; color: rgba(244,242,236,.64); font-size: 13px; }

.material-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.material-card { min-height: 0; display: flex; flex-direction: column; background: var(--surface); }
.material-card img { width: 100%; height: clamp(230px, 22vw, 280px); }
.material-card-content { padding: 25px; }
.material-card h3 { margin: 0 0 8px; font-size: 28px; }
.material-card p { margin: 0; color: var(--muted); font-size: 13px; }

.testimonial-layout { display: grid; grid-template-columns: .8fr 1.45fr; gap: 10vw; align-items: center; }
.testimonial-image { height: clamp(430px, 42vw, 540px); min-height: 0; overflow: hidden; background: var(--limestone); }
.testimonial-image img { width: 100%; height: 100%; min-height: 0; }
.quote-mark { color: var(--bronze); font-size: 90px; line-height: .7; }
.testimonial-copy blockquote { margin: 22px 0 30px; font-size: clamp(35px, 4vw, 58px); line-height: 1.08; }
.testimonial-author { padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }

.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { border-top: 1px solid var(--line); padding-top: 14px; }
.article-card-image { aspect-ratio: 4 / 3; margin-bottom: 20px; overflow: hidden; background: var(--limestone); }
.article-card-image img { width: 100%; height: 100%; transition: transform .65s var(--ease); }
.article-card:hover img { transform: scale(1.025); }
.article-card-meta { display: flex; justify-content: space-between; margin-bottom: 14px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.article-card h3 { margin-bottom: 14px; font-size: clamp(28px, 2.7vw, 40px); line-height: 1.05; }
.article-card p { color: var(--muted); font-size: 13px; }

.cta-band { padding-block: clamp(70px, 7vw, 110px); overflow: hidden; }
.cta-band-inner { display: grid; grid-template-columns: 1.2fr .55fr; gap: 8vw; align-items: end; }
.cta-band h2 { margin: 0; font-size: clamp(54px, 7vw, 112px); line-height: .88; letter-spacing: -.045em; }
.cta-band p { color: rgba(244,242,236,.7); }
.cta-band .btn { margin-top: 22px; }

.site-footer { background: #11120f; color: var(--paper); }
.footer-main { padding-block: 66px 50px; display: grid; grid-template-columns: 1.2fr 2fr; gap: 9vw; }
.footer-brand .brand { color: var(--paper); font-size: 48px; }
.footer-brand p { max-width: 350px; margin: 24px 0 0; color: rgba(244,242,236,.58); font-size: 13px; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-column h3 { margin-bottom: 20px; color: var(--sand); font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a, .footer-column span { display: block; width: max-content; max-width: 100%; margin: 9px 0; color: rgba(244,242,236,.72); font-size: 13px; }
.footer-column a, .footer-column span, .mobile-meta, .contact-row strong { overflow-wrap: anywhere; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { min-height: 78px; border-top: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(244,242,236,.45); font-size: 11px; }
.socials { display: flex; gap: 18px; }

.page-hero { padding: clamp(64px, 7vw, 104px) 0 clamp(50px, 6vw, 82px); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.25fr .55fr; gap: 8vw; align-items: end; }
.page-hero h1 { margin: 0; font-size: clamp(70px, 9vw, 132px); line-height: .82; letter-spacing: -.05em; }
html[dir="rtl"] .page-hero h1 { font-size: clamp(58px, 8vw, 116px); line-height: 1; }
.page-hero-copy { padding-bottom: 8px; }
.page-hero-copy p { color: var(--muted); }
.page-hero-meta { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.service-intro-media { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.service-intro-media .media-large,
.service-intro-media .media-small { height: clamp(460px, 45vw, 600px); min-height: 0; overflow: hidden; }
.service-intro-media img { width: 100%; height: 100%; }
.service-statement { padding-block: clamp(62px, 7vw, 100px); display: grid; grid-template-columns: .55fr 1.45fr; gap: 8vw; }
.service-statement h2 { margin: 0; font-size: clamp(46px, 6vw, 88px); line-height: .96; }
.service-statement-copy { max-width: 640px; }
.service-statement-copy p { color: var(--muted); font-size: 16px; }

.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.collection-card { min-width: 0; background: var(--paper); }
.collection-card img {
  width: 100%;
  height: clamp(300px, 28vw, 400px);
  object-position: center 46%;
}
.collection-card-body { padding: 18px 2px 0; }
.collection-card .tag { color: var(--bronze); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.collection-card h3 { margin: 9px 0 6px; font-size: 32px; }
.collection-card p { color: var(--muted); font-size: 12px; }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 0; }
.split-feature-media { height: clamp(500px, 48vw, 620px); overflow: hidden; }
.split-feature-media img { width: 100%; height: 100%; min-height: 0; }
.split-feature-copy { padding: clamp(55px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.split-feature-copy h2 { margin-bottom: 24px; font-size: clamp(48px, 5vw, 78px); line-height: .98; }
.split-feature-copy p { color: rgba(244,242,236,.68); }
.feature-list { margin: 32px 0 0; padding: 0; list-style: none; }
.feature-list li { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.2); display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
.filter-button { min-height: 42px; padding: 8px 17px; border: 1px solid var(--line); background: transparent; cursor: pointer; color: var(--muted); font-size: 12px; transition: .2s ease; }
.filter-button:hover, .filter-button.active { background: var(--olive); border-color: var(--olive); color: var(--white); }
.filter-item[hidden] { display: none !important; }

.portfolio-masonry { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.portfolio-item { grid-column: span 6; margin-bottom: 34px; }
.portfolio-item.wide { grid-column: span 8; }
.portfolio-item.tall { grid-column: span 4; }
.portfolio-item img { width: 100%; aspect-ratio: 16 / 10; }
.portfolio-item.tall img { aspect-ratio: 5 / 6; }
.portfolio-item .project-meta { padding-top: 14px; }

.project-detail-hero { position: relative; height: clamp(520px, 72vh, 760px); color: var(--white); }
.project-detail-hero img { width: 100%; height: 100%; }
.project-detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,13,10,.06), rgba(12,13,10,.72)); }
.project-detail-title { position: absolute; z-index: 2; inset-inline: max(40px, calc((100vw - 1500px) / 2)); bottom: 58px; max-width: 980px; }
.project-detail-title h1 { margin: 0 0 16px; font-size: clamp(58px, 8vw, 126px); line-height: .82; }
.project-detail-title p { margin: 0; color: rgba(255,255,255,.75); }
.project-facts { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.project-fact { min-height: 130px; padding: 30px; border-inline-end: 1px solid var(--line); }
.project-fact:last-child { border: 0; }
.project-fact span { display: block; color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.project-fact strong { display: block; margin-top: 9px; font-size: 14px; }
.project-story { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; }
.project-story h2 { margin: 0; font-size: clamp(46px, 6vw, 92px); line-height: .92; }
.project-story-copy { font-size: 17px; }
.project-story-copy p { color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gallery-grid img { width: 100%; height: clamp(340px, 32vw, 460px); min-height: 0; }
.gallery-grid img:first-child { grid-column: span 2; height: clamp(440px, 46vw, 600px); min-height: 0; }

.journal-feature { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: stretch; margin-bottom: 62px; }
.journal-feature-image { height: clamp(430px, 44vw, 540px); min-height: 0; overflow: hidden; }
.journal-feature-image img { width: 100%; height: 100%; }
.journal-feature-copy { padding: 52px; background: var(--olive); color: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.journal-feature-copy h2 { margin: 18px 0 24px; font-size: clamp(46px, 5vw, 78px); line-height: .95; }
.journal-feature-copy p { color: rgba(244,242,236,.65); }

.article-hero { padding-block: clamp(64px, 7vw, 110px) clamp(48px, 5vw, 76px); }
.article-hero-inner { width: min(calc(100% - 40px), 1080px); margin: auto; text-align: center; }
.article-hero h1 { margin: 20px auto 26px; font-size: clamp(58px, 8vw, 112px); line-height: .88; letter-spacing: -.04em; }
.article-hero p { max-width: 720px; margin-inline: auto; color: var(--muted); font-size: 17px; }
.article-cover { width: var(--container); height: clamp(420px, 58vw, 680px); margin-inline: auto; overflow: hidden; }
.article-cover img { width: 100%; height: 100%; }
.article-body { width: min(calc(100% - 40px), 760px); margin-inline: auto; padding-block: clamp(60px, 6vw, 88px); }
.article-body .lead { color: var(--ink); font-size: 24px; line-height: 1.55; }
.article-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.95; }
.article-body h2 { margin: 64px 0 22px; font-size: 46px; line-height: 1; }
.article-body blockquote { margin: 60px -90px; padding: 45px 60px; border-block: 1px solid var(--line); color: var(--olive); font-size: 36px; line-height: 1.2; text-align: center; }

.about-hero { min-height: 640px; display: grid; grid-template-columns: 1fr 1fr; }
.about-hero-copy { padding: clamp(70px, 8vw, 130px) max(40px, calc((100vw - 1500px) / 2)); padding-inline-end: 7vw; display: flex; flex-direction: column; justify-content: center; }
.about-hero h1 { margin: 0 0 28px; font-size: clamp(72px, 9vw, 140px); line-height: .8; }
.about-hero-copy p { max-width: 550px; color: var(--muted); }
.about-hero-media { min-height: 640px; overflow: hidden; }
.about-hero-media img { width: 100%; height: 100%; min-height: 0; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.metric { min-height: 160px; padding: 30px; border-inline-end: 1px solid var(--line); }
.metric:last-child { border: 0; }
.metric strong { display: block; font-family: var(--font-display); font-size: 62px; font-weight: 400; line-height: 1; }
.metric span { display: block; margin-top: 16px; color: var(--muted); font-size: 12px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.value-card { padding: 30px; min-height: 270px; border-inline-end: 1px solid var(--line); }
.value-card:last-child { border: 0; }
.value-card .number { margin-bottom: 56px; color: var(--bronze); font-size: 11px; }
.value-card h3 { font-size: 34px; }
.value-card p { color: var(--muted); font-size: 13px; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.contact-list { border-top: 1px solid var(--line); }
.contact-row { padding: 23px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 110px 1fr; gap: 24px; }
.contact-row span { color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.contact-row strong { font-size: 14px; font-weight: 550; }
.contact-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.contact-links a { border-bottom: 1px solid var(--line); }
.map-card { position: relative; min-height: 520px; background: #d9d6ca; overflow: hidden; }
.map-card img { width: 100%; height: 520px; filter: grayscale(1) contrast(.88) sepia(.12); }
.map-grid-lines { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(75,77,69,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(75,77,69,.18) 1px,transparent 1px); background-size: 52px 52px; transform: rotate(-8deg) scale(1.15); }
.map-road { position: absolute; height: 16px; background: rgba(250,249,245,.72); border-block: 1px solid rgba(80,82,74,.2); transform-origin: center; }
.map-road::after { content: ""; position: absolute; inset-inline: 0; top: 50%; border-top: 1px dashed rgba(80,82,74,.32); }
.road-one { width: 125%; left: -12%; top: 38%; transform: rotate(-22deg); }
.road-two { width: 92%; left: 14%; top: 68%; transform: rotate(31deg); }
.map-label { position: absolute; z-index: 2; padding: 5px 8px; background: rgba(244,242,236,.7); color: var(--muted); font-size: 9px; letter-spacing: .14em; }
.map-label-one { left: 24%; top: 58%; }
.map-label-two { right: 13%; top: 24%; }
.map-pin { position: absolute; left: 54%; top: 47%; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: var(--olive); color: var(--white); box-shadow: 0 0 0 15px rgba(48,56,44,.16); }
.map-actions { position: absolute; z-index: 3; inset-inline: 24px; bottom: 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.map-action { min-height: 52px; padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: rgba(250,249,245,.94); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.map-action:hover { background: var(--olive); color: var(--white); }

.form-shell { background: var(--surface); padding: clamp(34px, 5vw, 74px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; }
.field { position: relative; }
.field.full { grid-column: span 2; }
.field label { display: block; margin-bottom: 9px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 58px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  transition: border-color .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--olive); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice-card { position: relative; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card label { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; border: 1px solid var(--line); cursor: pointer; color: var(--ink); font-size: 13px; font-weight: 550; letter-spacing: 0; text-transform: none; transition: .2s ease; }
.choice-card label::after { content: ""; width: 12px; height: 12px; border: 1px solid var(--line); border-radius: 50%; }
.choice-card input:checked + label { background: var(--olive); border-color: var(--olive); color: var(--white); }
.choice-card input:checked + label::after { border: 3px solid var(--white); background: var(--olive); }
.form-note { margin-top: 18px; color: var(--muted); font-size: 11px; }
.form-success { display: none; min-height: 420px; place-items: center; text-align: center; }
.form-success.show { display: grid; }
.form-success .success-icon { width: 72px; height: 72px; margin: 0 auto 25px; display: grid; place-items: center; border: 1px solid var(--olive); border-radius: 50%; font-size: 26px; }
.form-success h3 { margin-bottom: 10px; font-size: 48px; }
.form-success p { max-width: 480px; color: var(--muted); }

.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 9vw; align-items: start; }
.legal-nav { position: sticky; top: 110px; display: grid; border-top: 1px solid var(--line); }
.legal-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.legal-content section { margin-bottom: 70px; scroll-margin-top: 110px; }
.legal-content h2 { margin-bottom: 22px; font-size: 46px; }
.legal-content p, .legal-content li { color: var(--ink-soft); line-height: 1.9; }

.error-page { min-height: calc(100svh - 92px); display: grid; grid-template-columns: .9fr 1.1fr; }
.error-copy { padding: 70px max(40px, calc((100vw - 1500px) / 2)); padding-inline-end: 7vw; display: flex; flex-direction: column; justify-content: center; }
.error-code { margin-bottom: 20px; color: var(--bronze); font-size: 13px; letter-spacing: .2em; }
.error-copy h1 { margin-bottom: 22px; font-size: clamp(70px, 9vw, 140px); line-height: .78; }
.error-copy p { max-width: 520px; color: var(--muted); }
.error-art { position: relative; min-height: 640px; overflow: hidden; background: var(--olive); }
.error-art img { width: 100%; height: 100%; min-height: 640px; opacity: .82; }
.error-art::after { content: "404"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: rgba(255,255,255,.18); font-family: var(--font-display); font-size: 28vw; line-height: 1; }

.request-hero { display: grid; grid-template-columns: .82fr 1.18fr; min-height: calc(100svh - 92px); }
.request-intro { padding: clamp(60px, 7vw, 110px) max(40px, calc((100vw - 1500px) / 2)); padding-inline-end: 6vw; display: flex; flex-direction: column; justify-content: center; background: var(--olive); color: var(--paper); }
.request-intro h1 { margin-bottom: 26px; font-size: clamp(60px, 7.5vw, 112px); line-height: .84; }
.request-intro p { color: rgba(244,242,236,.65); }
.request-points { margin: 40px 0 0; padding: 0; list-style: none; }
.request-points li { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.18); display: flex; gap: 14px; font-size: 13px; }
.request-points li::before { content: "✓"; color: var(--sand); }
.request-form-wrap { padding: clamp(42px, 6vw, 94px); display: flex; align-items: center; }

.pages-index { padding-block: 90px; }
.pages-index-head { margin-bottom: 56px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.pages-index-head h1 { margin: 0; font-size: clamp(58px, 8vw, 110px); line-height: .86; }
.page-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.page-list a { min-height: 200px; padding: 26px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: .25s ease; }
.page-list a:hover { background: var(--olive); color: var(--white); }
.page-list .page-no { color: var(--bronze); font-size: 11px; }
.page-list h2 { margin: 0; font-size: 34px; }
.page-list p { margin: 8px 0 0; color: var(--muted); font-size: 11px; }
.page-list a:hover p { color: rgba(255,255,255,.62); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1280px) {
  :root { --container: min(100% - 56px, 1500px); }
  .header-inner { width: calc(100% - 48px); grid-template-columns: 190px 1fr 180px; gap: 20px; }
  .desktop-nav { gap: 18px; }
  .header-consult { display: none; }
  .hero-copy { padding-inline-start: 36px; }
  html[dir="rtl"] .hero-copy { padding-inline-end: 36px; }
  .hero-copy h1 { font-size: clamp(62px, 5.2vw, 78px); }
}

@media (max-width: 1024px) {
  :root { --container: min(100% - 40px, 960px); --section-space: 76px; }
  .site-header, .site-header.is-scrolled { height: 78px; }
  .header-inner { width: calc(100% - 36px); grid-template-columns: 1fr auto; }
  .brand { font-size: 34px; }
  .desktop-nav { display: none; }
  .header-actions { gap: 12px; }
  .menu-toggle { display: flex; }
  .home-hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; padding: 72px 40px 42px; }
  html[dir="rtl"] .hero-copy { padding: 72px 40px 42px; }
  .hero-copy h1 { max-width: 800px; font-size: clamp(68px, 10vw, 104px); }
  .hero-services { margin-top: 72px; }
  .hero-media { height: 560px; min-height: 0; padding: 0 20px 20px; grid-template-columns: 3fr 1fr; }
  html[dir="rtl"] .hero-media { padding: 0 20px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-inline-end: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-card { height: 460px; min-height: 0; }
  .manifesto { grid-template-columns: 1fr; gap: 40px; }
  .projects-grid .project-card, .projects-grid .project-card.featured { grid-column: span 6; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-inline-end: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.24); }
  .material-row, .journal-grid { grid-template-columns: 1fr 1fr; }
  .material-card:last-child, .journal-grid .article-card:last-child { grid-column: span 2; }
  .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-layout { gap: 7vw; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(74px, 13vw, 128px); }
  .portfolio-item, .portfolio-item.wide, .portfolio-item.tall { grid-column: span 6; }
  .project-story { grid-template-columns: 1fr; gap: 38px; }
  .journal-feature { grid-template-columns: 1fr; }
  .journal-feature-image { height: 460px; min-height: 0; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-copy { padding: 72px 40px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-inline-end: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-layout { grid-template-columns: 1fr; gap: 60px; }
  .request-hero { grid-template-columns: 1fr; }
  .request-intro { padding: 72px 40px; }
  .page-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --container: calc(100% - 30px); --section-space: 58px; }
  body { font-size: 15px; }
  .header-inner { width: calc(100% - 26px); grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
  .brand { width: auto; max-width: 100%; font-size: clamp(24px, 7vw, 28px); white-space: nowrap; }
  .brand small { display: none; }
  .header-actions { gap: 8px; }
  .language-toggle { font-size: 11px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero-copy { padding: 58px 18px 34px; }
  html[dir="rtl"] .hero-copy { padding: 58px 18px 34px; }
  .hero-copy h1 { font-size: clamp(58px, 19vw, 82px); }
  html[dir="rtl"] .hero-copy h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-services { margin-top: 46px; }
  .hero-actions .btn, .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-services { grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .hero-services a:nth-child(2)::after { display: none; }
  .hero-media { height: 400px; min-height: 0; grid-template-columns: 1fr; padding: 0 14px 14px; }
  html[dir="rtl"] .hero-media { padding: 0 14px 14px; }
  .hero-media-detail { display: none; }
  .section-heading h2 { font-size: clamp(44px, 14vw, 65px); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 96px; padding: 20px 18px; border-inline-end: 0 !important; border-bottom: 1px solid var(--line); }
  .service-grid { display: grid; grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(n) { grid-column: auto; height: 400px; min-height: 0; }
  .service-card-content { inset-inline: 22px; bottom: 22px; }
  .service-card h3 { font-size: 45px; }
  .manifesto blockquote { font-size: clamp(42px, 13vw, 64px); }
  .projects-grid { display: grid; grid-template-columns: 1fr; }
  .projects-grid .project-card, .projects-grid .project-card.featured { grid-column: auto; }
  .project-card.featured .project-image, .project-image { aspect-ratio: 4 / 3; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 210px; border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .process-step::before { margin-bottom: 36px; }
  .material-row, .journal-grid { grid-template-columns: 1fr; }
  .material-card:last-child, .journal-grid .article-card:last-child { grid-column: auto; }
  .collection-grid {
    width: auto;
    margin-inline: -15px;
    padding: 0 15px 14px;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 320px);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
  }
  .collection-grid::-webkit-scrollbar { height: 4px; }
  .collection-grid::-webkit-scrollbar-thumb { background: var(--line); }
  .collection-card { scroll-snap-align: start; }
  .collection-card img { height: 240px; }
  .collection-card-body { padding: 16px 16px 18px; }
  .testimonial-layout { grid-template-columns: 1fr; }
  .testimonial-image, .testimonial-image img { height: 380px; min-height: 0; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 42px; }
  .footer-main { grid-template-columns: 1fr; gap: 56px; }
  .footer-brand .brand { font-size: clamp(32px, 10vw, 38px); }
  .footer-columns { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { padding-block: 24px; align-items: flex-start; flex-direction: column; }
  .page-hero-meta, .project-meta, .testimonial-author, .article-card-meta { flex-wrap: wrap; }
  .page-hero { padding-top: 54px; }
  .page-hero h1 { font-size: clamp(62px, 19vw, 96px); }
  .service-intro-media { grid-template-columns: 1fr; }
  .service-intro-media .media-large { height: 400px; min-height: 0; }
  .service-intro-media .media-small { display: none; }
  .service-statement { grid-template-columns: 1fr; gap: 32px; }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature-media { height: 400px; }
  .split-feature-media img { min-height: 0; }
  .portfolio-masonry { display: grid; grid-template-columns: 1fr; }
  .portfolio-item, .portfolio-item.wide, .portfolio-item.tall { grid-column: auto; }
  .project-detail-hero { height: clamp(440px, 62vh, 580px); }
  .project-detail-title { inset-inline: 20px; bottom: 32px; }
  .project-facts { grid-template-columns: 1fr 1fr; }
  .project-fact:nth-child(2) { border-inline-end: 0; }
  .project-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { grid-column: auto; height: 340px; min-height: 0; }
  .gallery-grid img:first-child { grid-column: auto; height: 390px; min-height: 0; }
  .journal-feature-copy { padding: 34px 24px; }
  .article-body blockquote { margin-inline: 0; padding-inline: 18px; font-size: 29px; }
  .about-hero-copy { padding: 72px 20px; }
  .about-hero-media { height: 420px; min-height: 0; }
  .about-hero-media img { min-height: 0; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 150px; padding: 25px; }
  .metric strong { font-size: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 260px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .value-card .number { margin-bottom: 60px; }
  .contact-row { grid-template-columns: 88px minmax(0, 1fr); gap: 16px; }
  .map-card, .map-card img { min-height: 440px; height: 440px; }
  .map-actions { inset-inline: 18px; bottom: 18px; grid-template-columns: 1fr; }
  .form-shell { padding: 30px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .choice-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .error-page { grid-template-columns: 1fr; }
  .error-copy { padding: 72px 20px; }
  .error-art, .error-art img { min-height: 400px; }
  .request-intro { padding: 72px 20px; }
  .request-form-wrap { padding: 54px 15px; }
  .pages-index-head { align-items: start; flex-direction: column; }
  .page-list { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .language-toggle > span:nth-child(2), .language-toggle .off { display: none; }
  .mobile-panel { padding-inline: 20px; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-column:last-child { grid-column: auto; }
}

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