:root {
  --black: #090a0a;
  --charcoal: #121413;
  --charcoal-2: #1b1e1c;
  --ivory: #f3f0e8;
  --ivory-2: #e8e3d7;
  --white: #fffdf8;
  --gold: #b89a5b;
  --gold-bright: #d0b270;
  --muted: #6d706b;
  --line: rgba(16, 17, 16, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 86px;
  --shell: min(1220px, calc(100vw - 64px));
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; background: var(--white); color: var(--black); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body, input, select, textarea, button { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--black); }

.skip-link { position: fixed; left: 16px; top: 12px; z-index: 999; padding: 12px 16px; background: var(--gold); color: var(--black); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
h1 { font-size: clamp(3.8rem, 7vw, 7.7rem); line-height: .94; }
h2 { font-size: clamp(2.7rem, 5.2vw, 5.7rem); line-height: .98; }
h3 { font-size: 1.55rem; line-height: 1.2; }
p { font-size: 1rem; line-height: 1.7; }
.eyebrow { margin: 0 0 22px; color: #4f524f; font-size: .72rem; font-weight: 700; letter-spacing: .18em; line-height: 1.35; text-transform: uppercase; }
.eyebrow--gold { color: var(--gold-bright); }
.muted { color: var(--muted); }

.dark-grid { position: relative; background-color: var(--black); background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 54px 54px; color: var(--white); }
.dark-grid::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 72% 38%, rgba(184,154,91,.11), transparent 34%), linear-gradient(90deg, rgba(9,10,10,.12), rgba(9,10,10,.72)); }
.dark-grid > * { position: relative; z-index: 1; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 0; font-size: .79rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease); cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button--compact { min-height: 44px; padding-inline: 18px; font-size: .69rem; }
.button--gold { background: var(--gold-bright); color: var(--black); }
.button--gold:hover { background: #e0c482; }
.button--dark { background: var(--black); color: var(--white); }
.button--dark:hover { background: var(--charcoal-2); }
.button--outline { border-color: rgba(8,9,9,.45); background: transparent; }
.button--outline:hover { background: var(--black); color: var(--white); }
.button--light { border-color: rgba(255,255,255,.38); color: var(--white); }
.button--light:hover { background: var(--white); color: var(--black); }
.button:disabled { opacity: .6; cursor: wait; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.arrow-icon { font-size: 1rem; }
.text-link { display: inline-flex; gap: 14px; align-items: center; border-bottom: 1px solid currentColor; padding-bottom: 8px; font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; transition: gap .3s var(--ease), color .3s; }
.text-link:hover { gap: 22px; color: var(--gold); }
.text-link--light { color: var(--white); }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h); color: var(--white); transition: background .35s, height .35s, border-color .35s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { height: 70px; background: rgba(9,10,10,.94); backdrop-filter: blur(18px); border-bottom-color: rgba(255,255,255,.1); }
.site-header__inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; }
.brand-mark { display: inline-flex; width: 72px; height: 72px; flex: 0 0 auto; align-items: center; justify-content: center; overflow: hidden; border: 0; background: transparent; box-shadow: 0 12px 35px rgba(0,0,0,.18); transition: width .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease); }
.brand-mark__image { width: 100%; height: 100%; object-fit: contain; background: transparent; }
.site-header.is-scrolled .brand-mark { width: 56px; height: 56px; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.footer-brand .brand-mark { width: 148px; height: 148px; box-shadow: none; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 34px); }
.desktop-nav a { position: relative; font-size: .68rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; opacity: .8; transition: opacity .25s; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -10px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.is-active { opacity: 1; }
.desktop-nav a.is-active::after { transform: scaleX(1); }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.28); background: transparent; padding: 12px; cursor: pointer; }
.menu-button span { display: block; height: 1px; background: currentColor; margin: 6px 0; }
.mobile-panel { display: none; }

/* Homepage hero */
.home-hero { min-height: 100svh; overflow: hidden; padding: calc(var(--header-h) + 72px) 0 74px; }
.home-hero__grid { min-height: calc(100svh - var(--header-h) - 146px); display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); align-items: center; gap: 6vw; }
.home-hero__copy { position: relative; z-index: 2; max-width: 720px; }
.home-hero h1 { margin-bottom: 34px; }
.home-hero h1 em { color: var(--gold-bright); font-style: normal; }
.home-hero__lead { max-width: 660px; color: rgba(255,255,255,.75); font-size: clamp(1rem, 1.4vw, 1.25rem); }
.home-hero .button-row { margin-top: 36px; }
.hero-proof { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 650px; margin-top: 58px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-proof > div { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 18px 18px 0 0; }
.hero-proof > div + div { border-left: 1px solid rgba(255,255,255,.18); padding-left: 22px; }
.hero-proof strong { color: var(--gold-bright); font-family: var(--serif); font-size: 2.25rem; font-weight: 400; }
.hero-proof span { color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.5; text-transform: uppercase; letter-spacing: .06em; }
.scroll-cue { position: absolute !important; z-index: 5 !important; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.48); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue span { width: 30px; height: 1px; background: var(--gold); animation: scrollCue 1.8s ease-in-out infinite; transform-origin: left; }
@keyframes scrollCue { 0%,100% { transform: scaleX(.3); } 50% { transform: scaleX(1); } }
.hero-visual { position: relative; aspect-ratio: 1/1; max-height: 690px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: radial-gradient(circle at 72% 28%, rgba(184,154,91,.15), transparent 30%), rgba(255,255,255,.015); }
.hero-visual__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 40px 40px; }
.hero-visual__drawing { position: absolute; inset: 4%; width: 92%; height: 92%; overflow: visible; }
.hero-visual__drawing path { fill: none; stroke: var(--gold); stroke-width: 1.2; opacity: .72; stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: lineDraw 3s var(--ease) forwards; }
.hero-visual__drawing .line-b { animation-delay: .4s; opacity: .42; }
.hero-visual__drawing .line-c { animation-delay: .8s; opacity: .3; }
.hero-visual__drawing .line-d { animation-delay: 1.1s; opacity: .2; }
.hero-visual__drawing circle { fill: var(--gold); opacity: .8; }
@keyframes lineDraw { to { stroke-dashoffset: 0; } }
.hero-visual__mass { position: absolute; bottom: 18%; width: 20%; border: 1px solid rgba(255,255,255,.14); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.01)); box-shadow: 20px -12px 0 rgba(184,154,91,.035); }
.mass-one { height: 45%; right: 21%; transform: skewY(-7deg); }
.mass-two { height: 31%; right: 43%; transform: skewY(5deg); }
.hero-visual__caption { position: absolute; left: 28px; bottom: 24px; display: flex; align-items: flex-start; gap: 16px; max-width: 260px; }
.hero-visual__caption span { color: var(--gold); font-family: var(--serif); font-size: 1.7rem; }
.hero-visual__caption p { color: rgba(255,255,255,.6); font-size: .7rem; line-height: 1.6; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual__stamp { position: absolute; right: 18px; top: 20px; writing-mode: vertical-rl; color: rgba(255,255,255,.32); font-size: .5rem; letter-spacing: .2em; }

/* Pathways */
.pathways { background: var(--white); }
.pathways__grid { display: grid; grid-template-columns: 1.22fr .78fr; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.pathway { position: relative; min-height: 530px; padding: clamp(50px, 6vw, 86px); overflow: hidden; }
.pathway + .pathway { border-left: 1px solid var(--line); }
.pathway--developer { background: var(--ivory); }
.pathway--buyer { background: var(--white); }
.pathway__number { position: absolute; right: 26px; top: 28px; color: rgba(0,0,0,.14); font-family: var(--serif); font-size: 5rem; }
.pathway h2 { max-width: 720px; margin-bottom: 28px; font-size: clamp(2.5rem, 4.2vw, 5rem); }
.pathway p:not(.eyebrow) { max-width: 590px; color: var(--muted); }
.pathway .text-link { margin-top: 36px; }

/* Scroll story */
.scroll-story { height: 290vh; background: var(--black); }
.scroll-story__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scroll-story__layout { height: 100%; display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: center; }
.scroll-story__copy { position: relative; z-index: 4; }
.scroll-story__copy h2 { margin-bottom: 55px; font-size: clamp(3rem, 5vw, 6rem); }
.story-stage { min-height: 185px; border-left: 1px solid var(--gold); padding-left: 24px; }
.story-stage > span { color: var(--gold); font-size: .66rem; letter-spacing: .18em; }
.story-stage h3 { margin: 15px 0 12px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.story-stage p { color: rgba(255,255,255,.62); max-width: 480px; }
.scroll-story__copy .text-link { margin-top: 25px; }
.story-canvas { --story-progress: 0; position: relative; aspect-ratio: 1.1/1; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.015); overflow: hidden; }
.story-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 34px 34px; }
.story-site { position: absolute; inset: 3%; width: 94%; height: 94%; transition: opacity .5s, transform .8s var(--ease); }
.story-site path { fill: none; stroke: rgba(184,154,91,.42); stroke-width: 1; }
.story-site .story-boundary { stroke: var(--gold-bright); stroke-width: 2; stroke-dasharray: 1900; stroke-dashoffset: calc(1900 - (1900 * min(var(--story-progress), .18) / .18)); }
.story-building { position: absolute; left: 38%; top: 23%; width: 26%; height: 46%; opacity: 0; transform: translateY(60px) scale(.82); transition: opacity .6s, transform .9s var(--ease); }
.story-building__face { position: absolute; inset: 10% 22% 0 0; border: 1px solid rgba(208,178,112,.68); background: repeating-linear-gradient(to bottom, rgba(255,255,255,.08) 0 2px, transparent 2px 28px), linear-gradient(135deg, rgba(208,178,112,.14), rgba(255,255,255,.02)); }
.story-building__side { position: absolute; right: 0; top: 0; width: 23%; height: 90%; border: 1px solid rgba(208,178,112,.36); transform: skewY(-25deg); transform-origin: bottom; }
.story-building__top { position: absolute; top: 0; left: 0; width: 78%; height: 12%; border: 1px solid rgba(208,178,112,.36); transform: skewX(-50deg) translateX(7%); }
.story-system { position: absolute; inset: 15%; opacity: 0; transition: opacity .5s; }
.story-system span { --i: 0; position: absolute; left: calc(8% + var(--i) * 18%); top: calc(16% + (var(--i) % 2) * 54%); display: grid; place-items: center; width: 88px; aspect-ratio: 1; border: 1px solid rgba(208,178,112,.44); border-radius: 50%; color: rgba(255,255,255,.72); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.story-system span::after { content: ""; position: absolute; left: 100%; top: 50%; width: 78px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.story-map { position: absolute; inset: 13% 19%; opacity: 0; transform: scale(.8); transition: opacity .55s, transform .8s var(--ease); }
.story-map svg { width: 100%; height: 100%; }
.story-map path { fill: rgba(184,154,91,.05); stroke: rgba(208,178,112,.56); stroke-width: 1.4; }
.story-map i { --i: 0; position: absolute; left: calc(22% + (var(--i) % 3) * 24%); top: calc(20% + (var(--i) % 4) * 17%); width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 0 rgba(208,178,112,.35); animation: nodePulse 2.4s infinite; animation-delay: calc(var(--i) * .18s); }
@keyframes nodePulse { 50% { box-shadow: 0 0 0 16px rgba(208,178,112,0); } }
.story-funnel { position: absolute; inset: auto 9% 13%; display: flex; gap: 10px; opacity: 0; transform: translateY(30px); transition: .6s var(--ease); }
.story-funnel span { flex: 1; border-top: 1px solid var(--gold); padding-top: 12px; color: rgba(255,255,255,.55); font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; }
.story-complete { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; opacity: 0; transform: scale(.9); transition: .7s var(--ease); }
.story-complete span { color: var(--gold); font-size: .7rem; letter-spacing: .4em; }
.story-complete strong { margin-top: 12px; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 5rem); font-weight: 400; }
.story-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.08); }
.story-progress i { display: block; height: 100%; background: var(--gold); transform-origin: left; }
.story-canvas.stage-2 .story-building, .story-canvas.stage-3 .story-building { opacity: 1; transform: translateY(0) scale(1); }
.story-canvas.stage-3 .story-system { opacity: 1; }
.story-canvas.stage-4 .story-site, .story-canvas.stage-4 .story-building, .story-canvas.stage-4 .story-system { opacity: .05; transform: scale(.92); }
.story-canvas.stage-4 .story-map, .story-canvas.stage-5 .story-map { opacity: 1; transform: scale(1); }
.story-canvas.stage-5 .story-map { opacity: .35; }
.story-canvas.stage-5 .story-funnel { opacity: 1; transform: translateY(0); }
.story-canvas.stage-6 .story-site, .story-canvas.stage-6 .story-building, .story-canvas.stage-6 .story-system, .story-canvas.stage-6 .story-map, .story-canvas.stage-6 .story-funnel { opacity: 0; }
.story-canvas.stage-6 .story-complete { opacity: 1; transform: scale(1); }

