:root {
  --paper: #fbfaf6;
  --ivory: #f3eee2;
  --white: #ffffff;
  --ink: #171512;
  --muted: #6e685f;
  --gold: #b98b35;
  --gold-bright: #d9b45f;
  --gold-pale: #ead7aa;
  --brown: #5b3c29;
  --green: #0b3329;
  --navy: #071b3f;
  --line: rgba(59, 43, 23, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.project-preview-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  padding: 0 clamp(22px, 4vw, 72px);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(285px, 1fr);
  column-gap: clamp(28px, 3.2vw, 64px);
  align-items: center;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.93);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(39, 28, 15, 0.05);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 42px;
  object-fit: cover;
  object-position: 50% 45%;
  mix-blend-mode: screen;
  border-radius: 2px;
}

.site-header.scrolled .brand img {
  mix-blend-mode: multiply;
}

.brand span {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.brand small {
  font-size: 8px;
  letter-spacing: 0.3em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a,
.header-cta,
.site-footer a {
  transition: color 160ms ease, opacity 160ms ease;
}

.desktop-nav a:hover,
.header-cta:hover {
  color: var(--gold-bright);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  min-width: max-content;
  gap: clamp(18px, 1.6vw, 28px);
}

.search-trigger {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.search-trigger:hover {
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.search-help kbd {
  min-width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  font: inherit;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.search-trigger-icon {
  width: 17px;
  height: 17px;
  display: block;
  flex: none;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

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

.section-pad {
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 6vw));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 6vw));
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  display: flex;
  align-items: center;
  color: white;
  background: #3f3026;
  isolation: isolate;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(24, 16, 12, 0.82) 0%, rgba(32, 22, 15, 0.53) 41%, rgba(36, 24, 14, 0.12) 75%),
    linear-gradient(0deg, rgba(15, 10, 7, 0.46), rgba(15, 10, 7, 0.04) 60%),
    url("/assets/kbm-architecture.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  animation: hero-breathe 14s ease-out both;
}

.hero-light {
  position: absolute;
  z-index: -3;
  inset: -25% -15% auto auto;
  width: 80vw;
  height: 115vh;
  background: radial-gradient(ellipse at 65% 15%, rgba(255, 248, 214, 0.92) 0%, rgba(233, 194, 113, 0.18) 29%, transparent 67%);
  filter: blur(10px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -10vw;
  bottom: -34vh;
  width: 72vw;
  height: 72vw;
  border-radius: 50%;
  background: rgba(255, 252, 242, 0.9);
  filter: blur(50px);
  opacity: 0.16;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  top: 49%;
  left: 73%;
  border: 1px solid rgba(235, 201, 128, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: min(57vw, 820px);
  height: min(57vw, 820px);
  transform: translate(-50%, -50%);
}

.orbit-two {
  width: min(43vw, 620px);
  height: min(43vw, 620px);
  transform: translate(-50%, -50%);
}

.hero-content {
  width: min(830px, 64vw);
  margin-left: max(28px, calc((100vw - var(--max)) / 2 + 6vw));
  padding: 135px 0 185px;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(74px, 9.2vw, 156px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.79;
}

.hero h1 em,
.section-title h2 em,
.presence h2 em,
.partnerships h2 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-copy {
  max-width: 620px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.button {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: #241a0b;
  background: linear-gradient(115deg, #e6c77c, #b9852d);
  box-shadow: 0 18px 55px rgba(127, 87, 26, 0.25);
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-family: var(--serif);
  font-size: 15px;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 130px;
  padding: 24px max(28px, calc((100vw - var(--max)) / 2 + 6vw));
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 170px)) 1fr;
  align-items: center;
  gap: clamp(22px, 4vw, 65px);
  background: linear-gradient(90deg, rgba(20, 14, 10, 0.78), rgba(36, 25, 17, 0.25));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(9px);
}

.hero-bottom div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-bottom strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.hero-bottom span,
.hero-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-bottom p {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.manifesto {
  position: relative;
  min-height: 760px;
  padding-top: clamp(110px, 13vw, 210px);
  padding-bottom: clamp(110px, 13vw, 210px);
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 6vw;
  align-items: start;
  overflow: hidden;
}

.manifesto-label {
  position: sticky;
  top: 140px;
}

.number-line {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
}

.lead-quote {
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 88px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.lead-quote em {
  color: var(--gold);
  font-weight: 400;
}

.manifesto-columns {
  max-width: 830px;
  margin: 80px 0 0 auto;
  padding-top: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  border-top: 1px solid var(--line);
}

.manifesto-columns p {
  margin: 0;
  color: #59534b;
  font-size: 14px;
  line-height: 1.9;
}

.manifesto-columns strong {
  color: var(--ink);
  font-weight: 700;
}

.edge-mark {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.edge-mark-kbm {
  right: -10vw;
  bottom: -60px;
  width: min(48vw, 690px);
  opacity: 0.045;
  mix-blend-mode: multiply;
  transform: rotate(-8deg);
}

.value-chain {
  min-height: 720px;
  padding: clamp(90px, 10vw, 150px) max(28px, calc((100vw - var(--max)) / 2 + 6vw));
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(210, 169, 81, 0.17), transparent 26%),
    linear-gradient(135deg, #1f1713, #402a1c 60%, #2a1a12);
}

.value-chain h2,
.section-title h2,
.integration h2,
.presence h2,
.partnerships h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.8vw, 108px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.92;
}

.value-chain-intro > p:last-child {
  max-width: 430px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.8;
}

.chain-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.chain-steps li {
  min-height: 96px;
  display: grid;
  grid-template-columns: 58px 0.7fr 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 200ms ease, background 200ms ease;
}

.chain-steps li:hover {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
}

.chain-steps span {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 13px;
}

.chain-steps strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 400;
}

.chain-steps small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.section-title {
  min-height: 650px;
  padding-top: clamp(120px, 14vw, 210px);
  padding-bottom: clamp(100px, 12vw, 180px);
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  grid-template-areas: "eyebrow title" ". copy";
  column-gap: 6vw;
  align-items: start;
}

.section-title .eyebrow {
  grid-area: eyebrow;
}

.section-title h2 {
  grid-area: title;
  font-size: clamp(64px, 8vw, 128px);
}

.section-title > p:last-child {
  grid-area: copy;
  max-width: 500px;
  margin: 45px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.division {
  position: relative;
}

.division-visual {
  position: relative;
  min-height: min(78vw, 880px);
  background-color: #3a322b;
  background-position: center;
  background-size: cover;
}

.division-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 10, 7, 0.5), transparent 46%);
}

.division-built-image {
  background-image: url("/assets/kbm-city.webp");
}

.division-lifestyle-image {
  background-image: url("/assets/kbm-interior.webp");
}

.division-hospitality-image {
  background-image: url("/assets/kbm-hospitality.webp");
}

.division-music-image {
  background-image: url("/assets/kbm-music.webp");
}

.division-agro-image {
  background-image: url("/assets/kbm-agriculture.webp");
}

.division-energy-image {
  background-image: url("/assets/kbm-energy.webp");
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(22px, 4vw, 55px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: white;
}

.image-caption span {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 34px);
}

.image-caption small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.culture-visuals,
.agro-visuals {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}

.culture-visuals .division-visual,
.agro-visuals .division-visual {
  min-height: min(62vw, 770px);
}

.division-content {
  position: relative;
  padding-top: clamp(110px, 12vw, 180px);
  padding-bottom: clamp(110px, 12vw, 180px);
  overflow: hidden;
}

.division-heading {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(80px, 9vw, 140px);
  display: grid;
  grid-template-columns: 70px minmax(280px, 1fr) minmax(280px, 0.65fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: end;
}

.division-number {
  align-self: start;
  padding-top: 7px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.division-heading .eyebrow {
  margin-bottom: 18px;
}

.division-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7.2vw, 116px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.division-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.company-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.company-card {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.company-card:hover {
  z-index: 3;
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 65px rgba(55, 40, 23, 0.1);
}

.card-code {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(185, 139, 53, 0.45);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
}

.company-card h4 {
  max-width: 360px;
  margin: auto 0 20px;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.company-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.company-card small {
  margin-top: 22px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.company-card-logo > img {
  width: 125px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.company-card-logo > .logo-portrait {
  width: 78px;
  height: 84px;
  object-fit: cover;
  object-position: center;
}

.company-card-logo > .logo-square {
  width: 94px;
  height: 94px;
}

.company-card-logo > .logo-monolith {
  width: 120px;
  height: 105px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.company-card-logo > .logo-iconearth {
  width: 118px;
  height: 106px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.company-card-logo > .logo-iconearth-services {
  width: 150px;
  height: 128px;
  object-fit: cover;
  object-position: center 54%;
  mix-blend-mode: normal;
}

.company-card-logo > .logo-hippotec {
  width: 112px;
  height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.company-card-logo > .logo-craftcolab {
  width: 152px;
  height: 112px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
}

.edge-mark-urban {
  right: -11vw;
  top: 13%;
  width: min(53vw, 760px);
  opacity: 0.055;
  mix-blend-mode: multiply;
  transform: rotate(-5deg);
}

.featured-project {
  position: relative;
  z-index: 2;
  min-height: 305px;
  margin-top: 75px;
  padding: 35px 42px 35px 35px;
  display: grid;
  grid-template-columns: 175px 1fr 45px;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  color: white;
  background: var(--green);
}

.featured-project > img {
  width: 140px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.featured-project h4 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
}

.featured-project p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.featured-project > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.division-lifestyle .division-content {
  background: #f4eee5;
}

.company-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.company-grid-three .company-card {
  min-height: 430px;
}

.edge-mark-gtl {
  right: -9vw;
  bottom: -20%;
  width: min(48vw, 660px);
  opacity: 0.045;
  mix-blend-mode: multiply;
  transform: rotate(10deg);
}

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

.section-navy::before {
  content: "";
  position: absolute;
  top: -250px;
  left: 5vw;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(217, 180, 95, 0.13);
  border-radius: 50%;
}

.section-navy .division-heading > p,
.section-navy .company-card p {
  color: rgba(255, 255, 255, 0.59);
}

.section-navy .company-grid,
.section-navy .company-card {
  border-color: rgba(255, 255, 255, 0.14);
}

.section-navy .company-card {
  background: rgba(255, 255, 255, 0.018);
}

.section-navy .company-card:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.23);
}

.company-grid-culture {
  grid-template-columns: repeat(3, 1fr);
}

.company-grid-culture .company-card {
  min-height: 400px;
}

.company-card-logo > .logo-dark {
  width: 95px;
  height: 105px;
  object-fit: cover;
  object-position: center 44%;
  mix-blend-mode: normal;
}

.company-card-logo > .logo-masterpot {
  width: 145px;
  height: 128px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
}

.masterpot-card {
  background: linear-gradient(145deg, rgba(10, 35, 66, 0.88), rgba(7, 18, 48, 0.45));
}

.trafalgar-card {
  grid-column: span 2;
  min-height: 420px !important;
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) 1fr;
  gap: 40px;
  align-items: stretch;
}

.company-card-logo > .logo-hotel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  mix-blend-mode: normal;
}

.trafalgar-card > div {
  display: flex;
  flex-direction: column;
}

.edge-mark-star {
  right: -5vw;
  top: 4%;
  width: min(33vw, 470px);
  opacity: 0.045;
  mix-blend-mode: screen;
  transform: rotate(8deg);
}

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

.company-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.company-grid-four .company-card {
  min-height: 430px;
}

.company-card-logo > .logo-fauna {
  width: 112px;
  height: 112px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.company-card-logo > .logo-elvora {
  width: 150px;
  height: 122px;
  object-fit: cover;
  object-position: center 44%;
  mix-blend-mode: normal;
}

.company-card-logo > .logo-quivera {
  width: 126px;
  height: 150px;
  object-fit: cover;
  object-position: center 40%;
  mix-blend-mode: normal;
}

.quivera-card {
  background: linear-gradient(145deg, rgba(10, 26, 47, 0.08), rgba(184, 160, 84, 0.1));
}

.edge-mark-fauna {
  right: -12vw;
  top: 8%;
  width: min(55vw, 760px);
  opacity: 0.045;
  mix-blend-mode: multiply;
  transform: rotate(-6deg);
}

.integration {
  min-height: 900px;
  padding-top: clamp(120px, 14vw, 210px);
  padding-bottom: clamp(120px, 14vw, 210px);
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 52%, rgba(205, 165, 81, 0.14), transparent 26%),
    var(--paper);
}

.integration-heading {
  position: sticky;
  top: 140px;
}

.integration h2 {
  font-size: clamp(64px, 7vw, 108px);
}

.integration-story {
  padding-top: 45px;
}

.integration-story > p {
  margin: 0 0 45px;
  padding-bottom: 45px;
  color: #5c564e;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1.4;
}

.integration-story strong {
  color: var(--brown);
  font-weight: 400;
}

.integration-story .integration-result {
  margin: 95px 0 0;
  padding: 0;
  color: var(--ink);
  border: 0;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.05;
}

.integration-result em {
  color: var(--gold);
  font-weight: 400;
}

.presence {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  color: white;
  background: #1b1c1a;
  overflow: hidden;
}

.presence-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 10, 9, 0.84), rgba(6, 10, 9, 0.18)),
    url("/assets/kbm-city.webp");
  background-position: center;
  background-size: cover;
}

.presence-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 15%, rgba(230, 197, 124, 0.35), transparent 30%);
  mix-blend-mode: screen;
}

.presence-content {
  position: relative;
  z-index: 2;
  width: min(780px, 62vw);
  margin-left: max(28px, calc((100vw - var(--max)) / 2 + 6vw));
}

.presence h2 {
  font-size: clamp(66px, 7.8vw, 120px);
}

.presence-content > p:nth-of-type(2) {
  max-width: 590px;
  margin: 43px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.8;
}

.city-list {
  max-width: 780px;
  margin-top: 58px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.city-list span {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.partnerships {
  position: relative;
  min-height: 830px;
  padding-top: clamp(130px, 14vw, 220px);
  padding-bottom: clamp(130px, 14vw, 220px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fffdfa;
}

.gold-disc {
  position: absolute;
  top: 50%;
  right: 4vw;
  width: min(50vw, 720px);
  height: min(50vw, 720px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 32%, #f3dd9d 0%, #c49338 43%, #7e531a 100%);
  box-shadow: 0 45px 100px rgba(120, 82, 29, 0.26);
  transform: translateY(-50%);
}

.gold-disc::before,
.gold-disc::after {
  content: "";
  position: absolute;
  inset: -45px;
  border: 1px solid rgba(185, 139, 53, 0.32);
  border-radius: 50%;
}

.gold-disc::after {
  inset: -90px;
  opacity: 0.5;
}

.partnership-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: calc(4vw + min(10vw, 145px));
  width: min(30vw, 430px);
  opacity: 0.2;
  mix-blend-mode: multiply;
  transform: translateY(-50%);
}

.partnership-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.partnerships h2 {
  font-size: clamp(72px, 8.4vw, 132px);
}

.partnership-copy > p:nth-of-type(2) {
  max-width: 590px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.partnership-locations {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(28px, 5vw, 70px);
}

.partnership-location {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--line);
}

.partnership-location span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partnership-location strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
}

.partnership-location-wide strong {
  font-size: 18px;
}

.site-footer {
  padding: 90px max(28px, calc((100vw - var(--max)) / 2 + 6vw)) 35px;
  color: white;
  background: #17120f;
}

.footer-top {
  min-height: 260px;
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.5fr;
  gap: 60px;
  align-items: start;
}

.footer-brand img {
  width: 92px;
  height: 105px;
  object-fit: cover;
  object-position: 50% 50%;
  mix-blend-mode: screen;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.2;
}

.footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-top a:hover,
.footer-bottom a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  padding-top: 25px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.footer-bottom > p {
  margin: 0;
}

.footer-bottom > a {
  justify-self: end;
}

.footer-bottom details {
  position: relative;
}

.footer-bottom summary {
  cursor: pointer;
  list-style: none;
}

.footer-bottom summary::-webkit-details-marker {
  display: none;
}

.credits {
  position: absolute;
  z-index: 10;
  bottom: 28px;
  left: 50%;
  width: min(520px, 82vw);
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 22px;
  color: rgba(255, 255, 255, 0.66);
  background: #2b211b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.company-card::after {
  content: "↗";
  position: absolute;
  top: 26px;
  right: 28px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(185, 139, 53, 0.3);
  border-radius: 50%;
  font-size: 13px;
  opacity: 0;
  transform: translate(-7px, 7px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.company-card:hover::after,
.company-card:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
  background: rgba(185, 139, 53, 0.08);
}

.inner-page {
  background: var(--paper);
}

.inner-page .inner-header {
  color: var(--ink);
}

.inner-page .inner-header .brand img {
  mix-blend-mode: multiply;
}

.inner-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  color: white;
  background: #201813;
  isolation: isolate;
  overflow: hidden;
}

.inner-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  animation: hero-breathe 14s ease-out both;
}

.inner-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28vw;
  right: -12vw;
  width: 68vw;
  height: 68vw;
  border: 1px solid rgba(235, 201, 128, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(235, 201, 128, 0.025), 0 0 0 180px rgba(235, 201, 128, 0.02);
}

.inner-hero-content {
  width: min(1060px, 84vw);
  margin-left: max(28px, calc((100vw - var(--max)) / 2 + 6vw));
  padding: 190px 0 105px;
}

.inner-hero h1,
.company-detail-content h1,
.project-identity h1,
.not-found h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 8.6vw, 138px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.87;
}

.inner-hero h1 em,
.not-found h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.inner-hero-content > p:last-of-type {
  max-width: 620px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.detail-scroll {
  margin-top: 38px;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--serif);
  font-size: 16px;
  transition: color 180ms ease, border-color 180ms ease;
}

.detail-scroll:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.company-external {
  margin: 38px 0 0 28px;
  padding-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(217, 180, 95, 0.55);
  font-family: var(--serif);
  font-size: 16px;
  transition: color 180ms ease, border-color 180ms ease;
}

.company-external:hover {
  color: white;
  border-color: white;
}

.portfolio-browser,
.pathways {
  padding-top: clamp(100px, 11vw, 170px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.browser-heading {
  margin-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.browser-heading h2,
.connected-heading h2,
.overview-intro h2,
.founder-copy h2,
.principles-heading h2,
.contact-direction h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.browser-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filter-bar {
  margin-bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  padding: 13px 17px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  color: white;
  border-color: var(--brown);
  background: var(--brown);
}

.portfolio-grid,
.connected-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.portfolio-card {
  position: relative;
  min-height: 380px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
  transition: color 210ms ease, background 210ms ease, transform 210ms ease, box-shadow 210ms ease;
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: auto -35% -70% 20%;
  height: 90%;
  border: 1px solid rgba(185, 139, 53, 0.2);
  border-radius: 50%;
  transition: transform 350ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  z-index: 2;
  color: white;
  background: var(--brown);
  box-shadow: 0 24px 65px rgba(55, 40, 23, 0.16);
  transform: translateY(-5px);
}

.portfolio-card:hover::before,
.portfolio-card:focus-visible::before {
  transform: translate(-20%, -20%) scale(1.25);
  border-color: rgba(255, 255, 255, 0.18);
}

.portfolio-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-card-top small,
.portfolio-card-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
  transition: color 210ms ease;
}

.portfolio-card:hover small,
.portfolio-card:focus-visible small {
  color: rgba(255, 255, 255, 0.58);
}

.portfolio-card-top > span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(185, 139, 53, 0.35);
  border-radius: 50%;
}

.detail-monogram {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(185, 139, 53, 0.45);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
}

.portfolio-logo {
  width: 110px;
  height: 110px;
  margin-top: 40px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.portfolio-card > .detail-monogram {
  margin-top: 40px;
}

.portfolio-card:hover .portfolio-logo,
.portfolio-card:focus-visible .portfolio-logo {
  mix-blend-mode: screen;
}

.portfolio-card-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.portfolio-card-copy strong {
  font-family: var(--serif);
  font-size: clamp(23px, 1.8vw, 29px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.page-cta {
  min-height: 640px;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background:
    radial-gradient(circle at 82% 22%, rgba(216, 177, 90, 0.23), transparent 27%),
    linear-gradient(135deg, #241913, #56361f);
}

.page-cta h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.page-cta > div {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 38px;
}

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

.company-detail-hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: flex-end;
  color: white;
  background: #1c1511;
  isolation: isolate;
  overflow: hidden;
}

.company-detail-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  animation: hero-breathe 14s ease-out both;
}

.company-detail-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28vw;
  right: -8vw;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(233, 204, 138, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(233, 204, 138, 0.025), 0 0 0 180px rgba(233, 204, 138, 0.018);
}

.company-detail-content {
  width: min(1100px, 85vw);
  margin-left: max(28px, calc((100vw - var(--max)) / 2 + 6vw));
  padding: 150px 0 95px;
}

.breadcrumbs {
  margin-bottom: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold-bright);
}

.detail-logo-wrap {
  margin-bottom: 34px;
}

.detail-logo {
  width: 150px;
  height: 105px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.company-elvora-development .detail-logo,
.company-quivera .detail-logo {
  width: 180px;
  height: 145px;
  object-fit: cover;
  object-position: center 43%;
  mix-blend-mode: normal;
}

.company-iconearth-services .detail-logo {
  width: 210px;
  height: 170px;
  object-fit: cover;
  object-position: center 55%;
  mix-blend-mode: normal;
}

.company-faunaflora-agro-allied .detail-logo,
.company-fauna-farms-industries .detail-logo,
.company-fauna-energies .detail-logo {
  width: 118px;
  height: 118px;
  mix-blend-mode: screen;
}

.sovereign-vision {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 10vw, 160px);
  background:
    radial-gradient(circle at 10% 20%, rgba(205, 165, 81, 0.17), transparent 28%),
    var(--navy);
  color: white;
}

.sovereign-heading h2 {
  margin: 18px 0 30px;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 94px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.sovereign-heading h2 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.sovereign-heading > p:last-child {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.sovereign-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.sovereign-grid article {
  padding: clamp(30px, 4vw, 58px);
  background: var(--navy);
}

.sovereign-grid span {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.sovereign-grid h3 {
  margin: 22px 0 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
}

.sovereign-grid p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.sovereign-grid a {
  display: inline-flex;
  gap: 14px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-logo-wrap .detail-monogram {
  width: 78px;
  height: 78px;
  color: var(--gold-bright);
  border-color: rgba(217, 180, 95, 0.55);
}

.company-detail-content h1 {
  max-width: 1180px;
  font-size: clamp(62px, 7.7vw, 122px);
}

.company-detail-content > p:last-of-type {
  max-width: 690px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.75;
}

.company-overview,
.project-system {
  min-height: 760px;
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.brand-doctrine {
  grid-column: 1 / -1;
  margin-top: clamp(70px, 10vw, 140px);
  padding: clamp(34px, 5vw, 72px);
  color: #f8f1df;
  background:
    radial-gradient(circle at 86% 14%, rgba(215, 174, 74, 0.23), transparent 28%),
    linear-gradient(135deg, #102a4b, #08192e);
}

.brand-doctrine-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) 1.1fr;
  gap: 26px 50px;
  align-items: end;
}

.brand-doctrine-heading .eyebrow {
  grid-column: 1 / -1;
  color: #d6ad4e;
}

.brand-doctrine-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.brand-doctrine-heading > p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 241, 223, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.brand-doctrine-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(214, 173, 78, 0.33);
  border-left: 1px solid rgba(214, 173, 78, 0.33);
}

.brand-doctrine-grid article {
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(214, 173, 78, 0.33);
  border-bottom: 1px solid rgba(214, 173, 78, 0.33);
}

.brand-doctrine-grid span,
.brand-doctrine-grid strong,
.brand-doctrine-signoff {
  color: #d6ad4e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.55;
  text-transform: uppercase;
}

.brand-doctrine-grid h4 {
  margin: 34px 0 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.brand-doctrine-grid p {
  margin: auto 0 0;
  color: rgba(248, 241, 223, 0.68);
  font-size: 12px;
  line-height: 1.7;
}

.brand-doctrine-signoff {
  margin: 34px 0 0;
}

@media (max-width: 760px) {
  .brand-doctrine-heading,
  .brand-doctrine-grid {
    grid-template-columns: 1fr;
  }

  .brand-doctrine-grid article {
    min-height: 210px;
  }
}

.overview-intro {
  position: sticky;
  top: 130px;
}

.overview-copy > p {
  margin: 0 0 70px;
  color: #4f4942;
  font-family: var(--serif);
  font-size: clamp(27px, 2.8vw, 43px);
  line-height: 1.45;
}

.company-address {
  margin: -35px 0 55px;
  padding: 24px 28px;
  display: grid;
  gap: 10px;
  font-style: normal;
  border: 1px solid var(--line);
  background: rgba(198, 160, 82, 0.07);
}

.company-registration {
  margin: -38px 0 38px !important;
  color: var(--gold) !important;
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.company-office-grid {
  margin: 0 0 55px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.company-office-grid .company-address {
  margin: 0;
}

.company-address small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.company-address strong {
  color: #403a34;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.5;
}

.overview-copy ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.overview-copy li {
  min-height: 90px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.overview-copy li span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
}

.overview-copy li strong {
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
}

.company-profile-detail {
  grid-column: 1 / -1;
  margin-top: 25px;
  padding-top: clamp(80px, 9vw, 125px);
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(55px, 9vw, 140px);
  border-top: 1px solid var(--line);
}

.company-profile-detail h3 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.company-profile-detail h3 em {
  color: var(--gold);
  font-weight: 400;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.company-profile-grid article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-profile-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
}

.company-profile-grid h4 {
  margin: 50px 0 15px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 400;
}

.company-profile-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.urbanhills-corporate {
  grid-column: 1 / -1;
  margin-top: 25px;
  padding-top: clamp(80px, 9vw, 125px);
  border-top: 1px solid var(--line);
}

.urbanhills-corporate-heading {
  display: grid;
  grid-template-columns: 0.42fr 0.9fr 0.78fr;
  gap: clamp(35px, 6vw, 95px);
  align-items: start;
}

.urbanhills-corporate-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.urbanhills-corporate-heading h3 em {
  color: var(--gold);
  font-weight: 400;
}

.urbanhills-corporate-heading > p:last-child {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
}

.urbanhills-capital {
  margin-top: 75px;
}

.urbanhills-capital > strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
}

.urbanhills-capital > p {
  max-width: 900px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.urbanhills-share-table {
  margin-top: 35px;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.urbanhills-share-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.urbanhills-share-table caption {
  padding: 17px 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.urbanhills-share-table th,
.urbanhills-share-table td {
  padding: 17px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.urbanhills-share-table th:last-child,
.urbanhills-share-table td:last-child {
  border-right: 0;
}

.urbanhills-share-table thead th {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.urbanhills-share-table tbody th {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.urbanhills-share-table td {
  color: var(--muted);
  font-size: 10px;
}

.urbanhills-share-table tfoot th,
.urbanhills-share-table tfoot td {
  color: var(--gold);
  border-bottom: 0;
  font-weight: 700;
}

.urbanhills-governance-note {
  margin-top: 24px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 10px !important;
}

.urbanhills-governance {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.urbanhills-governance article {
  min-height: 390px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.urbanhills-governance ul {
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.urbanhills-governance li {
  padding: 16px 0;
  display: grid;
  gap: 7px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.65;
}

.urbanhills-governance li strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.urbanhills-governance li span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.urbanhills-full-profile {
  margin-top: 38px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 8px;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.urbanhills-work-showcase {
  padding-top: clamp(100px, 10vw, 150px);
  padding-bottom: clamp(105px, 11vw, 165px);
  color: white;
  background: var(--navy);
}

.urbanhills-work-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(55px, 9vw, 140px);
  align-items: end;
}

.urbanhills-work-heading h2 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 94px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.urbanhills-work-heading h2 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.urbanhills-work-heading > div:last-child > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.85;
}

.urbanhills-work-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.urbanhills-work-card {
  min-width: 0;
  padding: 0 0 21px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: zoom-in;
}

.urbanhills-work-card > span {
  grid-column: 1 / -1;
  height: 245px;
  overflow: hidden;
  background: #11182b;
}

.urbanhills-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.urbanhills-work-card:hover img {
  transform: scale(1.025);
}

.urbanhills-work-card small {
  grid-column: 1 / -1;
  padding: 8px 20px 0;
  color: var(--gold-bright);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.urbanhills-work-card strong {
  padding-left: 20px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}

.urbanhills-work-card b {
  padding-right: 20px;
  color: var(--gold-bright);
  font-size: 16px;
  font-weight: 400;
}

.project-preview {
  position: fixed;
  z-index: 300;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
}

.project-preview[hidden] {
  display: none;
}

.project-preview-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(4, 8, 20, 0.92);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.project-preview > section {
  position: relative;
  width: min(1240px, 100%);
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  overflow: auto;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.project-preview > section > div {
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0c1427;
}

.project-preview > section > div img {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 48px);
  object-fit: contain;
}

.project-preview > section > header {
  padding: 70px 38px 42px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.project-preview > section > header h2 {
  margin: 18px 0 24px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
}

.project-preview > section > header > p:last-child {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.project-preview-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(5, 9, 19, 0.65);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.brand-system {
  grid-column: 1 / -1;
  margin-top: 25px;
  padding-top: clamp(80px, 9vw, 125px);
  border-top: 1px solid var(--line);
}

.brand-system-heading {
  display: grid;
  grid-template-columns: 0.45fr 0.9fr 0.8fr;
  gap: clamp(35px, 6vw, 95px);
  align-items: start;
}

.brand-system-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.brand-system-heading h3 em {
  color: var(--gold);
  font-weight: 400;
}

.brand-system-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.brand-system-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-system-card {
  min-height: 255px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-system-card > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-system-card h4 {
  margin: 48px 0 16px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.brand-system-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.brand-system-card > strong {
  margin-top: auto;
  padding-top: 25px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-signoff {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.connected-section {
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(110px, 13vw, 190px);
  color: white;
  background: var(--navy);
}

.connected-heading {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  align-items: end;
}

.connected-heading .eyebrow,
.connected-heading h2 {
  grid-column: 1;
}

.connected-heading .eyebrow {
  margin-bottom: -45px;
}

.connected-heading > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.connected-grid {
  grid-template-columns: repeat(3, 1fr);
  border-color: rgba(255, 255, 255, 0.15);
}

.connected-grid .portfolio-card {
  min-height: 360px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.connected-grid .portfolio-card-top small,
.connected-grid .portfolio-card-copy small {
  color: rgba(255, 255, 255, 0.48);
}

.connected-grid .portfolio-logo {
  mix-blend-mode: screen;
}

.company-pagination {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.company-pagination a {
  padding: 35px clamp(24px, 4vw, 65px);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 7px 20px;
  align-content: center;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease;
}

.company-pagination a:last-child {
  grid-template-columns: 1fr auto;
  text-align: right;
  border-right: 0;
}

.company-pagination a:hover {
  color: white;
  background: var(--brown);
}

.company-pagination a > span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--gold);
  font-size: 25px;
}

.company-pagination a:last-child > span {
  grid-column: 2;
}

.company-pagination small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-pagination a:hover small {
  color: rgba(255, 255, 255, 0.55);
}

.company-pagination strong {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 25px);
  font-weight: 400;
}

.company-pagination .all-companies-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.company-pagination .all-companies-link > span {
  font-size: 24px;
}

.company-pagination .all-companies-link strong {
  font-size: 13px;
}

.founder-section {
  min-height: 820px;
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(70px, 11vw, 170px);
}

.founder-number {
  position: sticky;
  top: 130px;
  width: min(34vw, 430px);
  height: min(34vw, 430px);
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(185, 139, 53, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(185, 139, 53, 0.045), 0 0 0 90px rgba(185, 139, 53, 0.025);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 59px);
}

.founder-copy {
  align-self: center;
}

.founder-copy h2 {
  max-width: 760px;
}

.founder-roles {
  margin: 34px 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-transform: uppercase;
}

.founder-copy > p:last-of-type {
  max-width: 650px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.principles {
  padding-top: 130px;
  padding-bottom: 150px;
  color: white;
  background: #1b1511;
}

.principles-heading {
  margin-bottom: 80px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.principle-grid article {
  min-height: 350px;
  padding: 33px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.principle-grid span {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 12px;
}

.principle-grid h3 {
  margin: 120px 0 22px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
}

.principle-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.8;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pathway-card {
  min-height: 385px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.pathway-card:hover,
.pathway-card:focus-visible {
  color: white;
  background: var(--green);
  transform: translateY(-5px);
}

.pathway-card > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}

.pathway-card h3 {
  margin: 85px 0 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 39px);
  font-weight: 400;
  line-height: 1;
}

.pathway-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  transition: color 200ms ease;
}

.pathway-card:hover p,
.pathway-card:focus-visible p {
  color: rgba(255, 255, 255, 0.58);
}

.pathway-card strong {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pathway-card b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 400;
}

.contact-direction {
  min-height: 560px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
  color: white;
  background: var(--brown);
}

.contact-direction h2 {
  font-size: clamp(48px, 5vw, 78px);
}

.contact-direction > div > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.contact-direction > div > p:nth-last-child(2) {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

.project-hero {
  min-height: 880px;
  padding: 145px max(28px, calc((100vw - var(--max)) / 2 + 6vw)) 95px;
  display: flex;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 75% 20%, rgba(214, 180, 94, 0.18), transparent 27%),
    var(--green);
}

.project-identity {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) 1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.project-identity > img {
  width: min(34vw, 420px);
  max-height: 620px;
  object-fit: cover;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.project-identity h1 {
  max-width: 820px;
}

.project-identity > div > p:last-of-type {
  max-width: 620px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.breadcrumbs.dark {
  margin-bottom: 50px;
}

.not-found {
  min-height: 100svh;
  padding: 170px 28px 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(214, 180, 94, 0.12), transparent 32%),
    var(--paper);
}

.not-found > p:nth-of-type(2) {
  margin: 35px 0 0;
  color: var(--muted);
}

.not-found > div {
  margin-top: 45px;
  display: flex;
  gap: 14px;
}

.compact-footer .footer-top {
  min-height: 220px;
}

body.search-open {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  place-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 13, 29, 0.78);
  backdrop-filter: blur(17px);
  cursor: default;
}

.search-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 44px));
  height: min(900px, calc(100vh - 44px));
  margin: 22px auto;
  padding: clamp(32px, 4vw, 62px);
  display: grid;
  grid-template-rows: auto auto auto auto minmax(130px, 1fr) auto auto;
  color: var(--ink);
  background: radial-gradient(circle at 93% 8%, rgba(201, 169, 97, 0.17), transparent 25%), var(--paper);
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  transform: translateY(18px) scale(0.985);
  transition: transform 220ms ease;
}

.search-overlay.open .search-panel {
  transform: translateY(0) scale(1);
}

.search-panel-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  align-items: start;
}

.search-panel-header .eyebrow {
  margin-bottom: 13px;
}

.search-panel-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.search-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 200;
  cursor: pointer;
}

.search-form {
  margin-top: 34px;
}

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

.search-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 2px solid var(--ink);
}

.search-form input {
  min-width: 0;
  padding: 17px 0 18px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(20px, 2.3vw, 32px);
}

.search-form input::placeholder {
  color: #918b83;
  opacity: 1;
}

.search-form button {
  padding: 0 2px 0 25px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-form button span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--gold);
}

.search-intents {
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
}

.search-intents::-webkit-scrollbar {
  display: none;
}

.search-intents > span {
  margin-right: 5px;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-intents button {
  padding: 9px 13px;
  flex: 0 0 auto;
  color: #655e55;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  cursor: pointer;
}

.search-intents button:hover {
  color: white;
  border-color: var(--navy);
  background: var(--navy);
}

.search-status {
  min-height: 34px;
  padding: 12px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.search-results {
  min-height: 0;
  overflow-y: auto;
  scrollbar-color: var(--gold) transparent;
}

.search-result {
  min-height: 114px;
  padding: 22px 8px;
  display: grid;
  grid-template-columns: 42px 1fr 35px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 140ms ease, background 140ms ease, padding 140ms ease;
}

.search-result:hover,
.search-result.active {
  padding-left: 18px;
  color: white;
  background: var(--navy);
}

.search-result-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
}

.search-result-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.search-result-copy small,
.search-result-copy em {
  color: var(--gold);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.search-result-copy strong {
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 400;
  line-height: 1.35;
}

.search-result-copy em {
  color: var(--muted);
  font-size: 7px;
}

.search-result:hover .search-result-copy em,
.search-result.active .search-result-copy em {
  color: rgba(255, 255, 255, 0.52);
}

.search-result-arrow {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.search-more {
  width: 100%;
  padding: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(201, 169, 97, 0.08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-help {
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-help span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.search-help span:last-child {
  margin-left: auto;
  color: var(--gold);
}

.search-help kbd {
  min-width: 21px;
  height: 21px;
  font-size: 8px;
}

.search-target {
  position: relative;
  z-index: 2;
  animation: search-target-pulse 5s ease both;
}

@keyframes search-target-pulse {
  0%, 100% { color: inherit; background: transparent; box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
  10%, 70% { color: var(--ink); background: rgba(226, 195, 123, 0.35); box-shadow: 0 0 0 14px rgba(226, 195, 123, 0.18); }
}

@keyframes hero-breathe {
  from { transform: scale(1.08); }
  to { transform: scale(1.025); }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 13px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 11px 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .header-actions {
    gap: 0;
  }

  .search-trigger {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .menu-toggle span {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 90;
    inset: 0;
    padding: 125px 28px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 17px;
    color: white;
    background: rgba(20, 15, 12, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 12px 0;
    font-family: var(--serif);
    font-size: clamp(40px, 7vw, 65px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-content {
    width: min(760px, 78vw);
  }

  .hero h1 {
    font-size: clamp(76px, 12vw, 128px);
  }

  .manifesto,
  .section-title {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .manifesto-label {
    position: static;
    margin-bottom: 55px;
  }

  .section-title .eyebrow,
  .section-title h2,
  .section-title > p:last-child {
    grid-area: auto;
  }

  .section-title > p:last-child {
    margin-left: auto;
  }

  .value-chain {
    grid-template-columns: 1fr;
  }

  .sovereign-vision {
    grid-template-columns: 1fr;
  }

  .value-chain-intro > p:last-child {
    max-width: 600px;
  }

  .division-heading {
    grid-template-columns: 50px 1fr;
  }

  .division-heading > p {
    grid-column: 2;
    max-width: 550px;
  }

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

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

  .trafalgar-card {
    grid-column: span 2;
  }

  .integration {
    grid-template-columns: 0.65fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 720px) {
  .search-panel {
    width: 100vw;
    height: 100dvh;
    margin: 0;
    padding: 27px 20px 18px;
    grid-template-rows: auto auto auto auto minmax(120px, 1fr) auto;
  }

  .search-panel-header h2 {
    max-width: 270px;
    font-size: 43px;
  }

  .search-panel-header .eyebrow {
    font-size: 8px;
  }

  .search-form {
    margin-top: 24px;
  }

  .search-form input {
    padding: 14px 0;
    font-size: 20px;
  }

  .search-form button {
    padding-left: 12px;
    font-size: 0;
  }

  .search-intents {
    padding: 16px 0;
  }

  .search-intents > span,
  .search-help {
    display: none;
  }

  .search-status {
    font-size: 9px;
    line-height: 1.5;
  }

  .search-result {
    min-height: 105px;
    padding: 18px 3px;
    grid-template-columns: 28px 1fr 28px;
    gap: 10px;
  }

  .search-result:hover,
  .search-result.active {
    padding-left: 9px;
  }

  .search-result-copy strong {
    font-size: 16px;
  }

  .search-result-copy small {
    line-height: 1.45;
  }

  .search-result-arrow {
    width: 27px;
    height: 27px;
  }

  .search-more {
    margin-top: 8px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .brand img {
    width: 33px;
    height: 37px;
  }

  .hero {
    min-height: 860px;
    align-items: flex-start;
  }

  .hero-image {
    background-image:
      linear-gradient(0deg, rgba(18, 12, 9, 0.9) 0%, rgba(27, 18, 12, 0.48) 62%, rgba(27, 18, 12, 0.22)),
      url("/assets/kbm-architecture.webp");
    background-position: 64% center;
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 150px 22px 250px;
  }

  .hero h1 {
    font-size: clamp(70px, 21vw, 108px);
    line-height: 0.84;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .hero-bottom {
    min-height: 178px;
    padding: 23px;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .hero-bottom div {
    flex-direction: column;
    gap: 3px;
  }

  .hero-bottom strong {
    font-size: 28px;
  }

  .hero-bottom p {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .manifesto,
  .division-content,
  .section-title,
  .integration,
  .partnerships {
    padding-left: 22px;
    padding-right: 22px;
  }

  .manifesto {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .lead-quote {
    font-size: clamp(42px, 13vw, 62px);
  }

  .manifesto-columns {
    margin-top: 55px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .value-chain {
    padding: 100px 22px;
    gap: 65px;
  }

  .value-chain h2,
  .section-title h2,
  .integration h2 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .chain-steps li {
    min-height: 100px;
    grid-template-columns: 35px 1fr;
    gap: 15px;
  }

  .chain-steps small {
    grid-column: 2;
    margin-top: -25px;
    padding-bottom: 16px;
  }

  .section-title {
    min-height: 560px;
    padding-top: 110px;
    padding-bottom: 100px;
  }

  .section-title > p:last-child {
    margin-left: 0;
  }

  .division-visual {
    min-height: 560px;
  }

  .division-built-image {
    background-position: 58% center;
  }

  .division-lifestyle-image {
    background-position: 54% center;
  }

  .culture-visuals,
  .agro-visuals {
    grid-template-columns: 1fr;
  }

  .culture-visuals .division-visual,
  .agro-visuals .division-visual {
    min-height: 520px;
  }

  .division-content {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .division-heading {
    margin-bottom: 70px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .division-number {
    padding: 0 0 20px;
  }

  .division-heading h3 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .division-heading > p {
    grid-column: 1;
    margin-top: 12px;
  }

  .company-grid,
  .company-grid-three,
  .company-grid-four,
  .company-grid-culture {
    grid-template-columns: 1fr;
  }

  .company-card,
  .company-grid-three .company-card,
  .company-grid-four .company-card,
  .company-grid-culture .company-card {
    min-height: 340px;
    padding: 30px;
  }

  .company-card h4 {
    font-size: 27px;
  }

  .company-external {
    margin-left: 0;
  }

  .trafalgar-card {
    grid-column: auto;
    min-height: 590px !important;
    grid-template-columns: 1fr;
  }

  .company-card-logo > .logo-hotel {
    height: 280px;
  }

  .featured-project {
    padding: 24px;
    grid-template-columns: 90px 1fr;
    gap: 24px;
  }

  .featured-project > img {
    width: 90px;
    height: 145px;
  }

  .featured-project > span {
    display: none;
  }

  .featured-project h4 {
    font-size: 36px;
  }

  .integration {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 110px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .integration-heading {
    position: static;
  }

  .integration-story {
    padding-top: 0;
  }

  .integration-story > p {
    font-size: 26px;
  }

  .integration-story .integration-result {
    font-size: 43px;
  }

  .presence {
    min-height: 800px;
    align-items: flex-end;
  }

  .presence-image {
    background-image:
      linear-gradient(0deg, rgba(6, 10, 9, 0.9), rgba(6, 10, 9, 0.18)),
      url("/assets/kbm-city.webp");
  }

  .presence-content {
    width: auto;
    margin: 0;
    padding: 110px 22px 85px;
  }

  .presence h2,
  .partnerships h2 {
    font-size: clamp(58px, 17vw, 84px);
  }

  .partnerships {
    min-height: 820px;
    align-items: flex-start;
    padding-top: 110px;
  }

  .partnership-copy {
    max-width: 100%;
  }

  .gold-disc {
    top: auto;
    right: -25vw;
    bottom: -19vw;
    width: 88vw;
    height: 88vw;
    transform: none;
  }

  .partnership-mark {
    top: auto;
    right: -5vw;
    bottom: 0;
    width: 60vw;
    transform: none;
  }

  .site-footer {
    padding: 75px 22px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-top > p {
    font-size: 34px;
  }

  .footer-top nav {
    padding-bottom: 55px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom > a {
    justify-self: start;
  }

  .credits {
    left: 0;
    grid-template-columns: 1fr;
    transform: 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 {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .company-overview,
  .project-system,
  .founder-section {
    grid-template-columns: 0.6fr 1fr;
    gap: 65px;
  }

  .company-profile-detail {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .brand-system-heading,
  .brand-system-grid,
  .urbanhills-corporate-heading,
  .urbanhills-governance,
  .partnership-locations {
    grid-template-columns: 1fr;
  }

  .urbanhills-work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-preview > section {
    grid-template-columns: 1fr;
  }

  .project-preview > section > header {
    padding: 34px;
  }

  .brand-system-grid {
    border-left: 0;
  }

  .brand-system-card {
    min-height: 225px;
    border-left: 1px solid var(--line);
  }

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

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

  .company-pagination {
    grid-template-columns: 1fr 155px 1fr;
  }

  .company-pagination a {
    padding: 30px 25px;
  }
}

@media (max-width: 720px) {
  .inner-hero,
  .company-detail-hero {
    min-height: 790px;
  }

  .inner-hero-content,
  .company-detail-content {
    width: auto;
    margin: 0;
    padding: 145px 22px 80px;
  }

  .inner-hero h1,
  .company-detail-content h1,
  .project-identity h1,
  .not-found h1 {
    font-size: clamp(55px, 16vw, 78px);
  }

  .breadcrumbs {
    margin-bottom: 38px;
    flex-wrap: wrap;
  }

  .detail-logo {
    width: 120px;
    height: 82px;
  }

  .portfolio-browser,
  .pathways,
  .company-overview,
  .project-system,
  .connected-section,
  .founder-section,
  .principles,
  .contact-direction,
  .page-cta,
  .urbanhills-work-showcase {
    padding-left: 22px;
    padding-right: 22px;
  }

  .urbanhills-work-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .urbanhills-work-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .urbanhills-work-card > span {
    height: 300px;
  }

  .project-preview {
    padding: 0;
  }

  .project-preview > section {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
  }

  .project-preview > section > div {
    min-height: 58dvh;
  }

  .project-preview > section > div img {
    max-height: 58dvh;
  }

  .project-preview > section > header {
    min-height: 42dvh;
    padding: 34px 22px;
  }

  .company-office-grid,
  .company-profile-grid {
    grid-template-columns: 1fr;
  }

  .company-profile-detail {
    padding-top: 70px;
  }

  .urbanhills-corporate {
    padding-top: 70px;
  }

  .urbanhills-governance article {
    min-height: auto;
  }

  .urbanhills-governance ul {
    margin-top: 45px;
  }

  .company-profile-grid article {
    min-height: 210px;
  }

  .browser-heading,
  .connected-heading,
  .contact-direction {
    grid-template-columns: 1fr;
  }

  .browser-heading > p {
    justify-self: start;
  }

  .portfolio-grid,
  .connected-grid,
  .pathway-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card,
  .connected-grid .portfolio-card {
    min-height: 340px;
  }

  .page-cta {
    min-height: 620px;
  }

  .page-cta h2,
  .browser-heading h2,
  .connected-heading h2,
  .overview-intro h2,
  .founder-copy h2,
  .principles-heading h2 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .page-cta > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .company-overview,
  .project-system,
  .founder-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 110px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .overview-intro,
  .founder-number {
    position: static;
  }

  .overview-copy > p {
    font-size: 27px;
  }

  .connected-heading .eyebrow,
  .connected-heading h2,
  .connected-heading > p {
    grid-column: 1;
    grid-row: auto;
  }

  .connected-heading .eyebrow {
    margin-bottom: 0;
  }

  .company-pagination {
    grid-template-columns: 1fr;
  }

  .company-pagination a,
  .company-pagination a:last-child {
    min-height: 135px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-pagination .all-companies-link {
    min-height: 110px;
    order: 3;
  }

  .founder-number {
    width: 250px;
    height: 250px;
  }

  .principle-grid article {
    min-height: 300px;
  }

  .pathway-card {
    min-height: 340px;
  }

  .contact-direction {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .project-hero {
    min-height: auto;
    padding: 130px 22px 90px;
  }

  .project-identity {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .project-identity > img {
    width: min(70vw, 330px);
  }

  .not-found {
    align-items: flex-start;
    text-align: left;
  }

  .not-found > div {
    align-items: flex-start;
    flex-direction: column;
  }
}
