:root {
  --bg: #070304;
  --bg-soft: #12080a;
  --maroon: #7a1c28;
  --maroon-bright: #b23a48;
  --line: rgba(178, 58, 72, 0.45);
  --cream: #f3e6dc;
  --muted: rgba(243, 230, 220, 0.72);
  --white: #fff8f4;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: 8vw;
  --section-y: clamp(72px, 9vh, 110px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 0; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: Outfit, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea {
  font: inherit;
  color: inherit;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin: 0 0 0.6em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--gutter);
  color: #fff;
  pointer-events: none;
}
.site-header a,
.site-header button { pointer-events: auto; }
.brand {
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 500;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.news-pill,
.menu-toggle,
.overlay-close {
  background: none;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
}
.news-pill {
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 6px 12px;
}

.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(7, 3, 4, 0.97);
  display: grid;
  align-content: center;
  padding: var(--section-y) var(--gutter);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}
.overlay-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.overlay-top {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 28px var(--gutter);
}
.overlay-close {
  position: static;
}
.overlay-nav {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.overlay-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.overlay-list a {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 6vw, 72px);
  padding: 6px 0;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}
.overlay-list a:hover { opacity: 1; }
.overlay-menu.is-open .overlay-list li {
  animation: rise 0.7s var(--ease) both;
}
.overlay-menu.is-open .overlay-list li:nth-child(1) { animation-delay: 0.08s; }
.overlay-menu.is-open .overlay-list li:nth-child(2) { animation-delay: 0.16s; }
.overlay-menu.is-open .overlay-list li:nth-child(3) { animation-delay: 0.24s; }
.overlay-menu.is-open .overlay-list li:nth-child(4) { animation-delay: 0.32s; }
.overlay-list-sub a {
  font-size: clamp(22px, 3vw, 36px);
}

.side-brands {
  position: fixed;
  left: auto;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 35;
  display: grid;
  gap: 18px;
  text-align: right;
}
.side-brands a {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.7;
}
.side-brands a:hover { opacity: 1; color: var(--maroon-bright); }

.scroll-orb {
  position: fixed;
  right: var(--gutter);
  bottom: 28px;
  z-index: 36;
  width: 56px;
  height: 56px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}
.scroll-orb svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.orb-track { fill: none; stroke: rgba(243,230,220,0.2); stroke-width: 1.5; }
.orb-bar {
  fill: none;
  stroke: var(--maroon-bright);
  stroke-width: 1.5;
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
}

.intro-splash,
.hero-stage,
.statement,
.places {
  min-height: 100vh;
  position: relative;
}
.intro-splash {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}
.intro-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(72vw, 560px);
  color: #8d3a45;
  text-align: center;
  animation: introIn 1.6s var(--ease) both;
}
.mark-svg {
  width: 84px;
  height: 84px;
  margin-bottom: 22px;
}
.intro-word {
  width: 100%;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 4px 0 10px;
  letter-spacing: 0.22em;
  font-size: clamp(40px, 8vw, 88px);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-indent: 0.22em;
}
.scroll-hint {
  position: absolute;
  left: var(--gutter);
  bottom: 40px;
  background: none;
  border: 0;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  animation: hintPulse 2.4s var(--ease) infinite;
}

.hero-stage {
  background: #070304 url("../images/hero-city.jpg") center / cover no-repeat;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: slowZoom 28s ease-in-out infinite alternate;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,3,4,0.28), rgba(7,3,4,0.5));
}
.eyebrow,
.hero-kicker {
  position: relative;
  z-index: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 50%;
  padding: 28vh var(--gutter) 14vh;
}
.hero-slide { display: none; }
.hero-slide.is-active { display: block; animation: rise 0.9s var(--ease); }
.hero-copy h1 {
  font-size: 60px;
  line-height: 1;
  text-transform: none;
  margin-bottom: 14px;
}
.hero-copy p {
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.55;
  max-width: 540px;
  color: var(--muted);
}
.about-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 0;
}
.about-media { min-height: 420px; background-size: cover; background-position: center; }
.about-copy { padding: var(--section-y) var(--gutter); }
.home-blog .band-head { padding-left: 0; padding-right: 0; }
.hero-kicker {
  position: absolute;
  left: var(--gutter);
  bottom: 40px;
}

.statement,
.places,
.page-hero,
.service-item,
.project-tile,
.division-card::before,
.framework-media {
  background-size: cover;
  background-position: center;
}
.statement {
  display: flex;
  align-items: flex-end;
  padding: var(--section-y) var(--gutter);
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(243,230,220,0.18), rgba(243,230,220,0.55) 55%, rgba(243,230,220,0.78));
}
.statement-inner { position: relative; max-width: 920px; color: #3b1c22; }
.statement h1,
.divisions h2,
.places h2,
.esg h2,
.stats h2,
.voices h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  text-transform: uppercase;
}
.lede { font-size: clamp(18px, 2vw, 26px); max-width: 720px; }
.lede-more { max-width: 720px; }
.expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
}
.expand-btn::after {
  content: "";
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%233b1c22' stroke-width='1.4' d='M12 7v10M7 12h10'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.expand-btn.is-open::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%233b1c22' stroke-width='1.4' d='M7 12h10'/%3E%3C/svg%3E");
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
}
.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
}