/* Generic sections */
.section { padding: clamp(90px, 10vw, 150px) 0; background: var(--white); }
.section--ivory { background: var(--ivory); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section-intro { display: grid; grid-template-columns: minmax(0, .45fr) minmax(0, 1fr); column-gap: 8vw; align-items: start; margin-bottom: clamp(60px, 8vw, 110px); }
.section-intro .eyebrow { grid-row: 1; grid-column: 1; margin-top: 12px; }
.section-intro h2 { grid-column: 2; margin-bottom: 28px; }
.section-intro__copy { grid-column: 2; max-width: 720px; color: var(--muted); }
.section-intro--inverse .eyebrow { color: var(--gold); }
.section-intro--inverse .section-intro__copy { color: rgba(255,255,255,.6); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Projects */
.project-list { display: grid; gap: clamp(90px, 12vw, 170px); }
.project-feature { display: grid; grid-template-columns: 1.22fr .78fr; gap: clamp(45px, 7vw, 110px); align-items: center; }
.project-feature--reverse { grid-template-columns: .78fr 1.22fr; }
.project-feature--reverse .project-feature__visual { order: 2; }
.project-feature--reverse .project-feature__content { order: 1; }
.project-feature__content h3 { margin-bottom: 8px; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.6rem); font-weight: 400; letter-spacing: -.045em; }
.project-location { color: var(--gold); font-size: .73rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.project-feature__content > p:not(.eyebrow,.project-location) { color: var(--muted); max-width: 520px; }
.project-meta { display: grid; grid-template-columns: 140px 1fr; gap: 10px 18px; align-items: center; margin: 34px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-meta > span:nth-child(odd) { color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.verification-badge { display: inline-flex; align-items: center; width: fit-content; border: 1px solid rgba(184,154,91,.5); padding: 7px 10px; color: #806824; background: rgba(184,154,91,.08); font-size: .57rem; font-weight: 750; letter-spacing: .07em; line-height: 1.4; text-transform: uppercase; }
.section--charcoal .verification-badge { color: var(--gold-bright); }
.project-visual { position: relative; min-height: 620px; overflow: hidden; background: #171a18; border: 1px solid rgba(255,255,255,.08); }
.project-visual--compact { min-height: 420px; }
.project-visual__sky { position: absolute; inset: 0; background: radial-gradient(circle at 70% 22%, rgba(208,178,112,.18), transparent 24%), linear-gradient(155deg, #202421 0%, #0d0f0e 60%, #191b19 100%); }
.project-visual__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; transform: perspective(500px) rotateX(61deg) scale(1.35); transform-origin: bottom; opacity: .8; }
.project-visual__lines { position: absolute; inset: 7%; border: 1px solid rgba(208,178,112,.22); clip-path: polygon(0 20%, 75% 0, 100% 30%, 92% 100%, 18% 90%); }
.asset-placeholder { position: absolute; left: 18px; bottom: 18px; z-index: 5; padding: 8px 10px; background: rgba(8,9,8,.7); border: 1px dashed rgba(208,178,112,.55); color: var(--gold-bright); font-size: .53rem; letter-spacing: .1em; text-transform: uppercase; }
.tower-scene { position: absolute; inset: 8% 10% 0 15%; }
.tower { position: absolute; bottom: 9%; background: linear-gradient(110deg, rgba(208,178,112,.13), rgba(255,255,255,.02)); border: 1px solid rgba(208,178,112,.38); box-shadow: inset -30px 0 70px rgba(0,0,0,.4); }
.tower--main { left: 28%; width: 36%; height: 74%; transform: skewY(-2deg); display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 18px; }
.tower--main span { border-left: 1px solid rgba(255,255,255,.14); border-right: 1px solid rgba(208,178,112,.18); background: repeating-linear-gradient(to bottom, rgba(255,255,255,.07) 0 2px, transparent 2px 38px); }
.tower--rear { left: 8%; width: 27%; height: 55%; opacity: .55; }
.tower-podium { position: absolute; left: 6%; right: 4%; bottom: 4%; height: 18%; border: 1px solid rgba(208,178,112,.28); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(0,0,0,.35)); transform: skewX(-8deg); }
.residence-scene { position: absolute; inset: 26% 3% 8%; display: flex; align-items: flex-end; gap: 3%; perspective: 900px; }
.residence { position: relative; width: 32%; height: 62%; border: 1px solid rgba(208,178,112,.34); background: linear-gradient(135deg, rgba(208,178,112,.13), rgba(255,255,255,.025)); transform: rotateY(-8deg); box-shadow: inset -35px 0 50px rgba(0,0,0,.4); }
.residence--two { height: 78%; transform: translateY(-4%) rotateY(-4deg); }
.residence--three { height: 58%; transform: rotateY(8deg); }
.residence::before { content: ""; position: absolute; left: 8%; right: 8%; top: -13%; height: 13%; border: 1px solid rgba(208,178,112,.3); transform: skewX(-27deg); transform-origin: bottom; }
.residence span { display: block; margin: 18% 14% 0; height: 13%; border: 1px solid rgba(255,255,255,.13); background: rgba(0,0,0,.22); }

/* Capabilities */
.capability-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.capability-layout > .section-intro { display: block; margin-bottom: 0; }
.capability-layout > .section-intro h2, .capability-layout > .section-intro .section-intro__copy, .capability-layout > .section-intro .eyebrow { display: block; }
.capability-system { position: relative; display: grid; grid-template-columns: 90px 1fr; border-top: 1px solid var(--line); }
.capability-system__spine { border-right: 1px solid var(--line); display: flex; justify-content: center; padding-top: 28px; }
.capability-system__spine span { writing-mode: vertical-rl; color: var(--gold); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.capability-system__items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.capability-item { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: center; min-height: 94px; padding: 18px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-item span { color: var(--gold); font-family: var(--serif); }
.capability-item p { margin: 0; font-size: .87rem; line-height: 1.35; }

/* Leadership */
.leadership-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: center; }
.leadership-portrait { position: relative; overflow: hidden; border: 1px solid rgba(208,178,112,.34); background: #151716; box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.leadership-portrait::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(208,178,112,.24); pointer-events: none; }
.leadership-portrait img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%; filter: saturate(.9) contrast(1.02); transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .6s ease; }
.leadership-portrait:hover img { transform: scale(1.025); filter: saturate(.97) contrast(1.04); }
.leadership-copy h2 { margin-bottom: 44px; }
.leadership-copy h3 { margin-bottom: 6px; font-family: var(--serif); font-size: 2.4rem; font-weight: 400; }
.leadership-role { color: var(--gold); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.leadership-copy > p:not(.eyebrow,.leadership-role) { color: rgba(255,255,255,.64); max-width: 680px; }
.credential-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 22px; }
.credential-row span { border: 1px solid rgba(255,255,255,.16); padding: 12px 14px; color: rgba(255,255,255,.7); font-size: .63rem; letter-spacing: .07em; text-transform: uppercase; }
.leadership-copy .text-link, .leadership-copy .button { margin-top: 30px; }

/* Developer journey */
.developer-value__grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 9vw; align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.sticky-copy p:not(.eyebrow) { color: var(--muted); }
.sticky-copy .button { margin-top: 26px; }
.journey-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.journey-list li { display: grid; grid-template-columns: 65px 1fr; align-items: center; min-height: 108px; border-bottom: 1px solid var(--line); }
.journey-list span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.journey-list strong { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 400; }
.journey-list--dark { border-top-color: var(--line-dark); }
.journey-list--dark li { border-bottom-color: var(--line-dark); }

/* Network */
.network-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 7vw; align-items: center; }
.network-layout > div:first-child > p:not(.eyebrow) { color: var(--muted); max-width: 560px; }
.network-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.network-tags span { padding: 9px 11px; border: 1px solid var(--line); font-size: .61rem; letter-spacing: .06em; text-transform: uppercase; }
.network-map { position: relative; min-height: 660px; border: 1px solid var(--line); background: rgba(255,255,255,.25); overflow: hidden; }
.network-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px); background-size: 42px 42px; }
.network-map svg { position: absolute; inset: 9% 18%; width: 64%; height: 82%; }
.network-map__country { fill: rgba(184,154,91,.06); stroke: rgba(0,0,0,.34); stroke-width: 1.2; }
.network-map__route { fill: none; stroke: var(--gold); stroke-width: 1.1; stroke-dasharray: 8 8; animation: routeFlow 7s linear infinite; }
.route-2 { animation-delay: -2s; }.route-3 { animation-delay: -4s; }
@keyframes routeFlow { to { stroke-dashoffset: -140; } }
.network-node { --i: 0; position: absolute; transform: translate(-50%,-50%); padding: 8px 10px 8px 18px; background: var(--black); color: var(--white); font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(0,0,0,.14); }
.network-node::before { content: ""; position: absolute; left: 7px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); }
.network-map__key { position: absolute; left: 18px; bottom: 18px; color: var(--muted); font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; }

/* Buyers / process / insights */
.buyer-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: center; }
.buyer-visual { position: relative; min-height: 570px; display: grid; place-content: center; text-align: center; overflow: hidden; }
.buyer-visual strong { color: var(--gold); font-family: var(--serif); font-size: clamp(4rem, 8vw, 8rem); font-weight: 400; letter-spacing: -.05em; }
.buyer-visual small { color: rgba(255,255,255,.5); font-size: .65rem; letter-spacing: .24em; text-transform: uppercase; }
.buyer-visual__line { position: absolute; left: 12%; top: 12%; right: 12%; bottom: 12%; border: 1px solid rgba(208,178,112,.24); transform: rotate(7deg); }
.buyer-grid > div:last-child > p:not(.eyebrow) { color: var(--muted); }
.clean-list { margin: 28px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.clean-list li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.process-item { min-height: 260px; padding: 32px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.process-item > span { color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.process-item h3 { margin: 50px 0 13px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.process-item p { color: rgba(255,255,255,.56); font-size: .88rem; }
.insights-heading { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; margin-bottom: 70px; }
.insights-heading .section-intro { display: block; margin: 0; max-width: 820px; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-bottom: 40px; }
.insight-card { min-height: 370px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.insight-card > span { color: var(--gold); font-family: var(--serif); font-size: 1.6rem; }
.insight-card .eyebrow { margin-top: 70px; }
.insight-card h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.insight-card > p:last-child { color: var(--muted); font-size: .82rem; }
.topic-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 60px; }
.topic-cloud span { padding: 11px 14px; border: 1px solid var(--line); color: var(--muted); font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }

/* Final CTA / Footer */
.final-cta { padding: clamp(100px, 12vw, 180px) 0; }
.final-cta__inner { max-width: 1050px; text-align: center; }
.final-cta h2 { margin-bottom: 30px; }
.final-cta p:not(.eyebrow) { max-width: 650px; margin: 0 auto 36px; color: rgba(255,255,255,.62); }
.final-cta .button-row { justify-content: center; }
.final-cta--light { background: var(--ivory); color: var(--black); }
.final-cta--light p:not(.eyebrow) { color: var(--muted); }
.site-footer { background: #080909; color: var(--white); padding: 76px 0 28px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 60px; padding-bottom: 65px; }
.footer-brand > p { max-width: 330px; margin-top: 45px; color: rgba(255,255,255,.48); font-size: .8rem; }
.footer-label { color: var(--gold); font-size: .61rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .76rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.verification-block { display: grid; gap: 6px; padding: 14px; border: 1px dashed rgba(184,154,91,.45); }
.verification-block strong { color: var(--gold); font-size: .56rem; letter-spacing: .08em; }
.verification-block span { color: rgba(255,255,255,.45); font-size: .68rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: .6rem; letter-spacing: .05em; }

/* Internal page hero */
.page-hero { min-height: 75vh; padding: calc(var(--header-h) + 100px) 0 100px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; }
.page-hero h1 { margin: 0; max-width: 900px; }
.page-hero__aside { padding-bottom: 12px; }
.page-hero__aside > p { color: rgba(255,255,255,.66); max-width: 560px; font-size: 1.1rem; }
.page-hero__aside .button { margin-top: 24px; }
.page-hero__index { position: absolute; right: 3vw; bottom: -6vw; z-index: 0 !important; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 28vw; line-height: .8; }
.two-column-copy, .problem-grid, .advisory-note { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; }
.two-column-copy > div:last-child p, .problem-grid > div:last-child p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.service-grid article { min-height: 280px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid article span { color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.service-grid article h3 { margin: 50px 0 15px; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.service-grid article p { color: var(--muted); font-size: .82rem; }
.buyer-principles { display: grid; grid-template-columns: .66fr 1.34fr; gap: 7vw; }
.principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle-grid article { min-height: 220px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-grid span { color: var(--gold); font-family: var(--serif); }
.principle-grid h3 { margin: 32px 0 10px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.principle-grid p { color: var(--muted); font-size: .82rem; }
.advisory-note > div:last-child p { color: rgba(255,255,255,.62); }

/* Project detail */
.project-hero { position: relative; min-height: 90vh; background: var(--black); overflow: hidden; }
.project-hero__visual { position: absolute; inset: 0; }
.project-hero__visual .project-visual { min-height: 100%; height: 100%; }
.project-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,10,.92) 10%, rgba(9,10,10,.48) 58%, rgba(9,10,10,.22)), linear-gradient(0deg, rgba(9,10,10,.8), transparent 55%); }
.project-hero__overlay { position: relative; z-index: 5; min-height: 90vh; padding-top: calc(var(--header-h) + 90px); padding-bottom: 60px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); }
.project-hero__overlay h1 { margin-bottom: 12px; }
.project-hero__overlay > div:first-child > p:last-child { color: rgba(255,255,255,.58); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.project-hero__status { position: absolute; right: 0; bottom: 68px; max-width: 350px; }
.project-overview { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: start; }
.project-overview > div:last-child > p { color: var(--muted); }
.project-overview .button { margin-top: 20px; }
.project-data-section { background: var(--white); }
.project-data-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 8vw; align-items: end; margin-bottom: 70px; }
.project-data-heading > p { color: var(--muted); }
.project-data-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.project-data-item { display: grid; grid-template-columns: 50px 1fr; gap: 10px 20px; min-height: 150px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-data-item span { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.project-data-item p { margin: 0; color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.project-data-item strong { grid-column: 2; font-size: .82rem; line-height: 1.5; }
.gallery-placeholder { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; align-items: center; }
.gallery-placeholder > div:first-child p:not(.eyebrow) { color: rgba(255,255,255,.55); }
.gallery-placeholder__grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 240px); gap: 12px; }
.gallery-placeholder__grid div { display: grid; place-content: center; border: 1px dashed rgba(208,178,112,.35); color: rgba(255,255,255,.4); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 30px 30px; }
.gallery-placeholder__grid div:first-child { grid-row: span 2; }
.form-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; align-items: start; }
.form-section > div:first-child > p:not(.eyebrow) { color: var(--muted); }

/* Forms */
.lead-form { display: grid; gap: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label span { color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(0,0,0,.3); border-radius: 0; background: transparent; padding: 13px 2px; color: var(--black); outline: none; transition: border-color .2s; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-bottom-color: var(--gold); }
.form-grid textarea { resize: vertical; }
.form-grid__wide { grid-column: 1 / -1; }
.privacy-placeholder { border: 1px dashed rgba(184,154,91,.55); padding: 12px 14px; color: var(--muted); font-size: .66rem; line-height: 1.5; }
.privacy-placeholder strong { color: #82691f; }
.form-error { color: #9d2c2c; font-size: .78rem; }
.contact-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.contact-card { padding: clamp(28px, 4vw, 52px); background: var(--white); border: 1px solid var(--line); transition: opacity .3s; }
.contact-card--muted { opacity: .55; }
.contact-card > p:not(.eyebrow) { color: var(--muted); }
.contact-card .lead-form { margin-top: 46px; }
.contact-card .form-grid { grid-template-columns: 1fr; }
.contact-card .form-grid__wide { grid-column: auto; }

/* Thank you */
.thank-you { min-height: 100vh; display: grid; place-items: center; padding: calc(var(--header-h) + 60px) 0 80px; }
.thank-you__inner { max-width: 760px; text-align: center; }
.thank-you h1 { margin-bottom: 25px; }
.thank-you p:not(.eyebrow) { color: rgba(255,255,255,.6); }
.thank-you .button { margin-top: 25px; }

/* Scroll motion system */
.site-scroll-progress { position: fixed; inset: 0 auto auto 0; z-index: 999; width: 100%; height: 2px; background: var(--gold-bright); transform: scaleX(0); transform-origin: left center; pointer-events: none; will-change: transform; }
.motion-ready [data-scroll-reveal] { opacity: 0; transform: translate3d(0, 34px, 0); transition: opacity .85s var(--ease) var(--reveal-delay, 0ms), transform .85s var(--ease) var(--reveal-delay, 0ms); will-change: opacity, transform; }
.motion-ready [data-scroll-reveal][data-motion="left"] { transform: translate3d(-42px, 0, 0); }
.motion-ready [data-scroll-reveal][data-motion="right"] { transform: translate3d(42px, 0, 0); }
.motion-ready [data-scroll-reveal][data-motion="scale"] { transform: scale(.965); }
.motion-ready [data-scroll-reveal].is-revealed { opacity: 1; transform: none; }
.motion-ready [data-scroll-reveal][data-stagger="true"] > * { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--reveal-delay, 0ms) + (var(--stagger-index, 0) * 80ms)); }
.motion-ready [data-scroll-reveal][data-stagger="true"].is-revealed > * { opacity: 1; transform: none; }
.section-intro::after { content: ""; display: block; grid-column: 1 / -1; width: 100%; height: 1px; margin-top: 28px; background: linear-gradient(90deg, var(--gold), transparent 72%); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease) .15s; }
.section-intro.is-revealed::after { transform: scaleX(1); }
.project-visual__image { transition: transform 1.2s var(--ease); }
.project-feature:hover .project-visual__image { transform: scale(1.025); }
.contact-direct__links strong { line-height: 1.35; }

/* Responsive */
@media (max-width: 1120px) {
  :root { --shell: min(100% - 42px, 1080px); }
  .desktop-nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto auto; }
  .menu-button { display: block; }
  .mobile-panel { display: block; position: fixed; inset: var(--header-h) 0 0; background: rgba(9,10,10,.98); transform: translateY(-120%); transition: transform .55s var(--ease); pointer-events: none; }
  .site-header.is-scrolled .mobile-panel { top: 70px; }
  .mobile-panel.is-open { transform: translateY(0); pointer-events: auto; }
  .mobile-nav { display: grid; padding-top: 6vh; }
  .mobile-nav > a:not(.button) { display: grid; grid-template-columns: 42px 1fr; align-items: center; min-height: 64px; border-bottom: 1px solid rgba(255,255,255,.11); font-family: var(--serif); font-size: 1.6rem; }
  .mobile-nav > a span { color: var(--gold); font-family: var(--sans); font-size: .6rem; }
  .mobile-nav .button { margin-top: 34px; justify-self: start; }
  .home-hero__grid { grid-template-columns: 1.02fr .98fr; gap: 3vw; }
  .home-hero h1 { font-size: clamp(3.7rem, 6.6vw, 6.2rem); }
  .scroll-story__layout { gap: 4vw; }
  .project-feature, .project-feature--reverse { grid-template-columns: 1fr 1fr; gap: 45px; }
  .project-visual { min-height: 520px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  :root { --header-h: 74px; --shell: min(100% - 36px, 760px); }
  .header-cta { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .brand-mark { width: 58px; height: 58px; }
  .site-header.is-scrolled .brand-mark { width: 50px; height: 50px; }
  .home-hero { padding-top: calc(var(--header-h) + 72px); }
  .home-hero__grid { display: block; }
  .home-hero__copy { max-width: 720px; }
  .hero-visual { margin: 70px auto 0; max-width: 640px; }
  .scroll-cue { display: none; }
  .pathways__grid { grid-template-columns: 1fr; }
  .pathway + .pathway { border-left: 0; border-top: 1px solid var(--line); }
  .pathway { min-height: auto; }
  .scroll-story { height: auto; }
  .scroll-story__sticky { position: relative; height: auto; padding: 110px 0; }
  .scroll-story__layout { grid-template-columns: 1fr; }
  .story-canvas { margin-top: 40px; }
  .story-stage { min-height: 155px; }
  .scroll-story__copy h2 { margin-bottom: 35px; }
  .story-canvas .story-site { opacity: 1; }
  .story-canvas .story-building { opacity: 1; transform: translateY(0) scale(1); }
  .story-canvas .story-system { opacity: .6; }
  .section-intro { display: block; }
  .section-intro h2, .section-intro__copy { grid-column: auto; }
  .project-feature, .project-feature--reverse { grid-template-columns: 1fr; }
  .project-feature--reverse .project-feature__visual, .project-feature--reverse .project-feature__content { order: initial; }
  .project-feature__content { max-width: 650px; }
  .capability-layout, .leadership-grid, .developer-value__grid, .network-layout, .buyer-grid, .page-hero__grid, .two-column-copy, .problem-grid, .buyer-principles, .project-overview, .project-data-heading, .gallery-placeholder, .form-section, .advisory-note { grid-template-columns: 1fr; }
  .capability-layout > .section-intro { margin-bottom: 50px; }
  .leadership-portrait img { aspect-ratio: 4 / 5; }
  .sticky-copy { position: relative; top: 0; margin-bottom: 40px; }
  .network-map { min-height: 560px; }
  .buyer-visual { min-height: 470px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { min-height: 270px; }
  .insight-card .eyebrow { margin-top: 40px; }
  .page-hero { min-height: 70vh; }
  .page-hero__aside { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .project-hero__status { position: static; margin-top: 26px; }
  .gallery-placeholder__grid { margin-top: 30px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-card--muted { opacity: 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  h1 { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  h2 { font-size: clamp(2.45rem, 11vw, 4rem); }
  .home-hero { padding-bottom: 50px; }
  .footer-brand .brand-mark { width: 126px; height: 126px; }
  .home-hero .button-row, .final-cta .button-row { display: grid; }
  .home-hero .button, .final-cta .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding-left: 0; margin-top: 12px; }
  .hero-visual { margin-top: 48px; }
  .hero-visual__caption { left: 16px; bottom: 12px; }
  .pathway { padding: 48px 28px; }
  .pathway__number { font-size: 3.8rem; }
  .story-canvas { aspect-ratio: .82/1; }
  .story-system span { width: 66px; font-size: .45rem; }
  .story-funnel { flex-wrap: wrap; }
  .project-visual { min-height: 430px; }
  .project-meta { grid-template-columns: 1fr; }
  .project-meta > span:nth-child(odd) { margin-top: 10px; }
  .project-feature .button-row { display: grid; }
  .capability-system { grid-template-columns: 48px 1fr; }
  .capability-system__items { grid-template-columns: 1fr; }
  .capability-item { min-height: 78px; padding: 14px 18px; }
  .leadership-portrait img { aspect-ratio: 1 / 1; }
  .journey-list li { min-height: 88px; grid-template-columns: 50px 1fr; }
  .network-map { min-height: 470px; }
  .network-node { font-size: .46rem; padding: 6px 7px 6px 14px; }
  .buyer-visual { min-height: 380px; }
  .process-grid, .service-grid, .principle-grid, .project-data-grid { grid-template-columns: 1fr; }
  .process-item, .service-grid article { min-height: 220px; }
  .insights-heading { display: block; }
  .insights-heading .verification-badge { margin-top: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .page-hero { padding-top: calc(var(--header-h) + 80px); min-height: 82vh; }
  .page-hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .project-hero__overlay h1 { font-size: 3.6rem; }
  .gallery-placeholder__grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 190px); }
  .gallery-placeholder__grid div:first-child { grid-row: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .motion-ready [data-scroll-reveal], .motion-ready [data-scroll-reveal][data-stagger="true"] > * { opacity: 1; transform: none; transition: none; }
  .section-intro::after { transform: scaleX(1); transition: none; }
  .site-scroll-progress { display: none; }
  .scroll-story { height: auto; }
  .scroll-story__sticky { position: relative; height: auto; padding: 100px 0; }
  .story-canvas .story-site, .story-canvas .story-building, .story-canvas .story-system { opacity: 1; transform: none; }
}

/* Supplied project artwork */
.project-visual--image { background: #05090d; }
.project-visual__image { object-fit: cover; object-position: center; }
.project-visual__image-frame { position: absolute; inset: 2.2%; border: 1px solid rgba(208,178,112,.44); pointer-events: none; }
.project-hero--artwork { min-height: min(90vh, 860px); }
.project-hero--artwork .project-hero__visual::after { background: linear-gradient(0deg, rgba(5,8,10,.44), transparent 30%); }
.project-hero--artwork .project-hero__title--artwork { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

/* Direct contact */
.contact-direct-section { background: var(--charcoal); color: var(--white); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-direct { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: end; padding-block: 64px; }
.contact-direct h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4.3vw, 4.6rem); }
.contact-direct__links { display: grid; }
.contact-direct__links a { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 22px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.18); transition: color .25s, padding-left .25s var(--ease); }
.contact-direct__links a:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-direct__links a:hover { color: var(--gold-bright); padding-left: 8px; }
.contact-direct__links span { color: rgba(255,255,255,.48); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-direct__links strong { font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 2rem); font-weight: 400; }
.footer-contact-links a { text-transform: none; letter-spacing: 0; }
.footer-contact-note, .footer-address { display: inline-block; margin-top: 16px; color: rgba(255,255,255,.46); font-size: .72rem; line-height: 1.65; transition: color .25s; }
.footer-address:hover { color: var(--gold-bright); }

@media (max-width: 860px) {
  .contact-direct { grid-template-columns: 1fr; align-items: start; }
  .project-hero--artwork .project-hero__visual .project-visual { min-height: 70vh; }
}

@media (max-width: 600px) {
  .project-hero--artwork { min-height: 78svh; }
  .project-hero--artwork .project-hero__visual .project-visual { min-height: 78svh; }
  .project-hero--artwork .project-visual__image { object-position: 69% center; }
  .project-hero--artwork .project-hero__visual::after { background: linear-gradient(0deg, rgba(5,8,10,.92) 0%, rgba(5,8,10,.2) 48%, transparent 70%); }
  .project-hero--artwork .project-hero__title--artwork { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal; max-width: 90%; }
  .project-hero--artwork .project-hero__overlay { min-height: 78svh; padding-bottom: 34px; }
  .contact-direct { padding-block: 48px; }
  .contact-direct__links a { grid-template-columns: 1fr; gap: 8px; }
  .contact-direct__links strong { overflow-wrap: anywhere; }
}

/* ================================================================
   Divi adapter — keeps Divi wrappers from changing the standalone UI
   ================================================================ */
body.raum-realty-divi-site.home #main-content,
body.raum-realty-divi-site.page-id-0 #main-content { padding-top: 0 !important; }
body.raum-realty-divi-site .rr-exact-wrapper,
body.raum-realty-divi-site .rr-exact-wrapper > .et_pb_row,
body.raum-realty-divi-site .rr-exact-row,
body.raum-realty-divi-site .rr-exact-row > .et_pb_column,
body.raum-realty-divi-site .rr-exact-code,
body.raum-realty-divi-site .rr-exact-code .et_pb_code_inner {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.raum-realty-divi-site .rr-exact-home p,
body.raum-realty-divi-site .rr-exact-home h1,
body.raum-realty-divi-site .rr-exact-home h2,
body.raum-realty-divi-site .rr-exact-home h3 { padding-bottom: 0; }
body.raum-realty-divi-site .rr-exact-home .button::after { display: none !important; }
body.raum-realty-divi-site .rr-exact-home .project-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
body.raum-realty-divi-site .rr-exact-home .verification-badge { vertical-align: middle; }

/* High-fidelity dark header */
#rr-global-header { height: var(--header-h); }
#rr-global-header .rr-header-section {
  height: var(--header-h);
  background: rgba(9,10,10,.72) !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  box-shadow: none;
  transition: height .35s, background .35s, border-color .35s;
}
#rr-global-header.is-scrolled,
#rr-global-header.is-scrolled .rr-header-section { height: 70px; }
#rr-global-header.is-scrolled .rr-header-section {
  background: rgba(9,10,10,.95) !important;
  border-bottom-color: rgba(255,255,255,.11);
  box-shadow: 0 12px 38px rgba(0,0,0,.18);
}
#rr-global-header .rr-header-row {
  width: var(--shell) !important;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 !important;
}
#rr-global-header .rr-header-row > .et_pb_column {
  display: flex;
  align-items: center;
  margin: 0 !important;
}
#rr-global-header .rr-header-brand-col { width: 92px !important; flex: 0 0 92px; }
#rr-global-header .rr-header-nav-col { width: auto !important; flex: 1 1 auto; justify-content: center; }
#rr-global-header .rr-header-cta-col { width: 194px !important; flex: 0 0 194px; justify-content: flex-end; }
#rr-global-header .rr-main-menu,
#rr-global-header .rr-main-menu .et_pb_menu_inner_container,
#rr-global-header .rr-main-menu .et_pb_menu__wrap { width: 100%; background: transparent !important; }
#rr-global-header .rr-main-menu .et_pb_menu__menu { width: 100%; justify-content: center; }
#rr-global-header .rr-main-menu .et-menu-nav > ul { gap: clamp(18px,2.4vw,38px); }
#rr-global-header .rr-main-menu .et-menu-nav > ul > li { padding: 0; }
#rr-global-header .rr-main-menu .et-menu-nav > ul > li > a {
  padding: 28px 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
#rr-global-header .rr-main-menu .et-menu-nav > ul > li.current-menu-item > a,
#rr-global-header .rr-main-menu .et-menu-nav > ul > li > a:hover { color: var(--gold-bright) !important; }
#rr-global-header .rr-header-cta { margin: 0 !important; }
#rr-global-header .rr-header-cta .et_pb_button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--gold-bright) !important;
  color: var(--black) !important;
  font-size: .67rem !important;
  font-weight: 750 !important;
  letter-spacing: .09em;
  text-transform: uppercase;
}
#rr-global-header .rr-header-cta .et_pb_button::after { display: none !important; }
#rr-global-header .mobile_menu_bar::before { color: var(--gold-bright) !important; }
#rr-global-header .et_mobile_menu {
  top: 70px !important;
  width: calc(100vw - 28px) !important;
  left: auto !important;
  right: 0 !important;
  border-top: 1px solid var(--gold) !important;
  background: rgba(9,10,10,.98) !important;
}
#rr-global-header .et_mobile_menu a { color: rgba(255,255,255,.82) !important; }
body.raum-realty-divi-site #main-content { padding-top: var(--header-h); }
body.raum-realty-divi-site.home #main-content { padding-top: 0 !important; }

@media (max-width: 1120px) {
  #rr-global-header .rr-header-cta-col { display: none !important; }
  #rr-global-header .rr-header-nav-col { justify-content: flex-end; }
}
@media (max-width: 980px) {
  #rr-global-header,
  #rr-global-header .rr-header-section { height: 74px; }
  #rr-global-header.is-scrolled,
  #rr-global-header.is-scrolled .rr-header-section { height: 66px; }
  #rr-global-header .rr-header-row { width: calc(100% - 28px) !important; }
  #rr-global-header .rr-header-brand-col { width: 64px !important; flex-basis: 64px; }
  #rr-global-header .rr-main-menu .et_pb_menu__wrap { justify-content: flex-end; }
  #rr-global-header .rr-main-menu .et_pb_menu__menu { display: none !important; }
  #rr-global-header .rr-main-menu .et_mobile_nav_menu { display: flex !important; }
  body.raum-realty-divi-site #main-content { padding-top: 74px; }
  body.raum-realty-divi-site.home #main-content { padding-top: 0 !important; }
}

/* ================================================================
   VERSION 3.1 — DYNAMIC DIVI LOGO + SEMANTIC STORY STATES
   ================================================================ */

#rr-global-header .rr-header-logo,
#rr-global-header .rr-header-logo .et_pb_code_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
#rr-global-header .rr-theme-logo {
  width: 88px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  transition: width .35s var(--ease), height .35s var(--ease), opacity .25s ease;
}
#rr-global-header .rr-theme-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 88px;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}
#rr-global-header.is-scrolled .rr-theme-logo { height: 54px; }
#rr-global-header.is-scrolled .rr-theme-logo img { max-height: 52px; }
#rr-global-header .rr-theme-logo--text {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  line-height: 1;
}
#rr-global-header .rr-theme-logo--text span {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 760;
  letter-spacing: .22em;
}
#rr-global-header .rr-theme-logo--text small {
  margin-top: 6px;
  color: var(--gold-bright);
  font-size: .5rem;
  letter-spacing: .32em;
}
@media (max-width: 980px) {
  #rr-global-header .rr-theme-logo { width: 62px; height: 54px; }
  #rr-global-header .rr-theme-logo img { max-width: 62px; max-height: 52px; }
}

/* The site plan is the only dominant object in stage one. */
.rr-builder-story .story-visual-label {
  position: absolute;
  z-index: 8;
  left: 24px;
  top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.48);
  font-size: .52rem;
  letter-spacing: .14em;
}
.rr-builder-story .story-visual-label span { color: var(--gold-bright); }
.rr-builder-story .story-visual-label strong { font-weight: 700; }

.rr-builder-story .story-positioning {
  position: absolute;
  z-index: 5;
  inset: 16%;
  opacity: 0;
  transform: scale(.88);
  transition: opacity .55s ease, transform .75s var(--ease);
}
.rr-builder-story .story-positioning::before,
.rr-builder-story .story-positioning::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,178,112,.58), transparent);
  transform: translate(-50%,-50%) rotate(28deg);
}
.rr-builder-story .story-positioning::after { transform: translate(-50%,-50%) rotate(-28deg); }
.rr-builder-story .story-positioning strong,
.rr-builder-story .story-positioning span {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(208,178,112,.55);
  background: rgba(9,10,10,.88);
  color: rgba(255,255,255,.76);
  text-transform: uppercase;
  letter-spacing: .09em;
}
.rr-builder-story .story-positioning strong {
  left: 50%; top: 50%;
  width: 116px; height: 116px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  color: var(--gold-bright);
  font-size: .68rem;
}
.rr-builder-story .story-positioning span {
  width: 94px; height: 42px;
  font-size: .52rem;
}
.rr-builder-story .pos-market { left: 4%; top: 10%; }
.rr-builder-story .pos-buyer { right: 3%; top: 12%; }
.rr-builder-story .pos-product { left: 0; bottom: 11%; }
.rr-builder-story .pos-pricing { right: 0; bottom: 11%; }
.rr-builder-story .pos-narrative { left: 50%; bottom: -2%; transform: translateX(-50%); }

.rr-builder-story .story-map b {
  position: absolute;
  left: 50%;
  bottom: -4%;
  width: 100%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.48);
  font-size: .48rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-align: center;
}
.rr-builder-story .story-funnel {
  gap: 8px;
  inset: auto 5% 13%;
}
.rr-builder-story .story-funnel span {
  min-width: 0;
  text-align: left;
}
.rr-builder-story .story-funnel small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: .48rem;
}
.rr-builder-story .story-complete {
  gap: 8px;
}
.rr-builder-story .story-complete__building {
  position: relative;
  width: 126px;
  height: 178px;
  margin: 0 auto 20px;
  border: 1px solid rgba(208,178,112,.75);
  background: linear-gradient(150deg, rgba(208,178,112,.18), rgba(255,255,255,.02));
  box-shadow: 0 0 60px rgba(208,178,112,.13);
}
.rr-builder-story .story-complete__building::before {
  content: "";
  position: absolute;
  left: 14px; right: 14px; top: -17px;
  height: 17px;
  border: 1px solid rgba(208,178,112,.55);
  transform: skewX(-38deg);
  transform-origin: bottom;
}
.rr-builder-story .story-complete__building i {
  display: block;
  height: 1px;
  margin: 24px 12px 0;
  background: linear-gradient(90deg, transparent, rgba(208,178,112,.72), transparent);
}
.rr-builder-story .story-complete small {
  margin-top: 8px;
  color: rgba(255,255,255,.44);
  font-size: .48rem;
  letter-spacing: .16em;
}

