:root {
  --ink: #182126;
  --ink-2: #263137;
  --ink-3: #4e5a60;
  --paper: #f2efe8;
  --paper-2: #e9e5dc;
  --white: #ffffff;
  --orange: #d45a2a;
  --orange-dark: #a9421d;
  --orange-soft: #f0c3ae;
  --steel: #9aa4a8;
  --line: rgba(24, 33, 38, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --urbiq-blue: #005677;
  --shadow: 0 26px 70px rgba(15, 21, 24, 0.16);
  --radius: 2px;
  --header-h: 118px;
  --shell: min(1240px, calc(100vw - 64px));
  --font: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
::selection { color: var(--white); background: var(--orange); }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 128px 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow--light { color: #f29a72; }
.section-heading { max-width: 810px; margin-bottom: 64px; }
.section-heading--wide { max-width: 980px; }
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .65fr);
  gap: 72px;
  align-items: end;
  max-width: none;
}
.section-heading h2,
.proposition h2,
.contact h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .99;
}
.section-heading > p:last-child,
.section-heading--split > p,
.proposition .lead,
.contact .lead {
  margin: 26px 0 0;
  color: var(--ink-3);
  font-size: 19px;
  line-height: 1.62;
}
.section-heading--split > p { margin: 0; }
.section-heading--light h2 { color: var(--white); }
.section-heading--light > p,
.section-heading--light > div + p { color: rgba(255, 255, 255, .68); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 22px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}
.button svg, .text-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover, .button:focus-visible { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 10px 16px; font-size: 13px; }
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--light:hover, .button--light:focus-visible { color: var(--white); background: transparent; border-color: var(--white); }
.button--submit { width: 100%; margin-top: 8px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color .2s ease, gap .2s ease;
}
.text-link:hover, .text-link:focus-visible { color: var(--orange); gap: 17px; }
.text-link--light { color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: transform .28s ease, box-shadow .28s ease;
}
.contact-strip {
  height: 36px;
  overflow: hidden;
  background: rgba(12, 17, 20, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: height .28s ease, opacity .28s ease;
}
.contact-strip__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.contact-strip__label { color: rgba(255, 255, 255, .55); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.contact-strip__links { display: flex; align-items: center; gap: 28px; font-size: 12px; }
.contact-strip__links a, .contact-strip__links span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .75); }
.contact-strip__links a:hover { color: var(--white); }
.contact-strip__links svg { width: 14px; height: 14px; fill: none; stroke: var(--orange); stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.nav-bar { height: 82px; background: rgba(24, 33, 38, .94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, .1); }
.nav-bar__inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { flex: 0 0 auto; width: 192px; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a { position: relative; color: rgba(255, 255, 255, .72); font-size: 13px; font-weight: 600; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--orange); transition: right .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--white); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.button--header { margin-left: 2px; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, .22); background: transparent; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.nav-toggle__close { display: none; }
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(0, 0, 0, .16); }
.site-header.is-scrolled .contact-strip { height: 0; opacity: 0; }

