:root {
  --av-ink: #0a0a0a;
  --av-charcoal: #141414;
  --av-warm-dark: #2e2924;
  --av-gold: #c6a15b;
  --av-gold-soft: #e3bf7e;
  --av-gold-deep: #ad7b36;
  --av-ivory: #f4f1ec;
  --av-warm-gray: #c9c4ba;
  --av-white: #fff;
  --av-line-dark: rgba(10, 10, 10, 0.16);
  --av-line-light: rgba(255, 255, 255, 0.18);
  --av-container: 1320px;
  --av-gutter: clamp(20px, 4vw, 56px);
  --av-section: clamp(80px, 10vw, 152px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--av-ivory);
  color: var(--av-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.is-arabic { font-family: Tahoma, Arial, sans-serif; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--av-gold-soft); outline-offset: 4px; }
[hidden] { display: none !important; }
.screen-reader-text, .honeypot {
  position: absolute !important;
  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; z-index: 9999; top: 12px; inset-inline-start: 18px;
  padding: 9px 15px; background: var(--av-white); color: var(--av-ink);
  transform: translateY(-180%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - (var(--av-gutter) * 2)), var(--av-container)); margin-inline: auto; }
.reading-container { width: min(calc(100% - (var(--av-gutter) * 2)), 760px); margin-inline: auto; }
.section { padding-block: var(--av-section); }
.section--dark { background: var(--av-charcoal); color: var(--av-white); }
.section--ivory { background: var(--av-ivory); }
.editorial-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; }
.editorial-main, .editorial-heading { grid-column: 4 / -1; }
.eyebrow {
  margin: 0; color: #756b60; font-size: 11px; font-weight: 700;
  letter-spacing: .2em; line-height: 1.3; text-transform: uppercase;
}
.eyebrow--light { color: var(--av-gold-soft); }
.display-heading {
  margin: 0; font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 74px); font-weight: 400;
  letter-spacing: -.05em; line-height: 1.04;
}
.is-arabic .display-heading { letter-spacing: -.025em; line-height: 1.2; }
.display-heading em, .home-cta h2 em { color: var(--av-gold-deep); font-family: "Newsreader", Georgia, serif; font-weight: 300; }
.display-heading--light { color: var(--av-white); }
.display-heading--light em { color: var(--av-gold-soft); }
.section-marker { grid-column: 1 / 4; padding-top: 9px; }
.section-marker > span { display: block; margin-bottom: 48px; color: #877d72; font-size: 10px; letter-spacing: .14em; }
.section-marker--light > span { color: rgba(255, 255, 255, .44); }
.button {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: space-between;
  gap: 34px; padding: 0 20px; border: 1px solid transparent; border-radius: 1px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase;
  cursor: pointer; transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.is-arabic .button { letter-spacing: 0; }
.button span, .text-link span, .header-cta span { font-size: 18px; transition: transform .25s ease; }
.button:hover span, .text-link:hover span, .header-cta:hover span { transform: translate(3px, -3px); }
[dir="rtl"] .button:hover span, [dir="rtl"] .text-link:hover span, [dir="rtl"] .header-cta:hover span { transform: translate(-3px, -3px); }
.button--gold { background: var(--av-gold); color: var(--av-ink); }
.button--gold:hover { background: var(--av-gold-soft); }
.button--ghost { border-color: rgba(255, 255, 255, .65); color: var(--av-white); }
.button--ghost:hover { background: var(--av-white); color: var(--av-ink); }
.button--ink { background: var(--av-ink); color: var(--av-white); }
.button--ink:hover { background: var(--av-gold); color: var(--av-ink); }
.button--outline-light { border-color: rgba(255,255,255,.4); color: var(--av-white); }
.button--outline-light:hover { background: var(--av-white); color: var(--av-ink); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 30px;
  padding-bottom: 10px; border-bottom: 1px solid currentColor;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto; height: 92px;
  color: var(--av-white); border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: height .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.is-scrolled { height: 72px; background: rgba(10,10,10,.97); border-color: rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.site-header__inner { display: flex; height: 100%; align-items: center; padding-inline: var(--av-gutter); }
.site-brand { position: relative; z-index: 102; display: inline-flex; align-items: center; gap: 12px; }
.site-brand__logo { width: 64px; height: 64px; object-fit: contain; background: transparent; transition: width .35s ease, height .35s ease; }
.site-header.is-scrolled .site-brand__logo { width: 52px; height: 52px; }
.brand-copy { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.brand-name { color: var(--av-white); font-size: 21px; font-weight: 500; line-height: 1; letter-spacing: .13em; white-space: nowrap; }
.brand-name > span { color: var(--av-gold-soft); }
.brand-expertise { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 4px; color: rgba(255,255,255,.66); font-size: 8px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.brand-expertise i { flex: 0 0 3px; width: 3px; height: 3px; background: var(--av-gold); border-radius: 50%; }
.primary-nav { margin-inline-start: auto; }
.primary-nav ul, .mobile-navigation ul, .footer-column ul { margin: 0; padding: 0; list-style: none; }
.primary-nav > ul { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); }
.primary-nav a { position: relative; font-size: 12px; font-weight: 600; }
.primary-nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: -10px; height: 1px; background: var(--av-gold); transform: scaleX(0); transition: transform .25s ease; }
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 24px; margin-inline-start: clamp(28px, 4vw, 60px); }
.language-switch { font-size: 11px; font-weight: 700; color: var(--av-gold-soft); }
.header-cta { display: inline-flex; align-items: center; gap: 18px; padding-inline-start: 24px; border-inline-start: 1px solid rgba(255,255,255,.25); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.menu-toggle, .mobile-navigation { display: none; }
.home-hero { position: relative; min-height: 760px; height: 100svh; max-height: 1080px; overflow: hidden; background: var(--av-ink); color: var(--av-white); }
.home-hero__media, .home-hero__overlay, .home-hero__grid { position: absolute; inset: 0; }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; animation: av-hero 1.4s ease both; }
.home-hero__overlay { background: linear-gradient(90deg, rgba(8,7,6,.84), rgba(8,7,6,.35) 58%, rgba(8,7,6,.12)), linear-gradient(0deg, rgba(8,7,6,.68), transparent 48%); }
.home-hero__grid { display: grid; grid-template-columns: repeat(4,1fr); padding-inline: var(--av-gutter); pointer-events: none; }
.home-hero__grid i { border-inline-end: 1px solid rgba(255,255,255,.075); }
.home-hero__content { position: relative; z-index: 2; display: flex; min-height: 100%; flex-direction: column; justify-content: center; padding-top: 88px; }
.regions-line { margin: 22px 0 0; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.is-arabic .regions-line { letter-spacing: 0; }
.home-hero h1 { max-width: 980px; margin: 24px 0 0; font-size: clamp(60px, 7.4vw, 112px); font-weight: 400; letter-spacing: -.065em; line-height: .92; }
.is-arabic .home-hero h1 { max-width: 860px; letter-spacing: -.025em; line-height: 1.1; }
.home-hero__bottom { display: grid; grid-template-columns: 5fr 7fr; gap: 24px; align-items: end; margin-top: clamp(48px, 7vh, 84px); }
.home-hero__bottom > p { max-width: 520px; margin: 0; color: rgba(255,255,255,.78); font-size: clamp(15px,1.25vw,18px); }
.home-hero__bottom .button-row { justify-content: flex-end; }
.studio-section { overflow: hidden; }
.editorial-copy { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(32px,6vw,88px); align-items: end; margin: 60px 0 0 16%; }
[dir="rtl"] .editorial-copy { margin-left: 0; margin-right: 16%; }
.editorial-copy p { margin: 0; color: #4e4943; font-size: clamp(16px,1.35vw,19px); }
.service-list { margin-top: 88px; border-top: 1px solid var(--av-line-light); }
.service-row { display: grid; grid-template-columns: .8fr 2.8fr 3.2fr 52px; gap: 24px; align-items: center; min-height: 138px; border-bottom: 1px solid var(--av-line-light); transition: background .25s ease, padding .25s ease; }
.service-row:hover { padding-inline: 16px; background: rgba(255,255,255,.035); }
.service-row__number { color: var(--av-gold); font-size: 10px; }
.service-row h3 { margin: 0; font-size: clamp(23px,2.4vw,36px); font-weight: 400; letter-spacing: -.035em; line-height: 1.2; }
.service-row p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }
.circle-link { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; transition: background .25s ease, color .25s ease, transform .25s ease; }
.circle-link:hover { background: var(--av-gold); color: var(--av-ink); transform: rotate(45deg); }
.section-action { display: flex; justify-content: flex-end; margin-top: 54px; }
.section-action--split { justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--av-line-dark); }
.section-action--split p { margin: 0; color: #756d64; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.project-grid { display: grid; gap: 32px clamp(28px,4vw,68px); }
.project-grid--featured { grid-template-columns: 1.12fr .88fr; align-items: start; margin-top: 88px; }
.project-grid--featured .project-card--large { grid-row: span 2; }
.project-card a { display: block; }
.project-card__image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #d7d1c7; }
.project-card--large .project-card__image { aspect-ratio: 4/5; }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,1,.36,1); }
.project-card__image > span { position: absolute; inset: auto 0 0 auto; display: grid; width: 58px; height: 58px; place-items: center; background: var(--av-gold); color: var(--av-ink); font-size: 22px; transform: translate(100%,100%); transition: transform .3s ease; }
[dir="rtl"] .project-card__image > span { inset: auto auto 0 0; transform: translate(-100%,100%); }
.project-card:hover .project-card__image img { transform: scale(1.035); }
.project-card:hover .project-card__image > span { transform: translate(0); }
.project-card__meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--av-line-dark); }
.project-card__meta small { color: #80766b; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.project-card__meta h2, .project-card__meta h3 { margin: 4px 0 0; font-size: clamp(20px,2vw,28px); font-weight: 500; letter-spacing: -.025em; line-height: 1.25; }
.project-card__meta p { margin: 18px 0 0; color: #746c63; font-size: 10px; text-align: end; }
.approach-section { position: relative; min-height: 820px; overflow: hidden; background: var(--av-warm-dark); color: var(--av-white); }
.approach-section__image { position: absolute; inset: 0 0 0 auto; width: 58%; background-size: cover; background-position: center; }
[dir="rtl"] .approach-section__image { inset: 0 auto 0 0; }
.approach-section__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--av-warm-dark), var(--av-warm-dark) 48%, rgba(46,41,36,.9) 68%, rgba(46,41,36,.22)); }
[dir="rtl"] .approach-section__overlay { background: linear-gradient(-90deg, var(--av-warm-dark), var(--av-warm-dark) 48%, rgba(46,41,36,.9) 68%, rgba(46,41,36,.22)); }
.approach-section__content { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(12,1fr); gap: 24px; }
.approach-copy { grid-column: 4/10; }
.approach-copy p { max-width: 560px; margin: 48px 0 0; color: rgba(255,255,255,.65); }
.process-list { grid-column: 1/-1; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 95px; border-top: 1px solid var(--av-line-light); }
.process-step { position: relative; padding: 32px 20px 0 0; }
.process-step::before { content: ""; position: absolute; top: -3px; inset-inline-start: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--av-gold); }
.process-step span { color: var(--av-gold); font-size: 10px; }
.process-step h3 { margin: 20px 0 4px; font-size: 20px; font-weight: 500; }
.process-step p { margin: 0; color: rgba(255,255,255,.48); font-size: 12px; }
.sector-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 82px; border-block: 1px solid var(--av-line-dark); }
.sector-card { min-height: 310px; padding: 28px clamp(24px,3vw,42px) 36px; border-inline-end: 1px solid var(--av-line-dark); transition: background .3s ease, color .3s ease; }
.sector-card:last-child { border-inline-end: 0; }
.sector-card:hover { background: var(--av-ink); color: var(--av-white); }
.sector-card > span { color: var(--av-gold-deep); font-size: 10px; }
.sector-card h3 { margin: 82px 0 20px; font-size: clamp(28px,2.7vw,40px); font-weight: 400; letter-spacing: -.035em; }
.sector-card p { margin: 0; color: #665e56; font-size: 14px; transition: color .3s ease; }
.sector-card:hover p { color: rgba(255,255,255,.62); }
.home-cta { position: relative; display: grid; min-height: 680px; place-items: center; overflow: hidden; background: var(--av-ink); color: var(--av-white); }
.home-cta__lines { position: absolute; inset: 0; display: flex; justify-content: space-evenly; overflow: hidden; }
.home-cta__lines i { width: 1px; height: 150%; background: linear-gradient(transparent,rgba(198,161,91,.25),transparent); transform: rotate(28deg) translateY(-16%); }
.home-cta__content { position: relative; z-index: 2; width: min(680px, calc(100% - 40px)); text-align: center; }
.home-cta h2 { margin: 26px 0 24px; font-size: clamp(56px,7vw,98px); font-weight: 400; letter-spacing: -.06em; line-height: .95; }
.is-arabic .home-cta h2 { letter-spacing: -.02em; line-height: 1.15; }
.home-cta__content > p:not(.eyebrow) { max-width: 540px; margin: 0 auto 38px; color: rgba(255,255,255,.64); }
.home-cta .eyebrow { text-align: center; }
.page-hero, .detail-hero { position: relative; min-height: 650px; display: flex; align-items: flex-end; overflow: hidden; background: var(--av-charcoal); color: var(--av-white); }
.page-hero--compact { min-height: 600px; }
.page-hero__media, .page-hero__overlay, .detail-hero__media, .detail-hero__overlay { position: absolute; inset: 0; }
.page-hero__media img, .detail-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay, .detail-hero__overlay { background: linear-gradient(90deg,rgba(8,7,6,.82),rgba(8,7,6,.22)),linear-gradient(0deg,rgba(8,7,6,.78),transparent 58%); }
[dir="rtl"] .page-hero__overlay, [dir="rtl"] .detail-hero__overlay { background: linear-gradient(-90deg,rgba(8,7,6,.82),rgba(8,7,6,.22)),linear-gradient(0deg,rgba(8,7,6,.78),transparent 58%); }
.page-hero__content, .detail-hero__content { position: relative; z-index: 2; padding-top: 160px; padding-bottom: 88px; }
.page-hero__content h1, .detail-hero__content h1 { max-width: 1000px; margin: 24px 0 0; font-size: clamp(52px,6.7vw,96px); font-weight: 400; letter-spacing: -.06em; line-height: .98; }
.is-arabic .page-hero__content h1, .is-arabic .detail-hero__content h1 { letter-spacing: -.02em; line-height: 1.15; }
.page-hero__content > p:last-child, .detail-hero__content > p:last-child { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.7); font-size: 18px; }
.detail-hero { min-height: 760px; }
.entry-content h2 { margin: 1.6em 0 .55em; font-size: clamp(34px,4vw,52px); font-weight: 400; letter-spacing: -.035em; line-height: 1.15; }
.entry-content h3 { margin: 1.8em 0 .45em; font-size: 26px; font-weight: 500; }
.entry-content p, .entry-content li { color: #4e4841; }
.entry-content a { color: var(--av-gold-deep); text-decoration: underline; }
.entry-content > *:first-child { margin-top: 0; }
.page-cta { padding-block: clamp(64px,8vw,105px); background: var(--av-charcoal); color: var(--av-white); }
.page-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.page-cta h2 { max-width: 820px; margin: 0; font-size: clamp(38px,5vw,68px); font-weight: 400; letter-spacing: -.045em; line-height: 1.05; }
.archive-section { background: var(--av-ivory); }
.service-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 64px 36px; }
.service-card__image { aspect-ratio: 16/10; overflow: hidden; background: #d8d1c7; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .service-card__image img { transform: scale(1.03); }
.service-card__content { padding: 24px 0 0; border-top: 1px solid var(--av-line-dark); margin-top: 16px; }
.service-card__content h2 { margin: 0; font-size: clamp(26px,3vw,40px); font-weight: 400; letter-spacing: -.035em; }
.service-card__content p { margin: 15px 0; color: #5c554d; }
.service-card__content span { color: var(--av-gold-deep); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-grid--archive { grid-template-columns: repeat(2,1fr); }
.project-grid--three { grid-template-columns: repeat(3,1fr); margin-top: 50px; }
.project-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 52px; }
.project-filters button { min-height: 44px; padding: 0 18px; border: 1px solid var(--av-line-dark); background: transparent; color: var(--av-ink); font-size: 11px; font-weight: 700; cursor: pointer; }
.project-filters button:hover, .project-filters button.is-active { border-color: var(--av-ink); background: var(--av-ink); color: var(--av-white); }
.project-facts { background: var(--av-charcoal); color: var(--av-white); border-top: 1px solid var(--av-line-light); }
.project-facts__grid { display: grid; grid-template-columns: repeat(5,1fr); }
.project-facts__grid > div { min-height: 130px; padding: 28px 18px; border-inline-end: 1px solid var(--av-line-light); }
.project-facts__grid > div:last-child { border-inline-end: 0; }
.project-facts span { display: block; margin-bottom: 16px; color: var(--av-gold); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.project-facts strong { font-size: 14px; font-weight: 500; }
.project-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; padding: 0 10px 10px; background: var(--av-ink); }
.project-gallery figure { margin: 0; }
.project-gallery__wide { grid-column: 1/-1; }
.project-gallery img { width: 100%; height: 100%; max-height: 900px; object-fit: cover; }
.project-gallery figcaption { padding: 8px 0; color: rgba(255,255,255,.55); font-size: 12px; }
.related-section .display-heading { max-width: 900px; margin-top: 26px; }
.location-section { background: var(--av-ivory); }
.location-grid { display: grid; grid-template-columns: minmax(280px,.78fr) minmax(0,1.22fr); gap: clamp(48px,7vw,108px); }
.location-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.location-copy .display-heading { margin-top: 28px; font-size: clamp(42px,4.7vw,68px); }
.location-copy address { margin-top: 40px; color: #5d564e; font-size: 15px; font-style: normal; line-height: 1.9; }
.location-phone { margin: 18px 0 35px; font-weight: 700; }
.map-frame { min-height: 560px; background: #d7d1c8; overflow: hidden; }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 560px; border: 0; filter: grayscale(1) sepia(.12) contrast(.95); }
.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,8vw,110px); }
.quote-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(40px,6vw,84px); align-items: start; }
.form-intro .display-heading, .quote-heading .display-heading { margin-top: 28px; font-size: clamp(40px,4.5vw,64px); }
.form-intro > p:not(.eyebrow) { color: #5b554d; }
.form-card { padding: clamp(28px,4vw,52px); background: var(--av-white); border: 1px solid var(--av-line-dark); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.field { margin-bottom: 22px; }
.field label, .field legend { display: block; margin-bottom: 7px; color: #4e4740; font-size: 12px; font-weight: 700; }
.field input:not([type="checkbox"]), .field textarea, .field select { width: 100%; min-height: 52px; padding: 11px 13px; border: 1px solid #aaa196; border-radius: 0; background: var(--av-white); color: var(--av-ink); }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--av-gold-deep); outline: 2px solid rgba(173,123,54,.2); }
.services-choice { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 18px; padding: 0; border: 0; }
.services-choice legend { grid-column: 1/-1; }
.services-choice label { display: flex; align-items: center; gap: 9px; min-height: 38px; font-weight: 400; }
.services-choice input { width: 18px; height: 18px; accent-color: var(--av-gold-deep); }
.form-notice { margin-bottom: 24px; padding: 13px 15px; border-inline-start: 3px solid; font-size: 14px; }
.form-notice--success { background: #edf5eb; border-color: #4d8544; color: #285024; }
.form-notice--error { background: #f8e9e7; border-color: #9f4c44; color: #6b2d28; }
.site-footer { padding-top: 86px; background: var(--av-charcoal); color: var(--av-white); }
.footer-main { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.35fr); gap: clamp(48px,5vw,80px); padding-bottom: 72px; }
.site-brand--footer img { width: 104px; height: 84px; object-fit: contain; background: transparent; }
.site-brand--footer { gap: 18px; }
.site-brand--footer .brand-name { font-size: 29px; }
.site-brand--footer .brand-expertise { margin-bottom: 0; font-size: 9px; }
.footer-brand > p { max-width: 470px; margin: 28px 0 0; color: rgba(255,255,255,.5); font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 32px; justify-self: end; width: min(100%,680px); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column ul { display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-column p:not(.footer-label) { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; }
.footer-column a { color: rgba(255,255,255,.68); font-size: 13px; }
.footer-column a:hover { color: var(--av-gold-soft); }
.footer-label { margin: 0 0 14px; color: var(--av-gold); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1.1fr 1.25fr auto; gap: 20px; align-items: center; padding-block: 22px; border-top: 1px solid var(--av-line-light); color: rgba(255,255,255,.4); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2), .site-credit { text-align: center; }
.site-credit a { color: var(--av-gold-soft); }
.footer-bottom > a { text-align: end; }
.whatsapp-float { position: fixed; z-index: 90; inset-inline-end: clamp(18px,2.5vw,36px); bottom: clamp(18px,2.5vw,34px); display: flex; min-height: 56px; align-items: center; gap: 10px; padding: 0 17px; background: #1f9d59; color: var(--av-white); box-shadow: 0 12px 30px rgba(10,10,10,.22); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: transform .25s ease, background .25s ease; }
.whatsapp-float:hover { transform: translateY(-3px); background: #16844a; }
.whatsapp-float img { width: 24px; height: 24px; }
.content-list article { padding-block: 30px; border-bottom: 1px solid var(--av-line-dark); }
.content-list h2 { margin: 0; font-size: 32px; font-weight: 500; }
.error-page { display: grid; min-height: 760px; place-items: center; background: var(--av-charcoal); color: var(--av-white); }
.error-page__content { padding-top: 90px; }
.error-page h1 { max-width: 950px; margin: 25px 0; font-size: clamp(56px,8vw,110px); font-weight: 400; letter-spacing: -.06em; line-height: .95; }
.error-page p { max-width: 600px; color: rgba(255,255,255,.64); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes av-hero { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1060px) {
  .primary-nav, .header-actions { display: none; }
  .site-header { height: 76px; }
  .menu-toggle { position: relative; z-index: 102; display: flex; width: 48px; height: 48px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; margin-inline-start: auto; border: 0; background: transparent; color: currentColor; cursor: pointer; }
  .menu-toggle i, .menu-toggle .menu-line { display: block; width: 25px; height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] i:first-of-type, .menu-toggle[aria-expanded="true"] .menu-line:first-of-type { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type, .menu-toggle[aria-expanded="true"] .menu-line:last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .mobile-navigation { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 42px; padding: 110px var(--av-gutter) 45px; background: var(--av-charcoal); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .3s ease, transform .3s ease; }
  .mobile-navigation.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-navigation nav > ul > li > a { display: block; padding: 10px 0; border-bottom: 1px solid var(--av-line-light); font-size: clamp(34px,7vw,52px); font-weight: 400; letter-spacing: -.04em; line-height: 1.2; }
  .mobile-navigation__actions { display: flex; align-items: center; gap: 28px; }
  .editorial-main, .editorial-heading, .approach-copy { grid-column: 4/-1; }
  .project-facts__grid { grid-template-columns: repeat(3,1fr); }
  .footer-main { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
}

@media (max-width: 760px) {
  :root { --av-section: 74px; }
  .editorial-grid, .approach-section__content { grid-template-columns: repeat(4,1fr); gap: 16px; }
  .site-brand__logo { width: 52px; height: 52px; }
  .site-brand { gap: 9px; }
  .brand-name { font-size: 17px; letter-spacing: .1em; }
  .brand-expertise { gap: 5px; font-size: 7px; }
  .home-hero { min-height: 720px; }
  .home-hero__media img { object-position: 62% center; }
  .home-hero__overlay { background: linear-gradient(90deg,rgba(8,7,6,.84),rgba(8,7,6,.2)),linear-gradient(0deg,rgba(8,7,6,.78),transparent 58%); }
  [dir="rtl"] .home-hero__overlay { background: linear-gradient(-90deg,rgba(8,7,6,.84),rgba(8,7,6,.2)),linear-gradient(0deg,rgba(8,7,6,.78),transparent 58%); }
  .home-hero__grid { grid-template-columns: repeat(2,1fr); }
  .home-hero h1 { font-size: clamp(54px,15vw,76px); }
  .home-hero__bottom { grid-template-columns: 1fr; margin-top: 34px; }
  .home-hero__bottom .button-row { justify-content: flex-start; }
  .section-marker, .editorial-main, .editorial-heading, .approach-copy { grid-column: 1/-1; }
  .section-marker { display: flex; align-items: center; gap: 18px; margin-bottom: 34px; padding: 0; }
  .section-marker > span { margin: 0; }
  .display-heading { font-size: clamp(39px,11.5vw,56px); }
  .editorial-copy { grid-template-columns: 1fr; margin: 38px 0 0; }
  [dir="rtl"] .editorial-copy { margin: 38px 0 0; }
  .editorial-copy .text-link { justify-self: start; }
  .service-list { margin-top: 54px; }
  .service-row { grid-template-columns: 36px 1fr 46px; min-height: 0; padding-block: 26px; }
  .service-row:hover { padding-inline: 0; }
  .service-row p { grid-column: 2/-1; grid-row: 2; }
  .service-row .circle-link { grid-column: 3; grid-row: 1; }
  .project-grid--featured, .project-grid--archive, .project-grid--three { grid-template-columns: 1fr; margin-top: 56px; }
  .project-grid--featured .project-card--large { grid-row: auto; }
  .project-card__image, .project-card--large .project-card__image { aspect-ratio: 4/4.2; }
  .project-card__image > span { transform: none; }
  .project-card__meta { flex-direction: column; gap: 4px; }
  .project-card__meta p { margin: 0; text-align: start; }
  .section-action--split { align-items: flex-start; flex-direction: column; }
  .approach-section { min-height: 1040px; }
  .approach-section__image { inset: auto 0 0; width: 100%; height: 44%; }
  .approach-section__overlay, [dir="rtl"] .approach-section__overlay { background: linear-gradient(180deg,var(--av-warm-dark),var(--av-warm-dark) 54%,rgba(46,41,36,.74) 75%,rgba(46,41,36,.22)); }
  .process-list { grid-template-columns: repeat(2,1fr); gap: 36px 14px; margin-top: 64px; }
  .sector-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .sector-card { min-height: 0; padding: 26px 0 36px; border-inline-end: 0; border-bottom: 1px solid var(--av-line-dark); }
  .sector-card h3 { margin: 34px 0 14px; }
  .sector-card:hover { padding-inline: 16px; }
  .home-cta { min-height: 620px; }
  .home-cta h2 { font-size: clamp(52px,15vw,74px); }
  .page-hero, .page-hero--compact { min-height: 590px; }
  .detail-hero { min-height: 690px; }
  .page-hero__content h1, .detail-hero__content h1 { font-size: clamp(48px,13vw,72px); }
  .page-cta__inner { align-items: flex-start; flex-direction: column; }
  .service-card-grid { grid-template-columns: 1fr; }
  .project-facts__grid { grid-template-columns: repeat(2,1fr); }
  .project-gallery { grid-template-columns: 1fr; }
  .project-gallery__wide { grid-column: auto; }
  .location-grid, .form-layout, .quote-layout { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 420px; }
  .form-row, .services-choice { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: 1fr; gap: 38px; justify-self: start; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-bottom p:nth-child(2) { display: none; }
  .site-credit { grid-column: 1/-1; grid-row: 2; text-align: start; }
  .whatsapp-float { width: 58px; height: 58px; justify-content: center; padding: 0; border-radius: 50%; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

@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; }
}