/* Stage 1: project review / site plan. */
.rr-builder-story .story-canvas.stage-1 .story-site {
  opacity: 1;
  transform: none;
}
/* Stage 2: the plan becomes a positioning model and the five commercial
   decisions appear around the project. */
.rr-builder-story .story-canvas.stage-2 .story-site {
  opacity: .28;
  transform: perspective(700px) rotateX(55deg) rotateZ(-7deg) scale(.9) translateY(7%);
}
.rr-builder-story .story-canvas.stage-2 .story-positioning {
  opacity: 1;
  transform: scale(1);
}
.rr-builder-story .story-canvas.stage-2 .story-building { opacity: 0; }
/* Stage 3: positioning resolves into a project structure surrounded by the
   marketing functions that generate and manage demand. */
.rr-builder-story .story-canvas.stage-3 .story-site { opacity: .12; transform: scale(.92); }
.rr-builder-story .story-canvas.stage-3 .story-positioning { opacity: .12; transform: scale(.92); }
.rr-builder-story .story-canvas.stage-3 .story-building { opacity: 1; transform: translateY(0) scale(1); }
.rr-builder-story .story-canvas.stage-3 .story-system { opacity: 1; }
/* Stage 4: the project system recedes and the Pakistan market network takes
   over the canvas. */
