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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 20px;
  top: 12px;
  padding: 10px 16px;
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.section {
  padding-block: clamp(88px, 10vw, 152px);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--warm-dark {
  background: var(--warm-dark);
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #7d7367;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-soft);
}

.eyebrow i {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.display-heading {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.display-heading em,
.hero h1 em,
.contact h2 em {
  color: var(--gold-deep);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
}

.display-heading--light {
  color: var(--white);
}

.display-heading--light em {
  color: var(--gold-soft);
}

.section-marker {
  grid-column: 1 / 4;
  padding-top: 11px;
}

.section-marker > span {
  display: block;
  margin-bottom: 54px;
  color: #8a8177;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.section-marker--light > span {
  color: rgba(255, 255, 255, 0.45);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button span,
.text-link span,
.header-cta span {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.button:hover span,
.text-link:hover span,
.header-cta:hover span {
  transform: translate(3px, -3px);
}

.button--gold {
  background: var(--gold);
  color: var(--ink);
}

.button--gold:hover {
  background: var(--gold-soft);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button--wide {
  min-width: min(100%, 300px);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  height: 92px;
  align-items: center;
  padding-inline: var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  position: relative;
  z-index: 52;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.14));
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.brand-name {
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.brand-name > span {
  color: var(--gold-soft);
}

.brand-expertise {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-expertise i {
  flex: 0 0 3px;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.brand-logo--header {
  width: 64px;
  height: 64px;
  transition: width 0.35s ease, height 0.35s ease;
}

.site-header.is-scrolled .brand-logo--header {
  width: 52px;
  height: 52px;
}

.brand-logo--footer {
  width: 104px;
  height: 84px;
}

.brand--footer {
  gap: 18px;
}

.brand--footer .brand-name {
  font-size: 29px;
}

.brand--footer .brand-expertise {
  margin-bottom: 0;
  font-size: 9px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  margin-left: auto;
  margin-right: clamp(28px, 4vw, 64px);
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 1080px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 57%;
  animation: hero-scale 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.82) 0%, rgba(8, 7, 6, 0.38) 54%, rgba(8, 7, 6, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.68) 0%, transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: var(--gutter);
  pointer-events: none;
}

.hero-grid span {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
}

.hero h1 {
  max-width: 1100px;
  margin: 28px 0 0;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.project-regions {
  margin: 23px 0 -5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--gold-soft);
}

.br-mobile {
  display: none;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 24px;
  align-items: end;
  margin-top: clamp(54px, 8vh, 92px);
}

.hero-bottom > p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.hero-stats {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.65;
}

.hero-coords {
  margin: 16px 0 0;
  color: var(--gold-soft);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.studio {
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
}

.studio-copy {
  grid-column: 4 / -1;
}

.studio-copy .display-heading {
  max-width: 990px;
}

.studio-detail {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  margin-top: 68px;
  margin-left: 17%;
}

.studio-detail p {
  max-width: 610px;
  margin: 0;
  color: #4d4944;
  font-size: clamp(16px, 1.4vw, 19px);
}

.studio-detail--single {
  display: block;
  margin-left: 0;
}

.studio-detail--single p {
  max-width: 800px;
}

.values-list {
  display: grid;
  grid-column: 4 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 76px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.value-item {
  min-height: 235px;
  padding: 30px clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.value-item > span {
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.value-item h3 {
  margin: 46px 0 14px;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.value-item p {
  max-width: 390px;
  margin: 0;
  color: #675f57;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statement-ticker {
  overflow: hidden;
  margin-top: 128px;
  color: rgba(10, 10, 10, 0.09);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.8;
  white-space: nowrap;
}

.statement-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 38s linear infinite;
}

.statement-ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 48px;
  min-width: max-content;
  padding-block: 0.12em;
  padding-right: 48px;
}

@keyframes ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(var(--ticker-distance, 50%) * -1), 0, 0); }
}

.statement-ticker i {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.statement-ticker--content {
  margin-top: 0;
  padding-block: 24px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.45);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.statement-ticker--content b {
  color: var(--gold-soft);
  font-weight: 600;
}

.services-intro {
  grid-column: 4 / -1;
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.8;
}

.section-heading .display-heading {
  grid-column: 4 / -1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 92px;
  padding: 1px;
  background: var(--line-light);
}

.service-row {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 390px;
  flex-direction: column;
  grid-column: span 2;
  padding: 30px;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-row--wide {
  grid-column: span 3;
}

.service-row::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-row ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.service-row li::before {
  content: "— ";
  color: var(--gold);
}

.service-row:hover,
.service-row:focus-within,
.service-row.is-open {
  background: #1c1b19;
}

.service-row:hover::after,
.service-row:focus-within::after,
.service-row.is-open::after {
  transform: scaleX(1);
}

.service-row:hover ul,
.service-row:focus-within ul,
.service-row.is-open ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.service-number {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.service-row h3 {
  max-width: calc(100% - 52px);
  margin: 74px 0 38px;
  font-size: clamp(25px, 2.35vw, 35px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.service-toggle {
  position: absolute;
  top: 25px;
  right: 25px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font: inherit;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.service-toggle > span[aria-hidden="true"] {
  display: block;
  font-size: 19px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.service-row:hover .service-toggle,
.service-row:focus-within .service-toggle,
.service-row.is-open .service-toggle {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.service-row:hover .service-toggle > span[aria-hidden="true"],
.service-row:focus-within .service-toggle > span[aria-hidden="true"],
.service-row.is-open .service-toggle > span[aria-hidden="true"] {
  transform: rotate(180deg);
}

.projects {
  background: var(--ivory);
}

.projects-heading .display-heading {
  grid-column: 4 / 10;
}

.projects-intro {
  grid-column: 10 / -1;
  align-self: end;
  margin: 0 0 6px;
  color: #615c55;
  font-size: 14px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 32px clamp(28px, 4vw, 72px);
  align-items: start;
  margin-top: 98px;
}

.project--large {
  grid-row: span 2;
}

.project a {
  display: block;
}

.project-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8d2c8;
}

.project-image--landscape {
  aspect-ratio: 4 / 2.65;
}

.project-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.project:hover .project-image img {
  transform: scale(1.035);
}

.project-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 23px;
  transform: translate(100%, 100%);
  transition: transform 0.35s ease;
}

.project:hover .project-arrow {
  transform: translate(0, 0);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  margin-top: 18px;
}

.project-meta span {
  color: #82786d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 3px 0 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.project-meta p {
  margin: 20px 0 0;
  color: #766e65;
  font-size: 10px;
  text-align: right;
}

.projects-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 70px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}

.projects-footer p {
  margin: 0;
  color: #746d64;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approach {
  position: relative;
  min-height: 850px;
  overflow: hidden;
}

.approach::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(46, 41, 36, 0.94) 0%, rgba(46, 41, 36, 0.6) 20%, rgba(46, 41, 36, 0) 42%),
    linear-gradient(90deg, var(--warm-dark) 0%, var(--warm-dark) 47%, rgba(46, 41, 36, 0.91) 67%, rgba(46, 41, 36, 0.25) 100%);
}

.approach-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
}

.approach-inner,
.process {
  position: relative;
  z-index: 2;
}

.approach-copy {
  grid-column: 4 / 10;
}

.approach-copy p {
  max-width: 550px;
  margin: 58px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 115px;
}

.process::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 32px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 8px, transparent 8px 16px);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 8px;
  text-align: center;
}

.process-step::before {
  display: none;
}

.process-step span {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: var(--warm-dark);
  color: var(--gold);
  font-size: 12px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.process-step:hover span {
  border-color: var(--gold);
  background: #39322c;
  transform: scale(1.06);
}

.process-step h3 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  line-height: 1.6;
}

.sectors-heading .display-heading {
  grid-column: 4 / -1;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 96px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.sector {
  min-height: 320px;
  padding: 30px clamp(24px, 3vw, 44px) 38px;
  border-right: 1px solid var(--line-dark);
  transition: background 0.3s ease, color 0.3s ease;
}

.sector:last-child {
  border-right: 0;
}

.sector:hover {
  background: rgba(10, 10, 10, 0.045);
}

.sector > span {
  color: var(--gold-deep);
  font-size: 10px;
}

.sector h3 {
  margin: 88px 0 24px;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.sector p {
  max-width: 330px;
  margin: 0;
  color: #675f57;
  font-size: 14px;
}

.contact {
  padding: 0 var(--gutter) var(--gutter);
  background: var(--ivory);
}

.contact-panel {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  overflow: hidden;
}

.contact-lines i {
  width: 1px;
  height: 150%;
  background: linear-gradient(transparent, rgba(198, 161, 91, 0.25), transparent);
  transform: rotate(28deg) translateY(-16%);
}

.contact-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  text-align: center;
}

.contact-content .eyebrow {
  justify-content: center;
}

.contact h2 {
  margin: 0 0 34px;
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact h2 em {
  color: var(--gold-soft);
}

.contact-content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 45px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.location {
  background: var(--ivory);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.location-copy .display-heading {
  margin-top: 30px;
  font-size: clamp(42px, 4.7vw, 68px);
}

.location-copy address {
  margin-top: 44px;
  color: #5e574f;
  font-size: 15px;
  font-style: normal;
  line-height: 1.9;
}

.location-phone {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.location-link {
  margin-top: 42px;
}

.map-frame {
  min-height: 570px;
  overflow: hidden;
  background: #d9d4cc;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
  filter: grayscale(1) sepia(0.12) contrast(0.95);
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: clamp(18px, 2.5vw, 36px);
  bottom: clamp(18px, 2.5vw, 34px);
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 11px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2px;
  background: #1f9d59;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.22);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.3s ease;
}

.whatsapp-float:hover {
  background: #16844a;
  transform: translateY(-3px);
}

.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

.site-footer {
  padding-top: 90px;
  background: var(--charcoal);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(48px, 5vw, 80px);
  padding-bottom: 80px;
}

.brand--footer {
  color: var(--white);
}

.footer-brand > p {
  max-width: 440px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.62);
  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-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a,
.footer-links p:not(.footer-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 36px;
  padding-block: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.site-credit a {
  color: var(--gold-soft);
  transition: color 0.2s ease;
}

.site-credit a:hover {
  color: var(--white);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.28s; }

@keyframes hero-scale {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.35; transform: scaleX(0.65); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    height: 76px;
  }

  .menu-toggle {
    position: relative;
    z-index: 52;
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 51;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 55px;
    padding: 110px var(--gutter) 45px;
  background: var(--charcoal);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 26px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: clamp(34px, 8vw, 54px);
    font-weight: 400;
    letter-spacing: -0.04em;
  }

  .mobile-menu nav a span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .mobile-menu .button {
    align-self: flex-start;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .studio-copy,
  .section-heading .display-heading,
  .projects-heading .display-heading,
  .sectors-heading .display-heading,
  .approach-copy {
    grid-column: 4 / -1;
  }

  .projects-intro {
    grid-column: 4 / -1;
    margin-top: 24px;
  }

  .studio-detail {
    margin-left: 0;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-row,
  .service-row--wide {
    grid-column: auto;
  }

  .service-row:last-child {
    grid-column: 1 / -1;
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 16px;
  }

  .process::before {
    display: none;
  }

  .process-step h3 {
    font-size: 18px;
  }

  .approach::after {
    background: linear-gradient(90deg, var(--warm-dark) 0%, rgba(46, 41, 36, 0.93) 62%, rgba(46, 41, 36, 0.5) 100%);
  }

  .location-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 76px;
  }

  .grid-12 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .brand-logo--header {
    width: 52px;
    height: 52px;
  }

  .brand {
    gap: 9px;
  }

  .brand-name {
    font-size: 17px;
    letter-spacing: 0.1em;
  }

  .brand-expertise {
    gap: 5px;
    font-size: 7px;
  }

  .hero {
    min-height: 900px;
    height: auto;
  }

  .hero-inner {
    padding-block: 110px 70px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 7, 6, 0.82), rgba(8, 7, 6, 0.23)),
      linear-gradient(0deg, rgba(8, 7, 6, 0.78), transparent 58%);
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(40px, 11vw, 60px);
  }

  .br-mobile {
    display: block;
  }

  .project-regions {
    margin-top: 18px;
  }

  .hero-bottom {
    margin-top: 34px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: min(100%, 300px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .section-marker,
  .studio-copy,
  .section-heading .display-heading,
  .services-intro,
  .values-list,
  .projects-heading .display-heading,
  .projects-intro,
  .sectors-heading .display-heading,
  .approach-copy {
    grid-column: 1 / -1;
  }

  .section-marker {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0;
  }

  .section-marker > span {
    margin: 0;
  }

  .display-heading {
    font-size: clamp(39px, 11.5vw, 58px);
  }

  .studio-detail {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .studio-detail .text-link {
    justify-self: start;
    margin-top: 12px;
  }

  .statement-ticker {
    margin-top: 84px;
    font-size: 54px;
  }

  .statement-ticker-group {
    gap: 28px;
    padding-right: 28px;
  }

  .statement-ticker--content {
    margin-top: 0;
    padding-block: 20px;
    font-size: 15px;
  }

  .service-list {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .service-row,
  .service-row--wide,
  .service-row:last-child {
    min-height: 330px;
    grid-column: 1;
    padding: 26px;
  }

  .service-row h3 {
    margin-top: 62px;
  }

  .service-row h3 {
    font-size: 26px;
  }

  .service-row p {
    grid-column: 2 / -1;
    grid-row: 2;
    padding-right: 18px;
  }

  .service-row > a {
    grid-column: 3;
    grid-row: 1;
  }

  .service-row--detailed {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .service-row--detailed ul {
    grid-column: 2;
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  .values-list {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .value-item {
    min-height: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    margin-top: 62px;
  }

  .project--large {
    grid-row: auto;
  }

  .project-image,
  .project-image--landscape {
    aspect-ratio: 4 / 4.5;
  }

  .project-arrow {
    width: 54px;
    height: 54px;
    transform: none;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .project-meta p {
    margin: 0;
    text-align: left;
  }

  .projects-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .approach {
    min-height: 1000px;
  }

  .approach-image {
    inset: auto 0 0;
    width: 100%;
    height: 45%;
  }

  .approach::after {
    background:
      linear-gradient(0deg, rgba(46, 41, 36, 0.96) 0%, rgba(46, 41, 36, 0.72) 32%, rgba(46, 41, 36, 0) 56%),
      linear-gradient(180deg, var(--warm-dark) 0%, var(--warm-dark) 54%, rgba(46, 41, 36, 0.75) 74%, rgba(46, 41, 36, 0.25) 100%);
  }

  .approach-copy p {
    margin-top: 38px;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 16px;
    margin-top: 72px;
  }

  .process-step {
    padding: 0 6px;
  }

  .process-step h3 {
    margin: 0 0 6px;
  }

  .process-step span {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
  }

  .sector-list {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .sector {
    min-height: 0;
    padding: 28px 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .sector:last-child {
    border-bottom: 0;
  }

  .sector h3 {
    margin: 38px 0 16px;
  }

  .contact {
    padding: 0;
  }

  .contact-panel {
    min-height: 500px;
  }

  .contact h2 {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-copy address {
    margin-top: 34px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 430px;
  }

  .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);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 42px;
    justify-self: start;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .footer-tagline {
    display: none;
  }
}

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