/* Hero */
.hero { position: relative; min-height: 790px; height: 100svh; max-height: 970px; overflow: hidden; background: var(--ink); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 7s ease; }
.hero-slide.is-active .hero-slide__image { transform: scale(1.07); }
.hero-slide__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 13, 15, .92) 0%, rgba(8, 13, 15, .77) 42%, rgba(8, 13, 15, .18) 76%, rgba(8, 13, 15, .08) 100%); }
.hero-slide__shade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.36), transparent 30%, rgba(0,0,0,.38)); }
.hero-slide__shade--strong { background: linear-gradient(90deg, rgba(10, 14, 16, .92), rgba(10, 14, 16, .70) 55%, rgba(10, 14, 16, .22)); }
.hero-slide__content { position: relative; z-index: 2; min-height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: var(--header-h); padding-bottom: 88px; }
.hero-slide h1, .hero-slide__title { max-width: 880px; margin: 0; color: var(--white); font-size: clamp(50px, 6.4vw, 92px); font-weight: 570; letter-spacing: -.055em; line-height: .94; text-wrap: balance; }
.hero-slide__title { max-width: 940px; }
.hero-slide__lead { max-width: 700px; margin: 30px 0 0; color: rgba(255, 255, 255, .79); font-size: clamp(18px, 2vw, 23px); line-height: 1.52; }
.hero-slide__actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.hero-slide__scope { margin: 40px 0 0; color: rgba(255, 255, 255, .55); font-size: 12px; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.hero-controls { position: absolute; z-index: 4; left: 50%; bottom: 34px; transform: translateX(-50%); display: flex; align-items: center; gap: 8px; pointer-events: none; }
.hero-control, .hero-pause { pointer-events: auto; border: 0; color: rgba(255,255,255,.56); background: transparent; cursor: pointer; }
.hero-control { position: relative; width: 78px; padding: 9px 0 13px; text-align: left; }
.hero-control::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: rgba(255,255,255,.28); }
.hero-control::before { content: ""; position: absolute; z-index: 1; left: 0; bottom: 0; width: 0; height: 2px; background: var(--orange); }
.hero-control.is-active { color: var(--white); }
.hero-control.is-active::before { width: 100%; transition: width 6s linear; }
.hero.is-paused .hero-control.is-active::before { transition-play-state: paused; }
.hero-control span { font-size: 12px; font-weight: 700; }
.hero-pause { margin-left: 12px; padding: 8px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hero-pause:hover { color: var(--white); }

/* Proof */
.proof-strip { color: var(--white); background: var(--orange); }
.proof-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-strip__grid > div { min-height: 90px; display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-left: 1px solid rgba(255,255,255,.24); }
.proof-strip__grid > div:last-child { border-right: 1px solid rgba(255,255,255,.24); }
.proof-strip__grid span { font-size: 11px; opacity: .68; }
.proof-strip__grid strong { font-size: 14px; font-weight: 650; }

/* Situation */
.situation { background: var(--paper); }
.question-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.question-card { min-height: 236px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; transition: background .25s ease, color .25s ease, transform .25s ease; }
.question-card span { color: var(--orange); font-size: 12px; font-weight: 720; }
.question-card h3 { max-width: 330px; margin: 54px 0 0; font-size: clamp(21px, 2.2vw, 30px); font-weight: 570; letter-spacing: -.025em; line-height: 1.12; }
.question-card:hover { z-index: 1; color: var(--white); background: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.recognition-callout { display: grid; place-items: center; min-height: 210px; margin-top: 56px; padding: 48px; color: var(--white); background: var(--ink); }
.recognition-callout p { max-width: 880px; margin: 0; font-size: clamp(24px, 3vw, 40px); font-weight: 430; letter-spacing: -.03em; line-height: 1.2; text-align: center; }
.recognition-callout strong { color: #f49b73; font-weight: 600; }

/* Proposition */
.proposition { background: var(--white); }
.proposition__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .85fr); gap: 94px; align-items: center; }
.proposition__visual { position: relative; min-height: 680px; overflow: hidden; background: var(--paper); }
.proposition__visual img { width: 100%; height: 680px; object-fit: cover; }
.proposition__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(13,19,22,.55)); pointer-events: none; }
.proposition__tag { position: absolute; z-index: 2; left: 24px; top: 24px; padding: 9px 12px; color: var(--white); background: var(--orange); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.proposition__result { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; display: grid; gap: 8px; padding: 24px; color: var(--white); background: rgba(24,33,38,.88); backdrop-filter: blur(8px); }
.proposition__result span { color: #f29a72; font-size: 10px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.proposition__result strong { max-width: 460px; font-size: 23px; line-height: 1.2; }
.proposition__copy { max-width: 580px; }
.proposition__copy .lead { margin-bottom: 34px; }
.check-list { display: grid; gap: 0; margin: 0 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 16px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.check-list svg { width: 22px; height: 22px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.check-list strong { font-weight: 700; }

/* Method */
.method { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.method__q { position: absolute; right: -120px; top: -100px; width: 560px; opacity: .06; filter: grayscale(1) brightness(5); transform: rotate(-8deg); }
.method-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.method-card { min-height: 470px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: rgba(255,255,255,.018); transition: background .25s ease, transform .25s ease; }
.method-card:hover { z-index: 2; background: rgba(255,255,255,.07); transform: translateY(-6px); }
.method-card__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line-light); }
.method-card__top span { color: #f29a72; font-size: 28px; font-weight: 600; }
.method-card__top small { color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.method-card h3 { margin: 42px 0 20px; font-size: 27px; font-weight: 570; letter-spacing: -.025em; line-height: 1.06; }
.method-card > p { margin: 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.65; }
.method-card__deliverable { display: grid; gap: 7px; margin-top: auto; padding-top: 34px; }
.method-card__deliverable span { color: #f29a72; font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.method-card__deliverable strong { font-size: 14px; font-weight: 650; }
.method-note { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 34px; padding: 22px 0; border-top: 1px solid var(--line-light); }
.method-note strong { font-size: 14px; }
.method-note span { color: rgba(255,255,255,.56); font-size: 13px; text-align: right; }

/* Control */
.control { background: var(--white); }
.control-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.control-card { min-height: 290px; padding: 28px; background: var(--paper); border-top: 3px solid var(--orange); }
.control-card span { color: var(--orange); font-size: 12px; font-weight: 750; }
.control-card h3 { margin: 62px 0 18px; font-size: 31px; font-weight: 590; letter-spacing: -.03em; }
.control-card p { margin: 0; color: var(--ink-3); font-size: 15px; line-height: 1.65; }

/* Experience */
.experience { background: var(--paper); }
.project { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(380px, .72fr); min-height: 650px; margin-top: 28px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.project + .project { margin-top: 44px; }
.project__media, .project__gallery { position: relative; min-height: 650px; overflow: hidden; background: var(--paper-2); }
.project__media img { width: 100%; height: 100%; object-fit: cover; }
.project__media--plan img { object-fit: contain; padding: 28px; background: #fff; }
.project__media-label { position: absolute; left: 18px; bottom: 18px; padding: 8px 10px; color: var(--white); background: var(--orange); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.project__gallery { display: grid; grid-template-columns: 1fr 40%; grid-template-rows: 1fr; }
.project__gallery img { width: 100%; height: 100%; object-fit: cover; }
.project__gallery-secondary { padding: 18px; object-fit: contain !important; background: #fff; }
.project__content { display: flex; flex-direction: column; justify-content: center; padding: 52px; }
.project__kicker { margin: 0 0 20px; color: #f29a72; font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.project h3 { margin: 0; font-size: clamp(34px, 4vw, 54px); font-weight: 570; letter-spacing: -.045em; line-height: 1.02; }
.project__content > p:not(.project__kicker):not(.project__credit) { margin: 26px 0 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.7; }
.project__data { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 42px 0 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.project__data div { padding: 20px 14px 20px 0; border-right: 1px solid var(--line-light); }
.project__data div + div { padding-left: 14px; }
.project__data div:last-child { border-right: 0; }
.project__data dt { color: var(--white); font-size: 17px; font-weight: 650; }
.project__data dd { margin: 5px 0 0; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.3; }
.project__credit { margin: 18px 0 0; color: rgba(255,255,255,.4); font-size: 11px; }

/* CTA */
.cta-band { padding: 92px 0; color: var(--white); background: var(--orange); }
.cta-band__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .62fr); gap: 80px; align-items: center; }
.cta-band h2 { max-width: 800px; font-size: clamp(38px, 4.6vw, 64px); }
.cta-band__action p { margin: 0 0 26px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.6; }

/* Contact */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(520px, 1.02fr); gap: 100px; align-items: start; }
.contact__intro { position: sticky; top: 118px; }
.contact__benefits { display: grid; gap: 14px; margin: 34px 0 42px; padding: 0; list-style: none; }
.contact__benefits li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.contact__benefits svg { width: 20px; height: 20px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; }
.contact__details { display: grid; border-top: 1px solid var(--line); }
.contact__details > * { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact__details svg { width: 22px; height: 22px; fill: none; stroke: var(--orange); stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.contact__details span { display: grid; gap: 2px; font-size: 15px; font-weight: 600; }
.contact__details small { color: var(--ink-3); font-size: 10px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.contact-form { padding: 44px; background: var(--paper); border-top: 5px solid var(--orange); }
.form-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.form-heading > span { display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); background: var(--ink); font-size: 12px; font-weight: 700; }
.form-heading div { display: grid; gap: 3px; }
.form-heading strong { font-size: 18px; }
.form-heading small { color: var(--ink-3); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 18px; }
.form-grid label { display: grid; gap: 9px; color: var(--ink-2); font-size: 12px; font-weight: 650; }
.form-grid__wide { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(24,33,38,.22);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-grid textarea { min-height: 135px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(212,90,42,.11); }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #8a9295; }
.form-consent { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; font-size: 11px !important; font-weight: 450 !important; line-height: 1.5; }
.form-consent input { width: 18px !important; min-height: 18px !important; margin-top: 2px; accent-color: var(--orange); }
.form-consent a { color: var(--orange-dark); text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 24px; margin: 16px 0 0; color: var(--ink-3); font-size: 12px; text-align: center; }

/* Footer */
.site-footer { color: var(--white); background: #0e1518; }
.site-footer__top { display: grid; grid-template-columns: minmax(320px, 1.6fr) 1fr 1fr; gap: 80px; padding: 84px 0 70px; }
.site-footer__brand img { width: 250px; }
.site-footer__brand p { max-width: 440px; margin: 28px 0 0; color: rgba(255,255,255,.53); font-size: 15px; line-height: 1.65; }
.site-footer__column { display: grid; align-content: start; gap: 11px; color: rgba(255,255,255,.56); font-size: 13px; }
.site-footer__column strong { margin-bottom: 10px; color: #f29a72; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.site-footer__column a:hover { color: var(--white); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 0 26px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 11px; }
.site-footer__bottom div { display: flex; gap: 22px; }
.site-footer__bottom a:hover { color: var(--white); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Focus */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 44px, 1080px); }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 12px; }
  .button--header { display: none; }
  .question-grid { grid-template-columns: repeat(2, 1fr); }
  .proposition__grid { grid-template-columns: 1fr 1fr; gap: 54px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .control-grid { grid-template-columns: repeat(2, 1fr); }
  .project { grid-template-columns: 1.05fr .95fr; }
  .project__content { padding: 38px; }
  .contact__grid { grid-template-columns: .8fr 1.2fr; gap: 54px; }
}

@media (max-width: 840px) {
  :root { --shell: min(100% - 34px, 760px); --header-h: 82px; }
  html { scroll-padding-top: 82px; }
  .section { padding: 92px 0; }
  .contact-strip { display: none; }
  .nav-bar { height: 82px; }
  .brand { width: 178px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 22px var(--shell) 34px;
    color: var(--white);
    background: rgba(14,21,24,.99);
    border-top: 1px solid rgba(255,255,255,.12);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; }
  .main-nav a::after { display: none; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }
  .hero { min-height: 780px; height: 100svh; }
  .hero-slide__shade { background: linear-gradient(90deg, rgba(8,13,15,.91), rgba(8,13,15,.62) 70%, rgba(8,13,15,.35)); }
  .hero-slide__content { padding-bottom: 100px; }
  .hero-slide h1, .hero-slide__title { font-size: clamp(43px, 9vw, 68px); }
  .hero-slide__lead { max-width: 620px; font-size: 18px; }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-strip__grid > div { border-bottom: 1px solid rgba(255,255,255,.24); }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .section-heading--split > p { max-width: 650px; }
  .proposition__grid { grid-template-columns: 1fr; }
  .proposition__visual, .proposition__visual img { min-height: 520px; height: 520px; }
  .proposition__copy { max-width: none; }
  .method-note { align-items: flex-start; flex-direction: column; }
  .method-note span { text-align: left; }
  .project { grid-template-columns: 1fr; }
  .project__media, .project__gallery { min-height: 480px; }
  .project__content { padding: 46px 34px; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__intro { position: static; }
  .site-footer__top { grid-template-columns: 1.5fr 1fr 1fr; gap: 38px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 28px); }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .proposition h2, .contact h2, .cta-band h2 { font-size: clamp(36px, 11vw, 50px); }
  .brand { width: 158px; }
  .nav-bar__inner { gap: 16px; }
  .hero { min-height: 720px; max-height: none; }
  .hero-slide__content { justify-content: flex-end; padding-top: 130px; padding-bottom: 118px; }
  .hero-slide h1, .hero-slide__title { font-size: clamp(40px, 12vw, 56px); line-height: .98; }
  .hero-slide__lead { margin-top: 22px; font-size: 16px; line-height: 1.55; }
  .hero-slide__actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 28px; }
  .hero-slide__scope { display: none; }
  .hero-controls { bottom: 20px; }
  .proof-strip__grid { grid-template-columns: 1fr; }
  .proof-strip__grid > div { min-height: 64px; padding: 14px 16px; border-right: 1px solid rgba(255,255,255,.24); }
  .question-grid { grid-template-columns: 1fr; }
  .question-card { min-height: 190px; padding: 24px; }
  .question-card h3 { margin-top: 34px; }
  .recognition-callout { min-height: 240px; padding: 34px 24px; }
  .proposition__visual, .proposition__visual img { min-height: 390px; height: 390px; }
  .proposition__result { left: 14px; right: 14px; bottom: 14px; padding: 18px; }
  .proposition__result strong { font-size: 19px; }
  .method-grid, .control-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 390px; }
  .project__media, .project__gallery { min-height: 360px; }
  .project__gallery { grid-template-columns: 1fr; grid-template-rows: 2fr 1fr; }
  .project__gallery-secondary { padding: 10px; }
  .project__content { padding: 34px 24px; }
  .project__data { grid-template-columns: 1fr; }
  .project__data div, .project__data div + div { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .project__data div:last-child { border-bottom: 0; }
  .cta-band { padding: 70px 0; }
  .contact-form { padding: 30px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__wide { grid-column: auto; }
  .site-footer__top { grid-template-columns: 1fr; gap: 38px; padding: 62px 0 48px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

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

/* ARBIQ v2 refinements */
.brand {
  width: 238px;
  display: grid;
  gap: 3px;
  align-content: center;
}
.brand__wordmark { width: 100%; height: auto; }
.brand__descriptor {
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .1em;
}
.language-switch a { color: rgba(255,255,255,.48); }
.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a.is-active { color: var(--white); }
.language-switch--mobile { display: none; }
.hero-slide__image--office { object-position: 68% 48%; }
.hero-slide__image--team { object-position: 52% 45%; }
.hero-slide__image--workshop { object-position: 50% 52%; }
.method-card { min-height: 360px; }
.method-card__top { justify-content: flex-start; }
.method-card h3 { margin-top: 52px; }
.experience__privacy {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -22px 0 42px;
  color: var(--ink-3);
  font-size: 12px;
}
.experience__privacy span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-weight: 800;
}
.project__gallery--photos { grid-template-columns: minmax(0, 1fr) 28%; }
.project__gallery--photos .project__gallery-main,
.project__gallery--photos .project__gallery-secondary {
  padding: 0;
  object-fit: cover !important;
  background: var(--paper-2);
}
.project__gallery--photos .project__gallery-secondary {
  border-left: 4px solid var(--ink);
}
.project--workshop { grid-template-columns: minmax(0, 1.28fr) minmax(380px, .72fr); }
.footer-brand-lockup {
  width: 270px;
  display: grid;
  gap: 6px;
}
.footer-brand-lockup img { width: 100%; }
.footer-brand-lockup span {
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
}
.cookie-banner {
  position: fixed;
  z-index: 300;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1120px, calc(100vw - 48px));
  margin-inline: auto;
  padding: 20px 22px;
  color: var(--white);
  background: rgba(14,21,24,.98);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.cookie-banner.is-visible { display: grid; }
.cookie-banner__copy p { max-width: 760px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.55; }
.cookie-banner__copy a { display: inline-block; margin-top: 6px; color: #f29a72; font-size: 12px; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
.button--cookie-secondary { color: var(--white); background: transparent; border-color: rgba(255,255,255,.36); }
.button--cookie-secondary:hover,
.button--cookie-secondary:focus-visible { color: var(--white); background: rgba(255,255,255,.08); border-color: var(--white); }

@media (max-width: 1120px) {
  .brand { width: 216px; }
  .brand__descriptor { font-size: 8.7px; }
}

@media (max-width: 840px) {
  .brand { width: 196px; }
  .brand__descriptor { font-size: 8px; letter-spacing: .15em; }
  .language-switch--mobile { display: inline-flex; margin-left: auto; }
  .nav-toggle { margin-left: 0; }
  .project__gallery--photos { grid-template-columns: minmax(0, 1fr) 30%; grid-template-rows: 1fr; }
  .project--workshop { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner__actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .brand { width: 160px; }
  .brand__descriptor { font-size: 7px; letter-spacing: .12em; }
  .language-switch--mobile { gap: 5px; font-size: 9px; }
  .hero-slide__image--office { object-position: 69% 50%; }
  .hero-slide__image--team { object-position: 47% 50%; }
  .method-card { min-height: 315px; }
  .project__gallery--photos { grid-template-columns: 1fr; grid-template-rows: minmax(280px, 2fr) minmax(150px, 1fr); }
  .project__gallery--photos .project__gallery-secondary { border-left: 0; border-top: 4px solid var(--ink); }
  .experience__privacy { margin-top: -12px; align-items: flex-start; }
  .footer-brand-lockup { width: 230px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: calc(100vw - 24px); padding: 18px; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-banner .button { min-height: 46px; padding: 11px 13px; font-size: 12px; }
}


/* ARBIQ v3 · family alignment with URBIQ */
:root {
  --ink: #182126;
  --ink-2: #263137;
  --ink-3: #566168;
  --paper: #F4F2ED;
  --paper-2: #EAE7E0;
  --orange: #B75B3B;
  --orange-dark: #8F4128;
  --orange-soft: #E7C5B8;
  --urbiq-blue: #005677;
  --line: rgba(24,33,38,.14);
  --shadow: 0 24px 64px rgba(18,28,33,.12);
}
::selection { background: var(--urbiq-blue); }
.eyebrow { color: var(--orange); }
.eyebrow--light { color: #E7A58B; }
.button { border-color: var(--orange); background: var(--orange); }
.button:hover,.button:focus-visible { background: var(--orange-dark); border-color: var(--orange-dark); }
.text-link:hover,.text-link:focus-visible { color: var(--orange); }

/* Header: editorial and lighter, closer to URBIQ without losing ARBIQ's own palette */
.contact-strip { background: #172126; }
.contact-strip__label { color: #E7A58B; font-weight: 650; letter-spacing: .12em; }
.contact-strip__links svg { stroke: #E7A58B; }
.nav-bar { background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { width: 224px; display:block; }
.brand__lockup { width:100%; height:auto; }
.main-nav a { color: var(--ink-3); }
.main-nav a:hover,.main-nav a:focus-visible { color: var(--ink); }
.main-nav a::after { background: var(--orange); }
.language-switch--mobile { color: var(--ink-3); }
.language-switch--mobile a { color: var(--ink-3); }
.language-switch--mobile a:hover,.language-switch--mobile a:focus-visible,.language-switch--mobile a.is-active { color: var(--urbiq-blue); }
.nav-toggle { color: var(--ink); border-color: var(--line); }
.button--header { color:#fff; }

/* Hero: direct commercial copy inside a calm editorial panel */
.hero { min-height: 760px; background: var(--paper); }
.hero-slide__shade { background: linear-gradient(90deg, rgba(244,242,237,.34), rgba(24,33,38,.03) 60%, rgba(24,33,38,.16)); }
.hero-slide__shade::after { background: linear-gradient(180deg, rgba(0,0,0,.12), transparent 34%, rgba(0,0,0,.18)); }
.hero-slide__shade--strong { background: linear-gradient(90deg, rgba(244,242,237,.32), rgba(24,33,38,.04) 60%, rgba(24,33,38,.18)); }
.hero-slide__content { padding-top: var(--header-h); padding-bottom: 104px; }
.hero-panel {
  width: min(760px, 74vw);
  padding: 48px 52px 46px;
  color: var(--ink);
  background: rgba(250,250,248,.94);
  border-left: 5px solid var(--orange);
  box-shadow: 0 24px 70px rgba(10,22,28,.16);
  backdrop-filter: blur(8px);
}
.hero-panel .eyebrow--light { color: var(--orange); }
.hero-slide h1,.hero-slide__title { max-width: 690px; color: var(--ink); font-size: clamp(46px,5.3vw,76px); font-weight: 560; line-height:.97; }
.hero-slide__lead { max-width: 650px; margin-top: 24px; color: var(--ink-3); font-size: clamp(17px,1.7vw,21px); }
.hero-slide__actions { margin-top: 30px; }
.hero-panel .text-link--light { color: var(--ink); }
.hero-slide__scope { margin-top: 30px; color: var(--urbiq-blue); }
.hero-controls { width:auto; padding: 5px 12px 3px; background:rgba(255,255,255,.88); box-shadow:0 10px 30px rgba(0,0,0,.08); backdrop-filter:blur(8px); }
.hero-control,.hero-pause { color: var(--ink-3); }
.hero-control::after { background: rgba(24,33,38,.2); }
.hero-control.is-active,.hero-pause:hover { color: var(--ink); }

/* Proof and recognition */
.proof-strip { color: var(--ink); background: #fff; border-top: 3px solid var(--urbiq-blue); border-bottom:1px solid var(--line); }
.proof-strip__grid > div,.proof-strip__grid > div:last-child { border-color: var(--line); }
.proof-strip__grid span { color: var(--orange); opacity:1; font-weight:700; }
.situation { background:#fff; }
.question-card { background:var(--paper); }
.question-card:hover { color:#fff; background:var(--urbiq-blue); box-shadow:var(--shadow); }
.question-card:hover span { color:#E7A58B; }
.recognition-callout { background:var(--urbiq-blue); }
.recognition-callout strong { color:#F0B49D; }

/* Proposition */
.proposition { background: var(--paper); }
.proposition__visual { box-shadow:var(--shadow); }
.proposition__result { background:rgba(0,86,119,.90); }
.proposition__result span { color:#F0B49D; }

/* Method: systematic, clear and non-secretive */
.method { color:var(--ink); background:var(--paper); }
.method__q { right:-80px; top:-70px; width:470px; opacity:.055; filter:none; transform:rotate(-7deg); }
.section-heading--light h2 { color:var(--ink); }
.section-heading--light > p,.section-heading--light > div + p { color:var(--ink-3); }
.method-grid { border-color:var(--line); gap:18px; border:0; }
.method-card { min-height:350px; padding:30px; color:var(--ink); background:#fff; border:1px solid var(--line); box-shadow:0 10px 28px rgba(18,28,33,.04); }
.method-card:hover { background:#fff; transform:translateY(-5px); box-shadow:var(--shadow); }
.method-card__top { border-color:var(--line); }
.method-card__top span { color:var(--orange); }
.method-card h3 { color:var(--ink); }
.method-card > p { color:var(--ink-3); }
.method-note { border-color:var(--line); }
.method-note span { color:var(--ink-3); }

/* Control and experience */
.control-card { background:#fff; border:1px solid var(--line); border-top:3px solid var(--urbiq-blue); }
.control-card span { color:var(--orange); }
.experience { background:var(--paper); }
.project { color:var(--ink); background:#fff; border:1px solid var(--line); box-shadow:var(--shadow); }
.project__gallery--photos .project__gallery-secondary { border-color:#fff; }
.project__content { border-left:1px solid var(--line); }
.project__kicker { color:var(--orange); }
.project h3 { color:var(--ink); }
.project__content > p:not(.project__kicker):not(.project__credit) { color:var(--ink-3); }
.project__data { border-color:var(--line); }
.project__data div { border-color:var(--line); }
.project__data dt { color:var(--urbiq-blue); }
.project__data dd { color:var(--ink-3); }
.project__credit { color:#7A8489; }

/* CTA and contact */
.cta-band { background:var(--urbiq-blue); }
.cta-band .eyebrow--light { color:#F0B49D; }
.cta-band__action p { color:rgba(255,255,255,.72); }
.cta-band .button--light { color:#fff; background:var(--orange); border-color:var(--orange); }
.cta-band .button--light:hover,.cta-band .button--light:focus-visible { background:transparent; border-color:#fff; }
.contact-form { border-top-color:var(--urbiq-blue); }
.form-heading > span { background:var(--urbiq-blue); }
.contact__details svg { stroke:var(--orange); }
.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus { box-shadow:0 0 0 3px rgba(183,91,59,.12); }

/* Footer and cookie layer */
.site-footer { background:#121B20; }
.footer-brand-lockup { width:285px; }
.footer-brand-lockup img { width:100%; }
.site-footer__column strong { color:#E7A58B; }
.cookie-banner__copy a { color:#E7A58B; }

@media (max-width:1120px){
  .brand{width:205px}.hero-panel{width:min(700px,72vw);padding:42px 44px}
}
@media (max-width:840px){
  .brand{width:188px}.main-nav{color:var(--ink);background:rgba(255,255,255,.99);border-top:1px solid var(--line)}
  .main-nav a{color:var(--ink);border-bottom:1px solid var(--line)}
  .hero-panel{width:min(650px,88vw);padding:38px 40px}.hero-slide__shade{background:linear-gradient(90deg,rgba(244,242,237,.22),rgba(24,33,38,.08))}
  .project__content{border-left:0;border-top:1px solid var(--line)}
}
@media (max-width:620px){
  .brand{width:152px}.hero{min-height:760px}.hero-slide__content{justify-content:flex-end;padding-top:120px;padding-bottom:104px}
  .hero-panel{width:100%;padding:28px 24px 30px;background:rgba(250,250,248,.95);border-left:4px solid var(--orange)}
  .hero-slide h1,.hero-slide__title{font-size:clamp(36px,10.7vw,50px)}
  .hero-controls{bottom:14px;max-width:calc(100vw - 28px);overflow:hidden}.hero-control{width:58px}
  .proof-strip__grid > div{border-color:var(--line)}
  .method-card{min-height:280px}.footer-brand-lockup{width:240px}
}

/* Progressive enhancement: content remains visible without JavaScript */
.reveal{opacity:1;transform:none}
.js .reveal{opacity:0;transform:translateY(26px)}
.js .reveal.is-visible{opacity:1;transform:translateY(0)}


/* ========================================================================== 
   ARBIQ V4 · SEO architecture and national scope
   ========================================================================== */
.main-nav a.is-active { color: var(--ink); }
.main-nav a.is-active::after { transform: scaleX(1); }
.hero-slide h1 { font-size: clamp(42px, 4.6vw, 66px); line-height: 1.02; }
.hero-emotional { max-width: 650px; margin: 22px 0 -4px; color: var(--urbiq-blue); font-size: clamp(18px, 2vw, 25px); font-weight: 650; letter-spacing: -.018em; line-height: 1.25; }
.hero-panel { width: min(820px, 78vw); }
.hero-panel .text-link { color: var(--ink); }
.method-link, .section-action { margin: 34px 0 0; }
.section-action { text-align: center; }

.breadcrumbs { display:flex; gap:10px; align-items:center; padding-top: calc(var(--header-h) + 26px); padding-bottom:18px; color:var(--ink-3); font-size:12px; }
.breadcrumbs a { color:var(--urbiq-blue); }
.breadcrumbs a:hover { text-decoration:underline; }
.breadcrumbs > span[aria-hidden] { opacity:.35; }
.page-hero { position:relative; min-height:560px; display:flex; align-items:flex-end; overflow:hidden; color:var(--ink); background:var(--paper); }
.breadcrumbs + .page-hero { min-height:500px; }
.page-hero__media { position:absolute; inset:0; }
.page-hero__media img { width:100%; height:100%; object-fit:cover; }
.page-hero__overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(244,242,237,.96) 0%, rgba(244,242,237,.88) 43%, rgba(244,242,237,.2) 80%); }
.page-hero__inner { position:relative; z-index:2; padding-top:100px; padding-bottom:86px; }
.page-hero__inner h1 { max-width:950px; margin:0; font-size:clamp(48px,6vw,86px); font-weight:560; letter-spacing:-.052em; line-height:.98; }
.page-hero__lead { max-width:780px; margin:28px 0 0; color:var(--ink-3); font-size:clamp(18px,2vw,24px); line-height:1.55; }
.page-hero--image .page-hero__inner { width:100%; }
.page-hero--image .page-hero__inner h1, .page-hero--image .page-hero__lead { max-width:760px; }

.service-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.service-card { min-height:360px; display:flex; flex-direction:column; padding:28px; background:#fff; border:1px solid var(--line); border-top:3px solid var(--orange); transition:transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.service-card > span { color:var(--urbiq-blue); font-size:13px; font-weight:750; }
.service-card h3 { margin:38px 0 16px; font-size:28px; font-weight:580; letter-spacing:-.03em; line-height:1.06; }
.service-card > p, .service-card div > p { color:var(--ink-3); line-height:1.65; }
.service-card .text-link { margin-top:auto; }
.service-card--large { min-height:520px; display:grid; grid-template-columns:42px 1fr; gap:20px; }
.service-card--large h2 { margin:12px 0 18px; font-size:33px; font-weight:580; letter-spacing:-.035em; line-height:1.05; }
.service-card__kicker { color:var(--orange)!important; font-size:11px; font-weight:750; text-transform:uppercase; letter-spacing:.13em; }
.service-card--large ul { display:grid; gap:8px; margin:24px 0 30px; padding:0; list-style:none; }
.service-card--large li { padding-left:18px; position:relative; color:var(--ink-3); font-size:13px; }
.service-card--large li::before { content:'—'; position:absolute; left:0; color:var(--orange); }
.service-grid--directory { grid-template-columns:repeat(2,minmax(0,1fr)); }
.services-overview, .services-directory { background:var(--paper); }
.process-principles { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--line); background:#fff; }
.process-principles article { min-height:250px; padding:30px; border-right:1px solid var(--line); }
.process-principles article:last-child { border-right:0; }
.process-principles span { color:var(--orange); font-weight:720; }
.process-principles h3 { margin:52px 0 14px; font-size:26px; letter-spacing:-.025em; }
.process-principles p { color:var(--ink-3); line-height:1.6; }

.two-column-copy { display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.1fr); gap:100px; }
.two-column-copy h2 { max-width:520px; margin:0; font-size:clamp(38px,4.8vw,66px); font-weight:560; letter-spacing:-.045em; line-height:1; }
.two-column-copy .lead { margin-top:0; font-size:23px; line-height:1.55; }
.two-column-copy > div:last-child p:not(.lead) { color:var(--ink-3); line-height:1.7; }
.service-includes { background:var(--paper); }
.numbered-list { margin:0; padding:0; list-style:none; border-top:1px solid var(--line); }
.numbered-list li { display:grid; grid-template-columns:90px 1fr; gap:28px; padding:26px 0; border-bottom:1px solid var(--line); }
.numbered-list li span { color:var(--orange); font-size:14px; font-weight:750; }
.numbered-list li p { max-width:900px; margin:0; font-size:18px; line-height:1.55; }
.outcomes { background:#fff; }
.outcomes-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.outcomes-grid article { min-height:190px; display:flex; flex-direction:column; justify-content:space-between; padding:24px; background:var(--paper); border-top:3px solid var(--urbiq-blue); }
.outcomes-grid svg { width:28px; height:28px; fill:none; stroke:var(--orange); stroke-width:1.7; }
.outcomes-grid strong { font-size:21px; line-height:1.15; }
.when-callout { margin-top:48px; padding:38px 42px; color:#fff; background:var(--urbiq-blue); }
.when-callout .eyebrow { color:#f0b49d; }
.when-callout > p:last-child { max-width:980px; margin:0; font-size:23px; line-height:1.45; }
.faq-section { background:var(--paper); }
.faq-list { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item summary { display:flex; justify-content:space-between; gap:30px; cursor:pointer; padding:25px 0; font-size:20px; font-weight:620; list-style:none; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary span { color:var(--orange); font-size:24px; transition:transform .2s ease; }
.faq-item[open] summary span { transform:rotate(45deg); }
.faq-item > div { max-width:850px; padding:0 0 26px; color:var(--ink-3); line-height:1.7; }
.related-section { background:#fff; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.related-card { min-height:210px; display:grid; grid-template-rows:auto 1fr auto; padding:24px; background:var(--paper); border:1px solid var(--line); transition:transform .2s ease, background .2s ease; }
.related-card:hover { transform:translateY(-4px); background:#fff; box-shadow:var(--shadow); }
.related-card span { color:var(--orange); font-size:11px; font-weight:750; letter-spacing:.1em; text-transform:uppercase; }
.related-card strong { align-self:center; font-size:22px; line-height:1.2; }
.related-card svg { width:22px; height:22px; fill:none; stroke:var(--urbiq-blue); stroke-width:1.7; justify-self:end; }

.method-journey { background:var(--paper); }
.method-detail { display:grid; grid-template-columns:150px minmax(0,1fr); gap:60px; padding:65px 0; border-bottom:1px solid var(--line); }
.method-detail:first-child { border-top:1px solid var(--line); }
.method-detail__number { color:var(--orange); font-size:72px; font-weight:530; line-height:1; }
.method-detail h2 { max-width:760px; margin:8px 0 32px; font-size:clamp(32px,4vw,58px); font-weight:560; letter-spacing:-.04em; line-height:1.05; }
.method-detail ul { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 24px; margin:0; padding:0; list-style:none; border-top:1px solid var(--line); }
.method-detail li { padding:15px 0; border-bottom:1px solid var(--line); color:var(--ink-3); }
.decisions { background:#fff; }
.decision-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.decision-grid article { min-height:280px; padding:26px; color:#fff; background:var(--ink); border-top:3px solid var(--orange); }
.decision-grid span { color:#f0b49d; font-size:13px; font-weight:750; }
.decision-grid h3 { margin:70px 0 18px; font-size:26px; }
.decision-grid p { color:rgba(255,255,255,.65); line-height:1.6; }

.case-preview-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.case-preview { position:relative; min-height:560px; overflow:hidden; background:var(--ink); color:#fff; box-shadow:var(--shadow); }
.case-preview img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.case-preview::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 38%,rgba(10,18,22,.9)); }
.case-preview:hover img { transform:scale(1.025); }
.case-preview > div { position:absolute; z-index:2; left:28px; right:28px; bottom:28px; }
.case-preview p { margin:0 0 10px; color:#f0b49d; font-size:11px; text-transform:uppercase; letter-spacing:.13em; }
.case-preview h3 { max-width:620px; margin:0 0 14px; font-size:30px; line-height:1.1; }
.case-preview span { color:rgba(255,255,255,.65); font-size:13px; }
.privacy-note { display:flex; gap:14px; align-items:center; margin-bottom:42px; padding:18px 22px; background:var(--paper); border:1px solid var(--line); }
.privacy-note span { display:grid; place-items:center; width:26px; height:26px; flex:0 0 auto; border-radius:50%; color:#fff; background:var(--urbiq-blue); font-weight:750; }
.privacy-note p { margin:0; color:var(--ink-3); font-size:13px; }
.case-feature { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(400px,.9fr); margin-bottom:54px; background:#fff; border:1px solid var(--line); box-shadow:var(--shadow); }
.case-feature__media { position:relative; min-height:620px; }
.case-feature__media img { width:100%; height:100%; object-fit:cover; }
.case-feature__media span { position:absolute; left:24px; top:24px; padding:10px 12px; color:#fff; background:var(--orange); font-size:10px; font-weight:750; letter-spacing:.1em; text-transform:uppercase; }
.case-feature__copy { padding:52px 46px; }
.case-feature__copy h2 { margin:0 0 22px; font-size:46px; font-weight:560; letter-spacing:-.04em; line-height:1.02; }
.case-feature__copy .lead { color:var(--ink-3); font-size:19px; line-height:1.6; }
.case-feature dl { display:grid; grid-template-columns:repeat(2,1fr); margin:34px 0; border-top:1px solid var(--line); border-left:1px solid var(--line); }
.case-feature dl div { padding:16px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.case-feature dt { color:var(--urbiq-blue); font-size:10px; font-weight:750; text-transform:uppercase; letter-spacing:.08em; }
.case-feature dd { margin:6px 0 0; font-weight:650; }
.expertise { background:var(--paper); }
.expertise-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.expertise-grid article { min-height:300px; padding:25px; background:#fff; border-top:3px solid var(--urbiq-blue); }
.expertise-grid span { color:var(--orange); }
.expertise-grid h3 { margin:70px 0 16px; font-size:24px; }
.expertise-grid p { color:var(--ink-3); line-height:1.6; }
.case-data { padding:38px 0; background:#fff; }
.case-facts { display:grid; grid-template-columns:repeat(4,1fr); margin:0; border:1px solid var(--line); }
.case-facts div { padding:20px; border-right:1px solid var(--line); }
.case-facts div:last-child { border-right:0; }
.case-facts dt { color:var(--urbiq-blue); font-size:10px; font-weight:750; text-transform:uppercase; letter-spacing:.08em; }
.case-facts dd { margin:6px 0 0; font-size:18px; font-weight:650; }
.case-credit { margin:18px 0 0; color:var(--ink-3); font-size:12px; }
.case-story { background:var(--paper); }
.case-story__grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:100px; }
.case-story h2 { max-width:600px; margin:0; font-size:clamp(40px,5vw,68px); font-weight:560; letter-spacing:-.045em; line-height:1; }
.case-story .lead { font-size:22px; line-height:1.65; }
.case-gallery { display:grid; grid-template-columns:minmax(0,1.8fr) minmax(280px,.55fr); min-height:720px; background:var(--ink); }
.case-gallery > div { overflow:hidden; }
.case-gallery img { width:100%; height:100%; object-fit:cover; }
.case-gallery > div + div { border-left:6px solid #fff; }
.case-work { background:#fff; }
.case-result { color:#fff; background:var(--urbiq-blue); }
.case-result .eyebrow { color:#f0b49d; }
.case-result p:last-child { max-width:1000px; margin:0; font-size:clamp(30px,4vw,56px); letter-spacing:-.035em; line-height:1.15; }

.national-scope { background:#fff; }
.national-scope__grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,.7fr); gap:100px; align-items:center; }
.national-scope h2 { margin:0 0 26px; font-size:clamp(42px,5vw,70px); font-weight:560; letter-spacing:-.045em; line-height:1; }
.national-scope .lead { color:var(--ink-3); font-size:21px; line-height:1.6; }
.national-scope__map { min-height:430px; display:flex; flex-direction:column; justify-content:flex-end; padding:38px; color:#fff; background:var(--urbiq-blue); position:relative; overflow:hidden; }
.national-scope__map::before { content:'Q'; position:absolute; right:-40px; top:-90px; color:rgba(255,255,255,.06); font-size:360px; font-weight:700; }
.national-scope__map > span { position:absolute; left:34px; top:30px; color:#f0b49d; font-size:72px; font-weight:650; }
.national-scope__map strong { position:relative; font-size:30px; line-height:1.1; }
.national-scope__map ul { position:relative; display:grid; gap:9px; margin:22px 0 0; padding:0; list-style:none; color:rgba(255,255,255,.7); }
.knowledge-preview { background:var(--paper); }
.knowledge-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.knowledge-card { min-height:370px; display:flex; flex-direction:column; padding:28px; background:#fff; border-top:3px solid var(--orange); }
.knowledge-card__meta { color:var(--urbiq-blue)!important; font-size:11px; font-weight:730; text-transform:uppercase; letter-spacing:.08em; }
.knowledge-card h3 { margin:45px 0 17px; font-size:29px; letter-spacing:-.03em; line-height:1.08; }
.knowledge-card > p { color:var(--ink-3); line-height:1.65; }
.knowledge-card .text-link { margin-top:auto; }
.family-band { background:#fff; }
.family-band__grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:100px; align-items:center; }
.family-band__grid > div:first-child { padding:45px; background:var(--paper); }
.family-band__grid img { width:100%; height:auto; }
.family-band h2 { margin:0 0 20px; font-size:clamp(36px,4.5vw,62px); font-weight:560; letter-spacing:-.04em; line-height:1.03; }
.family-band p { color:var(--ink-3); font-size:18px; line-height:1.65; }
.family-band__links { display:flex; flex-wrap:wrap; gap:24px; margin-top:28px; }

.brand-architecture { background:var(--paper); }
.brand-architecture__q { display:grid; grid-template-columns:180px 1fr; gap:50px; align-items:center; max-width:900px; margin-bottom:70px; }
.brand-architecture__q img { width:180px; height:180px; object-fit:contain; }
.brand-architecture__q p { color:var(--ink-3); font-size:22px; line-height:1.55; }
.brand-architecture__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.brand-architecture__card { min-height:420px; display:flex; flex-direction:column; padding:38px; background:#fff; border-top:5px solid var(--urbiq-blue); }
.brand-architecture__card--arbiq { border-color:var(--orange); }
.brand-architecture__card h2 { margin:48px 0 20px; font-size:64px; font-weight:520; letter-spacing:-.05em; }
.brand-architecture__card p { color:var(--ink-3); font-size:18px; line-height:1.65; }
.brand-architecture__card .text-link { margin-top:auto; }
.founder-band { background:#fff; }
.founder-band__grid { display:grid; grid-template-columns:1.2fr .6fr; gap:100px; align-items:center; }
.founder-band h2 { margin:0 0 22px; font-size:clamp(40px,5vw,68px); font-weight:560; letter-spacing:-.045em; line-height:1; }
.founder-band p { color:var(--ink-3); font-size:19px; line-height:1.7; }
.founder-band__mark { min-height:360px; display:grid; place-items:center; padding:30px; color:#fff; background:var(--urbiq-blue); text-align:center; }
.founder-band__mark span { font-size:180px; font-weight:650; line-height:.8; }
.founder-band__mark small { color:#f0b49d; text-transform:uppercase; letter-spacing:.12em; }
.profile { background:var(--paper); }
.profile__grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:100px; }
.profile h2 { margin:0; font-size:clamp(40px,5vw,68px); font-weight:560; letter-spacing:-.045em; line-height:1; }
.profile .lead { margin-top:0; font-size:23px; line-height:1.6; }
.profile__grid > div:last-child p:not(.lead) { color:var(--ink-3); line-height:1.7; }
.principles-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:70px; }
.principles-grid article { min-height:270px; padding:25px; background:#fff; border-top:3px solid var(--orange); }
.principles-grid span { color:var(--urbiq-blue); }
.principles-grid h3 { margin:60px 0 15px; font-size:24px; }
.principles-grid p { color:var(--ink-3); line-height:1.55; }
.authority-links { background:#fff; }
.authority-links__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.authority-links__grid a { min-height:280px; display:grid; grid-template-columns:1fr auto; align-content:end; gap:14px; padding:34px; color:#fff; background:var(--urbiq-blue); }
.authority-links__grid a + a { background:var(--orange); }
.authority-links__grid strong { grid-column:1; font-size:48px; }
.authority-links__grid span { grid-column:1; color:rgba(255,255,255,.75); }
.authority-links__grid svg { grid-column:2; grid-row:1/3; align-self:end; width:28px; height:28px; fill:none; stroke:#fff; stroke-width:1.6; }

.knowledge-categories { padding:28px 0; background:#fff; border-bottom:1px solid var(--line); }
.knowledge-categories .shell { display:grid; grid-template-columns:repeat(4,1fr); }
.knowledge-categories article { display:grid; gap:6px; padding:12px 22px; border-right:1px solid var(--line); }
.knowledge-categories article:last-child { border-right:0; }
.knowledge-categories span { color:var(--orange); font-size:11px; }
.knowledge-categories strong { font-size:18px; }
.knowledge-categories small { color:var(--ink-3); }
.article-directory { background:var(--paper); }
.article-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.article-card { overflow:hidden; background:#fff; border:1px solid var(--line); box-shadow:0 14px 36px rgba(18,28,33,.06); }
.article-card__image { display:block; height:360px; overflow:hidden; }
.article-card__image img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.article-card:hover .article-card__image img { transform:scale(1.025); }
.article-card > div { padding:30px; }
.article-card__meta { color:var(--orange)!important; font-size:11px; font-weight:750; text-transform:uppercase; letter-spacing:.08em; }
.article-card h2 { margin:24px 0 16px; font-size:34px; letter-spacing:-.035em; line-height:1.08; }
.article-card > div > p { color:var(--ink-3); line-height:1.65; }
.editorial-author { background:#fff; }
.editorial-author__grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; }
.editorial-author h2 { margin:0; font-size:clamp(40px,5vw,65px); font-weight:560; letter-spacing:-.04em; line-height:1; }
.editorial-author p { margin-top:0; color:var(--ink-3); font-size:20px; line-height:1.65; }
.article-body { background:#fff; }
.article-layout { display:grid; grid-template-columns:260px minmax(0,760px); gap:90px; justify-content:center; }
.article-aside { position:sticky; top:160px; align-self:start; display:grid; gap:22px; padding:24px; background:var(--paper); border-top:3px solid var(--urbiq-blue); }
.article-aside div { display:grid; gap:4px; }
.article-aside span { color:var(--ink-3); font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.article-aside strong, .article-aside a { color:var(--urbiq-blue); font-weight:650; }
.article-aside p { margin:0; color:var(--ink-3); font-size:12px; line-height:1.55; }
.article-content { font-size:18px; line-height:1.78; }
.article-intro { margin:0 0 50px; font-size:25px; font-weight:500; line-height:1.58; }
.article-content section { margin-bottom:52px; }
.article-content h2 { margin:0 0 22px; font-size:34px; font-weight:620; letter-spacing:-.025em; line-height:1.15; }
.article-content p { color:#39454b; }
.article-conclusion { margin-top:70px; padding:40px; color:#fff; background:var(--urbiq-blue); }
.article-conclusion .eyebrow { color:#f0b49d; }
.article-conclusion h2 { margin:0; font-size:35px; line-height:1.2; }

.legal-page { padding:70px 0 110px; background:var(--paper); }
.legal-page__inner { max-width:980px; }
.legal-page h1 { margin:0 0 40px; font-size:clamp(50px,7vw,86px); font-weight:560; letter-spacing:-.05em; }
.legal-data { display:grid; grid-template-columns:repeat(2,1fr); margin-bottom:60px; background:#fff; border:1px solid var(--line); }
.legal-data div { display:grid; gap:6px; padding:18px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.legal-data small { color:var(--urbiq-blue); text-transform:uppercase; letter-spacing:.08em; }
.legal-copy { max-width:820px; }
.legal-copy h2 { margin:46px 0 16px; font-size:28px; }
.legal-copy p, .legal-copy li { color:var(--ink-3); line-height:1.75; }
.legal-warning { padding:18px; background:#fff; border-left:3px solid var(--orange); }
.thanks-page { min-height:100vh; display:grid; place-items:center; padding:40px; background:var(--paper); text-align:center; }
.thanks-page > div { max-width:780px; }
.thanks-page img { width:300px; margin-bottom:50px; }
.thanks-page h1 { margin:0 0 20px; font-size:clamp(44px,7vw,78px); letter-spacing:-.05em; line-height:1; }
.thanks-page p { color:var(--ink-3); font-size:20px; }

@media (max-width: 1120px) {
  .service-grid, .knowledge-grid { grid-template-columns:repeat(2,1fr); }
  .case-feature { grid-template-columns:1fr; }
  .case-feature__media { min-height:520px; }
  .expertise-grid, .principles-grid, .outcomes-grid, .decision-grid { grid-template-columns:repeat(2,1fr); }
  .case-facts { grid-template-columns:repeat(2,1fr); }
  .case-facts div:nth-child(2) { border-right:0; }
  .case-facts div:nth-child(-n+2) { border-bottom:1px solid var(--line); }
}
@media (max-width: 840px) {
  .breadcrumbs { padding-top:calc(var(--header-h) + 12px); }
  .page-hero, .breadcrumbs + .page-hero { min-height:500px; }
  .page-hero__overlay { background:linear-gradient(90deg,rgba(244,242,237,.94),rgba(244,242,237,.75) 70%,rgba(244,242,237,.2)); }
  .page-hero__inner h1 { font-size:clamp(42px,9vw,68px); }
  .service-grid--directory, .case-preview-grid, .article-grid, .brand-architecture__grid, .authority-links__grid { grid-template-columns:1fr; }
  .process-principles { grid-template-columns:1fr; }
  .process-principles article { border-right:0; border-bottom:1px solid var(--line); }
  .process-principles article:last-child { border-bottom:0; }
  .two-column-copy, .case-story__grid, .national-scope__grid, .family-band__grid, .founder-band__grid, .profile__grid, .editorial-author__grid { grid-template-columns:1fr; gap:52px; }
  .method-detail { grid-template-columns:90px 1fr; gap:30px; }
  .method-detail__number { font-size:54px; }
  .case-gallery { grid-template-columns:1fr; grid-template-rows:minmax(480px,1fr) minmax(280px,.55fr); }
  .case-gallery > div + div { border-left:0; border-top:6px solid #fff; }
  .knowledge-categories .shell { grid-template-columns:repeat(2,1fr); }
  .knowledge-categories article:nth-child(2) { border-right:0; }
  .knowledge-categories article:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .article-layout { grid-template-columns:1fr; gap:40px; }
  .article-aside { position:static; grid-template-columns:repeat(3,1fr); }
  .brand-architecture__q { grid-template-columns:130px 1fr; }
  .brand-architecture__q img { width:130px; height:130px; }
}
@media (max-width: 620px) {
  .hero-panel { width:100%; }
  .hero-slide h1 { font-size:clamp(35px,10vw,48px); }
  .hero-emotional { font-size:17px; }
  .breadcrumbs { overflow-x:auto; white-space:nowrap; }
  .page-hero__inner { padding-top:72px; padding-bottom:60px; }
  .page-hero__inner h1 { font-size:clamp(38px,11vw,54px); }
  .page-hero__lead { font-size:17px; }
  .service-grid, .knowledge-grid, .outcomes-grid, .decision-grid, .expertise-grid, .principles-grid { grid-template-columns:1fr; }
  .service-card--large { grid-template-columns:34px 1fr; min-height:auto; }
  .service-card--large h2 { font-size:28px; }
  .numbered-list li { grid-template-columns:48px 1fr; gap:16px; }
  .numbered-list li p { font-size:16px; }
  .related-grid { grid-template-columns:1fr; }
  .method-detail { grid-template-columns:1fr; gap:22px; padding:46px 0; }
  .method-detail ul { grid-template-columns:1fr; }
  .case-preview { min-height:440px; }
  .case-feature__media { min-height:360px; }
  .case-feature__copy { padding:34px 24px; }
  .case-feature__copy h2 { font-size:36px; }
  .case-feature dl { grid-template-columns:1fr; }
  .case-facts { grid-template-columns:1fr; }
  .case-facts div { border-right:0!important; border-bottom:1px solid var(--line)!important; }
  .case-facts div:last-child { border-bottom:0!important; }
  .case-gallery { min-height:620px; grid-template-rows:minmax(360px,1fr) minmax(220px,.55fr); }
  .national-scope__map { min-height:360px; }
  .family-band__grid > div:first-child { padding:24px; }
  .brand-architecture__q { grid-template-columns:1fr; }
  .brand-architecture__q img { width:110px; height:110px; }
  .brand-architecture__card { min-height:340px; padding:28px; }
  .brand-architecture__card h2 { font-size:48px; }
  .founder-band__mark { min-height:280px; }
  .founder-band__mark span { font-size:130px; }
  .knowledge-categories .shell { grid-template-columns:1fr; }
  .knowledge-categories article { border-right:0; border-bottom:1px solid var(--line); }
  .article-card__image { height:260px; }
  .article-aside { grid-template-columns:1fr; }
  .article-content { font-size:16px; }
  .article-intro { font-size:21px; }
  .article-conclusion { padding:28px; }
  .article-conclusion h2 { font-size:28px; }
  .legal-data { grid-template-columns:1fr; }
}