.rr-builder-story .story-canvas.stage-4 .story-site,
.rr-builder-story .story-canvas.stage-4 .story-positioning,
.rr-builder-story .story-canvas.stage-4 .story-building,
.rr-builder-story .story-canvas.stage-4 .story-system { opacity: .035; transform: scale(.88); }
.rr-builder-story .story-canvas.stage-4 .story-map { opacity: 1; transform: scale(1); }
/* Stage 5: reach remains as context while the exact sales journey becomes the
   dominant information. */
.rr-builder-story .story-canvas.stage-5 .story-map { opacity: .28; transform: scale(.94); }
.rr-builder-story .story-canvas.stage-5 .story-funnel { opacity: 1; transform: translateY(0); }
/* Stage 6: all interim diagrams resolve into the delivered market outcome. */
.rr-builder-story .story-canvas.stage-6 .story-site,
.rr-builder-story .story-canvas.stage-6 .story-positioning,
.rr-builder-story .story-canvas.stage-6 .story-building,
.rr-builder-story .story-canvas.stage-6 .story-system,
.rr-builder-story .story-canvas.stage-6 .story-map,
.rr-builder-story .story-canvas.stage-6 .story-funnel { opacity: 0; }
.rr-builder-story .story-canvas.stage-6 .story-complete { opacity: 1; transform: scale(1); }