.divisions,
.esg,
.stats,
.voices,
.page-block,
.faq-list,
.blog-wrap,
.contact-layout,
.project-gallery,
.team,
.split,
.service-stack {
  padding: var(--section-y) var(--gutter);
}
.divisions { background: #0d0608; }
.section-copy { max-width: 860px; margin-bottom: 48px; }
.division-list { display: grid; gap: 0; }
.division-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: end;
  min-height: 28vh;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  isolation: isolate;
}
.division-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-image);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.5s var(--ease), transform 0.7s var(--ease);
  z-index: -1;
}
.division-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,3,4,0.2), rgba(122,28,40,0.55));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s var(--ease);
}
.division-card:hover::before,
.division-card:hover::after { opacity: 1; }
.division-card:hover::before { transform: scale(1); }
.division-card h3 {
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  margin: 0;
}
.num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--maroon-bright);
}

.places {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--section-y) var(--gutter);
}
.places::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7,3,4,0.55);
}
.places h2, .place-list { position: relative; }
.place-list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 42px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
}

.framework {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 90vh;
}
.framework-copy { padding: var(--section-y) var(--gutter); background: var(--bg-soft); }
.step {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-bottom: 28px;
}
.check-list {
  padding-left: 18px;
  color: var(--muted);
}
.check-list li { margin: 12px 0; }

.tab-bar {
  display: flex;
  gap: 28px;
  margin: 40px 0 24px;
  border-bottom: 1px solid var(--line);
}
.tab-bar button {
  background: none;
  border: 0;
  padding: 0 0 14px;
  cursor: pointer;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.5;
}
.tab-bar button.is-active {
  opacity: 1;
  border-bottom: 1px solid var(--cream);
}
.tab-panel { display: none; max-width: 640px; color: var(--muted); }
.tab-panel.is-active { display: block; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-grid strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
}
.stat-grid span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.projects-band { padding: var(--section-y) 0; }
.band-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 var(--gutter) 28px;
}
.band-head a { letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; }
.project-row { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 52vh; }
.project-tile {
  display: flex;
  align-items: flex-end;
  min-height: 48vh;
  padding: 28px;
  position: relative;
}
.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(7,3,4,0.75));
}
.project-tile span {
  position: relative;
  z-index: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
}

.voices blockquote {
  display: none;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.35;
  max-width: 900px;
}
.voices blockquote.is-active { display: block; }
.voice-nav { margin-top: 36px; display: flex; gap: 12px; }
.voice-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  position: relative;
}
.voice-nav button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--cream);
  border-right: 1.5px solid var(--cream);
}
.voice-nav button:first-child::before {
  transform: translate(-25%, -50%) rotate(-135deg);
}
.voice-nav button:last-child::before {
  transform: translate(-75%, -50%) rotate(45deg);
}

.site-footer {
  padding: var(--section-y) var(--gutter) 48px;
  border-top: 1px solid var(--line);
  background: #050203;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
.footer-nav {
  display: grid;
  gap: 10px;
  letter-spacing: 0.08em;
}
.office-card h2 { font-size: 28px; }
.office-card a:hover { color: var(--maroon-bright); }
.subscribe-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.subscribe-form input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
}
.subscribe-form button {
  background: none;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}
.form-note { color: var(--maroon-bright); }
.copyright {
  margin-top: 64px;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

.page-hero {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--section-y) + 48px) var(--gutter) var(--section-y);
  position: relative;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,3,4,0.25), rgba(7,3,4,0.72));
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  text-transform: none;
  max-width: 720px;
}
.page-hero.is-compact {
  min-height: 38vh;
}
.narrow { max-width: 760px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--bg-soft);
}
.page-block.alt { background: #10070a; }
.team-grid,
.post-grid,
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-grid img,
.project-gallery img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 16px;
  filter: grayscale(0.25);
}
.service-item {
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: var(--section-y) var(--gutter);
  position: relative;
}
.service-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,3,4,0.82), rgba(7,3,4,0.18));
}
.service-item > div { position: relative; z-index: 1; max-width: 640px; }
.service-item span {
  font-family: "Cormorant Garamond", serif;
  color: var(--maroon-bright);
}
.service-stack { padding: 0; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 48px 64px;
  align-items: start;
}
.contact-meta {
  margin: 0;
}
.contact-meta dt {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 24px;
  color: var(--maroon-bright);
}
.contact-meta dd {
  margin: 8px 0 0;
}
.contact-form {
  display: grid;
  gap: 10px;
}
.contact-form label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  outline: none;
  color: var(--cream);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  justify-self: start;
  margin-top: 18px;
  background: var(--maroon);
  border: 0;
  padding: 12px 28px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list summary { cursor: pointer; font-size: 22px; font-family: "Cormorant Garamond", serif; }
.post-card {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.date { letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; color: var(--muted); }
.entry p { font-size: 18px; color: var(--muted); }

body.is-inner .side-brands { display: none; }
body.is-inner .site-header {
  mix-blend-mode: normal;
  color: var(--cream);
  background: linear-gradient(rgba(7, 3, 4, 0.82), rgba(7, 3, 4, 0));
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s var(--ease), transform 1.15s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes introIn {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: none; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes slowZoom {
  from { transform: scale(1.08) translateY(0); }
  to { transform: scale(1.18) translateY(-2%); }
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .about-band {
    grid-template-columns: 1fr;
  }
  .framework-media { min-height: 40vh; }
  .news-pill, .side-brands { display: none; }
  .overlay-nav { grid-template-columns: 1fr; }
  .intro-word { letter-spacing: 0.28em; text-indent: 0.28em; }
}