@media (max-width: 600px) {
  .rr-builder-story .story-positioning { inset: 13% 8%; }
  .rr-builder-story .story-positioning strong { width: 90px; height: 90px; }
  .rr-builder-story .story-positioning span { width: 78px; height: 36px; font-size: .45rem; }
  .rr-builder-story .story-funnel { flex-wrap: wrap; }
  .rr-builder-story .story-funnel span { flex: 1 1 27%; }
}



/* ================================================================
   VERSION 3.2 — CONTENT-ALIGNED STORY, SUPPLIED NAVIGATION LOGO
   AND PURPOSE-BUILT MOBILE EXPERIENCE
   ================================================================ */

/* Navigation logo: the supplied transparent artwork is presented on a small
   architectural ivory plate so the graphite details remain legible against
   the black header without restoring the image's old white background. */
#rr-global-header .rr-header-brand-col {
  width: 104px !important;
  flex: 0 0 104px;
}
#rr-global-header .rr-theme-logo {
  width: 82px;
  height: 82px;
  padding: 5px;
  border: 1px solid rgba(208,178,112,.42);
  background: rgba(246,240,228,.97);
  box-shadow: 0 9px 26px rgba(0,0,0,.2);
  overflow: hidden;
}
#rr-global-header .rr-theme-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
#rr-global-header.is-scrolled .rr-theme-logo {
  width: 58px;
  height: 58px;
  padding: 4px;
}
#rr-global-header.is-scrolled .rr-theme-logo img {
  max-width: none;
  max-height: none;
}

/* Marketing System: one explicit flow from a positioned project through
   brand/content/campaigns into leads and sales communication. */
.rr-builder-story .story-marketing-flow {
  position: absolute;
  z-index: 6;
  inset: 9% 8% 10%;
  display: grid;
  align-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(24px) scale(.96);
  transition: opacity .5s ease, transform .72s var(--ease);
}
.rr-builder-story .marketing-project,
.rr-builder-story .marketing-output {
  width: min(88%, 500px);
  margin-inline: auto;
  border: 1px solid rgba(208,178,112,.58);
  background: rgba(9,10,10,.9);
  text-align: center;
}
.rr-builder-story .marketing-project {
  padding: 17px 20px;
}
.rr-builder-story .marketing-project small,
.rr-builder-story .marketing-output small {
  display: block;
  color: var(--gold-bright);
  font-size: .47rem;
  letter-spacing: .16em;
}
.rr-builder-story .marketing-project strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.1rem,2vw,1.65rem);
  font-weight: 400;
}
.rr-builder-story .marketing-connector {
  height: 23px;
  color: var(--gold-bright);
  font-size: 1.05rem;
  line-height: 23px;
  text-align: center;
}
.rr-builder-story .marketing-functions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
}
.rr-builder-story .marketing-functions::before {
  content: "";
  position: absolute;
  left: 16.5%;
  right: 16.5%;
  top: 50%;
  height: 1px;
  background: rgba(208,178,112,.38);
}
.rr-builder-story .marketing-functions span {
  position: relative;
  z-index: 2;
  min-height: 82px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(208,178,112,.48);
  background: rgba(14,16,17,.96);
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
}
.rr-builder-story .marketing-functions small {
  color: var(--gold-bright);
  font-size: .46rem;
  letter-spacing: .14em;
}
.rr-builder-story .marketing-functions b {
  color: rgba(255,255,255,.84);
  font-size: .63rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.rr-builder-story .marketing-output {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: 15px 18px;
}
.rr-builder-story .marketing-output::before {
  content: "";
  width: 1px;
  height: 38px;
  grid-column: 2;
  grid-row: 1;
  background: rgba(208,178,112,.35);
}
.rr-builder-story .marketing-output span,
.rr-builder-story .marketing-output strong {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: .57rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rr-builder-story .marketing-output span { grid-column: 1; grid-row: 1; }
.rr-builder-story .marketing-output strong { grid-column: 3; grid-row: 1; }
.rr-builder-story .story-marketing-flow > em {
  margin-top: 5px;
  color: rgba(255,255,255,.42);
  font-size: .46rem;
  font-style: normal;
  letter-spacing: .14em;
  text-align: center;
}

/* Sales Execution: a readable operating pipeline instead of an abstract
   funnel. Each enquiry advances through six explicit commercial actions. */
.rr-builder-story .story-sales-pipeline {
  position: absolute;
  z-index: 7;
  inset: 7% 8% 8%;
  display: grid;
  align-content: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .72s var(--ease);
}
.rr-builder-story .sales-pipeline-head {
  margin-bottom: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(208,178,112,.42);
}
.rr-builder-story .sales-pipeline-head small {
  color: var(--gold-bright);
  font-size: .47rem;
  letter-spacing: .16em;
}
.rr-builder-story .sales-pipeline-head strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.25rem,2.2vw,1.8rem);
  font-weight: 400;
}
.rr-builder-story .sales-pipeline-steps {
  display: grid;
  gap: 5px;
}
.rr-builder-story .sales-pipeline-steps span {
  --i: 0;
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0,1fr) minmax(90px,.8fr);
  align-items: center;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(9,10,10,.88);
  opacity: 0;
  transform: translateX(-12px);
}
.rr-builder-story .sales-pipeline-steps span::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 100%;
  width: 1px;
  height: 6px;
  background: var(--gold);
}
.rr-builder-story .sales-pipeline-steps span:last-child::before { display: none; }
.rr-builder-story .sales-pipeline-steps small {
  color: var(--gold-bright);
  font-size: .48rem;
  letter-spacing: .12em;
}
.rr-builder-story .sales-pipeline-steps b {
  color: rgba(255,255,255,.86);
  font-size: .61rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rr-builder-story .sales-pipeline-steps em {
  color: rgba(255,255,255,.42);
  font-size: .5rem;
  font-style: normal;
  text-align: right;
}
.rr-builder-story .sales-pipeline-result {
  display: grid;
  grid-template-columns: 1fr auto 1.45fr;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
  padding: 13px 15px;
  border: 1px solid rgba(208,178,112,.55);
  background: rgba(208,178,112,.08);
  color: rgba(255,255,255,.64);
  font-size: .5rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rr-builder-story .sales-pipeline-result i {
  color: var(--gold-bright);
  font-style: normal;
}
.rr-builder-story .sales-pipeline-result strong {
  color: var(--gold-bright);
  text-align: right;
}

/* State logic: each visual is visible only when its matching copy is active. */
.rr-builder-story .story-canvas.stage-3 .story-building { opacity: .08; transform: translateY(0) scale(.9); }
.rr-builder-story .story-canvas.stage-3 .story-marketing-flow {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.rr-builder-story .story-canvas.stage-3 .marketing-functions span {
  animation: rrMarketingNode .48s var(--ease) forwards;
  animation-delay: calc(var(--i) * 90ms + 100ms);
}
@keyframes rrMarketingNode {
  to { opacity: 1; transform: translateY(0); }
}
.rr-builder-story .story-canvas.stage-4 .story-marketing-flow {
  opacity: 0;
  transform: scale(.88);
}
.rr-builder-story .story-canvas.stage-5 .story-map {
  opacity: .12;
  transform: scale(.95);
}
.rr-builder-story .story-canvas.stage-5 .story-sales-pipeline {
  opacity: 1;
  transform: translateY(0);
}
.rr-builder-story .story-canvas.stage-5 .sales-pipeline-steps span {
  animation: rrSalesStep .38s var(--ease) forwards;
  animation-delay: calc(var(--i) * 65ms + 70ms);
}
@keyframes rrSalesStep {
  to { opacity: 1; transform: translateX(0); }
}
.rr-builder-story .story-canvas.stage-6 .story-marketing-flow,
.rr-builder-story .story-canvas.stage-6 .story-sales-pipeline {
  opacity: 0;
}

/* Mobile is deliberately simpler: no 350vh scroll trap, no hidden text and
   no heavy animated canvas. The six stages become readable process cards. */
html, body { max-width: 100%; overflow-x: hidden; }

@media (max-width: 980px) {
  #rr-global-header,
  #rr-global-header .rr-header-section {
    height: 70px;
  }
  #rr-global-header.is-scrolled,
  #rr-global-header.is-scrolled .rr-header-section {
    height: 64px;
  }
  #rr-global-header .rr-header-row {
    width: calc(100% - 22px) !important;
    gap: 10px;
  }
  #rr-global-header .rr-header-brand-col {
    width: 62px !important;
    flex: 0 0 62px;
  }
  #rr-global-header .rr-theme-logo,
  #rr-global-header.is-scrolled .rr-theme-logo {
    width: 56px;
    height: 56px;
    padding: 3px;
  }
  #rr-global-header .rr-header-nav-col {
    min-width: 0;
  }
  #rr-global-header .mobile_menu_bar {
    padding-bottom: 0;
  }
  #rr-global-header .mobile_menu_bar::before {
    font-size: 30px;
  }
  #rr-global-header .et_mobile_menu {
    top: 64px !important;
    width: calc(100vw - 22px) !important;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 14px 0;
  }
  #rr-global-header .et_mobile_menu li a {
    padding: 14px 18px;
    font-size: .72rem;
    letter-spacing: .08em;
  }

  body.raum-realty-divi-site #main-content { padding-top: 70px; }
  body.raum-realty-divi-site.home #main-content { padding-top: 0 !important; }

  .rr-hero-row {
    padding-top: 112px !important;
    padding-bottom: 62px !important;
  }
  .rr-hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.9rem,10.5vw,5rem) !important;
    line-height: .98 !important;
  }
  .rr-hero-copy .rr-lead {
    max-width: 58ch;
    font-size: 1rem;
  }
  .rr-hero-visual {
    margin-top: 42px !important;
  }
  .rr-architectural {
    width: min(100%,620px);
    margin-inline: auto;
    aspect-ratio: 16/11;
  }

  .rr-builder-story {
    height: auto !important;
    padding: 82px 0 !important;
  }
  .rr-builder-story .rr-builder-story-row {
    position: relative !important;
    top: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding: 0 !important;
  }
  .rr-builder-story-copy {
    min-height: 0 !important;
    display: block !important;
  }
  .rr-builder-story-intro,
  .rr-builder-stage,
  .rr-builder-story-cta {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
  .rr-builder-story-intro {
    margin-bottom: 36px !important;
  }
  .rr-builder-story-intro h2 {
    font-size: clamp(2.4rem,8vw,4rem);
  }
  .rr-builder-stage {
    min-height: 0;
    margin: 0 0 12px !important;
    padding: 21px 20px 20px 68px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.025);
  }
  .rr-builder-stage::before {
    content: "";
    position: absolute;
    left: 45px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(var(--gold),rgba(208,178,112,.08));
  }
  .rr-builder-stage-counter {
    position: absolute;
    left: 14px;
    top: 24px;
    margin: 0;
  }
  .rr-builder-stage h3 {
    font-size: clamp(1.45rem,5.7vw,2rem);
  }
  .rr-builder-stage p {
    font-size: .92rem;
    line-height: 1.65;
  }
  .rr-builder-story-visual,
  .rr-builder-story-canvas-column {
    display: none !important;
  }
  .rr-builder-story-cta {
    margin-top: 28px !important;
  }

  .rr-section,
  .rr-page-section {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }
  .rr-project-image img,
  .rr-aura-scene {
    min-height: 0;
    aspect-ratio: 16/11;
  }
  .rr-contact-grid > .et_pb_column {
    padding: 30px 24px;
  }
}

@media (max-width: 640px) {
  :root { --rr-shell: calc(100vw - 28px); }

  body.raum-realty-divi-site h1 {
    font-size: clamp(2.65rem,12vw,4rem) !important;
  }
  body.raum-realty-divi-site h2 {
    font-size: clamp(2rem,9vw,3rem) !important;
    line-height: 1.03;
  }
  body.raum-realty-divi-site h3 {
    line-height: 1.12;
  }
  .rr-hero-row {
    padding-top: 100px !important;
  }
  .rr-button-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .rr-button {
    width: 100%;
    min-height: 52px;
  }
  .rr-proof {
    margin-top: 38px;
  }
  .rr-pathway {
    padding: 42px 22px !important;
  }
  .rr-pathway h2 {
    font-size: clamp(2rem,9vw,2.8rem) !important;
  }
  .rr-architectural {
    aspect-ratio: 1/1.12;
    min-height: 0;
  }
  .rr-builder-stage {
    padding-left: 58px;
  }
  .rr-builder-stage::before {
    left: 38px;
  }
  .rr-builder-stage-counter {
    left: 10px;
  }
  .rr-project-copy {
    padding: 30px 20px !important;
  }
  .rr-contact-grid > .et_pb_column {
    padding: 26px 18px;
  }
  .rr-contact-form input,
  .rr-contact-form textarea,
  .rr-contact-form select {
    font-size: 16px !important;
  }
  .rr-footer-section {
    padding-inline: 4px !important;
  }
}

@media (max-width: 420px) {
  #rr-global-header .rr-header-row {
    width: calc(100% - 16px) !important;
  }
  #rr-global-header .rr-header-brand-col {
    width: 56px !important;
    flex-basis: 56px;
  }
  #rr-global-header .rr-theme-logo,
  #rr-global-header.is-scrolled .rr-theme-logo {
    width: 50px;
    height: 50px;
  }
  .rr-hero-copy h1 {
    font-size: clamp(2.5rem,13vw,3.45rem) !important;
  }
  .rr-builder-stage {
    padding: 18px 15px 18px 52px;
  }
}

/* ================================================================
   VERSION 4.0 — PROFESSIONAL DIRECT NAVIGATION + STATIC PROCESS
   ================================================================ */

/* Legacy story sections are retired. This also protects sites that activate
   the theme before running the focused content migration. */
.rr-builder-story,
.rr-scroll-story,
.scroll-story {
  display: none !important;
}

/* Reliable direct header. It is independent of Divi Code Modules, so the logo
   cannot disappear when the Visual Builder saves a page. */
#rr-global-header.rr-global-header--direct {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  background: rgba(7, 9, 10, .92);
  border-bottom: 1px solid rgba(208, 178, 112, .18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: height .28s ease, background-color .28s ease, box-shadow .28s ease;
}
#rr-global-header.rr-global-header--direct.is-scrolled {
  height: 76px;
  background: rgba(7, 9, 10, .975);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}
#rr-global-header .rr-header-shell {
  width: min(1320px, calc(100vw - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
#rr-global-header .rr-header-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
#rr-global-header .rr-header-brand .rr-theme-logo {
  width: 72px;
  height: 72px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(208, 178, 112, .52);
  background: #f6f0e4;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .26);
  overflow: hidden;
  transition: width .28s ease, height .28s ease, padding .28s ease;
}
#rr-global-header .rr-header-brand .rr-theme-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
#rr-global-header.is-scrolled .rr-header-brand .rr-theme-logo {
  width: 58px;
  height: 58px;
  padding: 4px;
}
#rr-global-header .rr-primary-navigation {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 44px);
}
#rr-global-header .rr-direct-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.15vw, 34px);
  list-style: none;
}
#rr-global-header .rr-direct-menu li {
  position: relative;
  margin: 0;
  padding: 0;
}
#rr-global-header .rr-direct-menu a {
  position: relative;
  display: block;
  padding: 30px 0;
  color: rgba(255, 255, 255, .74);
  font-family: var(--sans, Arial, Helvetica, sans-serif);
  font-size: .66rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: .095em;
  text-transform: uppercase;
  transition: color .22s ease;
}
#rr-global-header.is-scrolled .rr-direct-menu a { padding-top: 22px; padding-bottom: 22px; }
#rr-global-header .rr-direct-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 1px;
  background: var(--gold-bright, #d0b270);
  transition: right .25s ease;
}
#rr-global-header .rr-direct-menu a:hover,
#rr-global-header .rr-direct-menu .current-menu-item > a,
#rr-global-header .rr-direct-menu .current_page_item > a {
  color: var(--gold-bright, #d0b270);
}
#rr-global-header .rr-direct-menu a:hover::after,
#rr-global-header .rr-direct-menu .current-menu-item > a::after,
#rr-global-header .rr-direct-menu .current_page_item > a::after {
  right: 0;
}
#rr-global-header .rr-direct-header-cta {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-bright, #d0b270);
  background: var(--gold-bright, #d0b270);
  color: #090a0a;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
#rr-global-header .rr-direct-header-cta:hover {
  background: transparent;
  color: var(--gold-bright, #d0b270);
  transform: translateY(-1px);
}
#rr-global-header .rr-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid rgba(208, 178, 112, .46);
  background: transparent;
  cursor: pointer;
}
#rr-global-header .rr-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--gold-bright, #d0b270);
  transition: transform .24s ease, opacity .2s ease;
}
#rr-global-header.menu-open .rr-menu-toggle > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#rr-global-header.menu-open .rr-menu-toggle > span:nth-child(2) { opacity: 0; }
#rr-global-header.menu-open .rr-menu-toggle > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Static, fully editable replacement for the retired scroll story. */
.rr-market-process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(208, 178, 112, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 178, 112, .045) 1px, transparent 1px),
    #111315 !important;
  background-size: 48px 48px !important;
}
.rr-market-process::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(208, 178, 112, .24);
  pointer-events: none;
}
.rr-market-process .rr-market-process-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 54px !important;
}
.rr-market-process .rr-market-process-intro h2 {
  max-width: 780px;
}
.rr-market-process .rr-market-process-intro p:last-child {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .62);
}
.rr-market-process .rr-market-process-grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
}
.rr-market-process .rr-market-process-grid--second { margin-top: 18px !important; }
.rr-market-process .rr-market-process-grid > .et_pb_column {
  flex: 1 1 0;
  width: auto !important;
  margin: 0 !important;
}
.rr-market-process .rr-market-process-card {
  height: 100%;
  min-height: 230px;
  padding: 28px 28px 30px;
  border: 1px solid rgba(208, 178, 112, .24);
  background: rgba(255, 255, 255, .025);
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
}
.rr-market-process .rr-market-process-card:hover {
  border-color: rgba(208, 178, 112, .62);
  background: rgba(208, 178, 112, .055);
  transform: translateY(-3px);
}
.rr-market-process .rr-market-process-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-bright, #d0b270);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.rr-market-process .rr-market-process-card h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.65rem, 2.1vw, 2.35rem);
}
.rr-market-process .rr-market-process-card p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .94rem;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  #rr-global-header .rr-header-shell { gap: 20px; }
  #rr-global-header .rr-direct-menu { gap: 18px; }
  #rr-global-header .rr-direct-header-cta { display: none; }
}

@media (max-width: 980px) {
  #rr-global-header.rr-global-header--direct,
  #rr-global-header.rr-global-header--direct.is-scrolled {
    height: 72px;
  }
  #rr-global-header .rr-header-shell {
    width: calc(100vw - 24px);
    gap: 12px;
  }
  #rr-global-header .rr-header-brand .rr-theme-logo,
  #rr-global-header.is-scrolled .rr-header-brand .rr-theme-logo {
    width: 58px;
    height: 58px;
    padding: 4px;
  }
  #rr-global-header .rr-menu-toggle { display: block; }
  #rr-global-header .rr-primary-navigation {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 84px);
    padding: 16px;
    display: block;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    border: 1px solid rgba(208, 178, 112, .34);
    background: rgba(8, 10, 11, .99);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .42);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  #rr-global-header.menu-open .rr-primary-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  #rr-global-header .rr-direct-menu {
    display: block;
  }
  #rr-global-header .rr-direct-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  #rr-global-header .rr-direct-menu a,
  #rr-global-header.is-scrolled .rr-direct-menu a {
    padding: 16px 4px;
    font-size: .72rem;
  }
  #rr-global-header .rr-direct-menu a::after { display: none; }
  #rr-global-header .rr-direct-header-cta {
    width: 100%;
    margin-top: 16px;
    display: flex;
  }
  body.raum-realty-divi-site #main-content { padding-top: 72px; }
  body.raum-realty-divi-site.home #main-content { padding-top: 0 !important; }
  body.rr-menu-locked { overflow: hidden; }

  .rr-market-process::before { inset: 12px; }
  .rr-market-process .rr-market-process-grid {
    display: block;
  }
  .rr-market-process .rr-market-process-grid--second { margin-top: 0 !important; }
  .rr-market-process .rr-market-process-grid > .et_pb_column {
    width: 100% !important;
    margin-bottom: 14px !important;
  }
  .rr-market-process .rr-market-process-card {
    min-height: 0;
    padding: 24px;
  }
  .rr-market-process .rr-market-process-card span { margin-bottom: 22px; }
}

@media (max-width: 600px) {
  #rr-global-header .rr-header-shell { width: calc(100vw - 18px); }
  #rr-global-header .rr-primary-navigation { left: 9px; right: 9px; }
  .rr-market-process .rr-market-process-intro { margin-bottom: 34px !important; }
  .rr-market-process .rr-market-process-card h3 { font-size: 1.75rem; }
}

/* ================================================================
   VERSION 4.1 — REFINED IVORY NAVIGATION
   The supplied black-and-gold logo is designed for a light field. Instead of
   forcing it into a dark header or placing it on a floating white tile, the
   full navigation now uses a restrained warm-ivory architectural surface.
   ================================================================ */
#rr-global-header.rr-global-header--direct {
  height: 98px;
  background: rgba(247, 243, 234, .97);
  border-bottom: 1px solid rgba(132, 101, 43, .26);
  box-shadow: 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
#rr-global-header.rr-global-header--direct::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,139,54,.72) 18%, rgba(184,139,54,.72) 82%, transparent);
  pointer-events: none;
}
#rr-global-header.rr-global-header--direct.is-scrolled {
  height: 82px;
  background: rgba(247, 243, 234, .985);
  box-shadow: 0 16px 42px rgba(19, 18, 15, .12);
}
#rr-global-header .rr-header-shell {
  width: min(1400px, calc(100vw - 56px));
  gap: clamp(24px, 3vw, 48px);
}
#rr-global-header .rr-header-brand {
  align-self: stretch;
  min-width: 90px;
  position: relative;
}
#rr-global-header .rr-header-brand::after {
  content: '';
  width: 1px;
  height: 38px;
  margin-left: 24px;
  background: rgba(83, 68, 39, .2);
}
#rr-global-header .rr-header-brand .rr-theme-logo,
#rr-global-header.is-scrolled .rr-header-brand .rr-theme-logo {
  width: 82px;
  height: 82px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
#rr-global-header.is-scrolled .rr-header-brand .rr-theme-logo {
  width: 68px;
  height: 68px;
}
#rr-global-header .rr-header-brand .rr-theme-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}
#rr-global-header .rr-primary-navigation {
  gap: clamp(22px, 2.4vw, 38px);
}
#rr-global-header .rr-direct-menu {
  gap: clamp(18px, 2vw, 31px);
}
#rr-global-header .rr-direct-menu a {
  padding: 34px 0;
  color: rgba(25, 25, 23, .72);
  font-size: .67rem;
  font-weight: 760;
  letter-spacing: .105em;
}
#rr-global-header.is-scrolled .rr-direct-menu a {
  padding-top: 27px;
  padding-bottom: 27px;
}
#rr-global-header .rr-direct-menu a::after {
  bottom: 23px;
  background: #b88936;
}
#rr-global-header .rr-direct-menu a:hover,
#rr-global-header .rr-direct-menu .current-menu-item > a,
#rr-global-header .rr-direct-menu .current_page_item > a {
  color: #9e711f;
}
#rr-global-header .rr-direct-header-cta {
  min-height: 48px;
  padding: 0 22px;
  border-color: #171716;
  background: #171716;
  color: #f7f3ea;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
#rr-global-header .rr-direct-header-cta:hover {
  border-color: #b88936;
  background: #b88936;
  color: #111;
}
#rr-global-header .rr-menu-toggle {
  border-color: rgba(22, 22, 20, .24);
  background: rgba(255,255,255,.34);
}
#rr-global-header .rr-menu-toggle > span:not(.screen-reader-text) {
  background: #1d1d1b;
}
body.raum-realty-divi-site #main-content {
  padding-top: 98px;
}
body.raum-realty-divi-site.home #main-content {
  padding-top: 98px !important;
}

@media (max-width: 1180px) {
  #rr-global-header .rr-header-shell { width: min(100% - 38px, 1240px); }
  #rr-global-header .rr-header-brand::after { margin-left: 18px; }
}

@media (max-width: 980px) {
  #rr-global-header.rr-global-header--direct,
  #rr-global-header.rr-global-header--direct.is-scrolled {
    height: 78px;
  }
  #rr-global-header .rr-header-shell {
    width: calc(100vw - 24px);
  }
  #rr-global-header .rr-header-brand {
    min-width: 62px;
  }
  #rr-global-header .rr-header-brand::after {
    display: none;
  }
  #rr-global-header .rr-header-brand .rr-theme-logo,
  #rr-global-header.is-scrolled .rr-header-brand .rr-theme-logo {
    width: 62px;
    height: 62px;
  }
  #rr-global-header .rr-primary-navigation {
    top: 78px;
    border-color: rgba(132, 101, 43, .24);
    background: rgba(247, 243, 234, .995);
    box-shadow: 0 24px 50px rgba(29, 27, 22, .18);
  }
  #rr-global-header .rr-direct-menu li {
    border-bottom-color: rgba(25,25,23,.09);
  }
  #rr-global-header .rr-direct-menu a,
  #rr-global-header.is-scrolled .rr-direct-menu a {
    color: rgba(25, 25, 23, .78);
  }
  #rr-global-header .rr-direct-menu a:hover,
  #rr-global-header .rr-direct-menu .current-menu-item > a,
  #rr-global-header .rr-direct-menu .current_page_item > a {
    color: #9e711f;
  }
  #rr-global-header .rr-direct-header-cta {
    border-color: #171716;
    background: #171716;
    color: #f7f3ea;
  }
  body.raum-realty-divi-site #main-content,
  body.raum-realty-divi-site.home #main-content {
    padding-top: 78px !important;
  }
}

@media (max-width: 600px) {
  #rr-global-header .rr-header-shell { width: calc(100vw - 18px); }
  #rr-global-header .rr-header-brand .rr-theme-logo,
  #rr-global-header.is-scrolled .rr-header-brand .rr-theme-logo {
    width: 58px;
    height: 58px;
  }
}
