:root {
  --ink: #171814;
  --ink-soft: #23241f;
  --paper: #f2efe8;
  --paper-warm: #e8e1d5;
  --white: #fffdf8;
  --sage: #8f9a82;
  --copper: #b06f45;
  --line: rgba(23, 24, 20, 0.16);
  --max: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 72px);
  color: var(--white);
  transition:
    height 0.45s var(--ease),
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(242, 239, 232, 0.91);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: visible;
  background: transparent;
}

.brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 55px;
  max-width: none;
  height: 55px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.2));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: 0.17em;
  opacity: 0.7;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 18px;
  color: var(--ink);
  background: var(--white);
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  padding: 150px clamp(24px, 7vw, 120px) 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 40%, rgba(176, 111, 69, 0.3), transparent 25%),
    radial-gradient(circle at 78% 72%, rgba(143, 154, 130, 0.28), transparent 34%),
    linear-gradient(126deg, #11120f 0%, #20221d 48%, #0c0d0b 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.05) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255, 255, 255, 0.04) 50%, transparent 50.2%);
  background-size: 260px 260px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent 0, #000 45%, #000 100%);
}

.hero-grid {
  position: absolute;
  top: 12%;
  right: -2%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, transparent 24.7%, rgba(255, 255, 255, 0.08) 25%, transparent 25.3%, transparent 49.7%, rgba(255, 255, 255, 0.08) 50%, transparent 50.3%, transparent 74.7%, rgba(255, 255, 255, 0.08) 75%, transparent 75.3%),
    linear-gradient(transparent 24.7%, rgba(255, 255, 255, 0.08) 25%, transparent 25.3%, transparent 49.7%, rgba(255, 255, 255, 0.08) 50%, transparent 50.3%, transparent 74.7%, rgba(255, 255, 255, 0.08) 75%, transparent 75.3%);
  transform: perspective(900px) rotateX(64deg) rotateZ(-18deg);
  transform-origin: center;
  animation: grid-breathe 9s ease-in-out infinite alternate;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 6%;
  right: 8%;
  width: 38vw;
  height: 38vw;
  animation: orbit 24s linear infinite;
}

.hero-orbit-two {
  top: 28%;
  right: 22%;
  width: 14vw;
  height: 14vw;
  border-color: rgba(176, 111, 69, 0.45);
  animation: orbit 14s linear infinite reverse;
}

@keyframes grid-breathe {
  from {
    transform: perspective(900px) rotateX(64deg) rotateZ(-18deg) scale(0.96);
  }
  to {
    transform: perspective(900px) rotateX(61deg) rotateZ(-15deg) scale(1.04);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 68vw);
  align-self: center;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-right: 14px;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8.4vw, 132px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.hero h1 span {
  display: block;
  color: var(--paper-warm);
  font-style: italic;
}

.hero-lead {
  max-width: 600px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.35s var(--ease),
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

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

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

.hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 7vw, 120px);
  bottom: 150px;
  display: grid;
  width: min(300px, 24vw);
  min-height: 0;
  aspect-ratio: 1003 / 1568;
  align-content: space-between;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #10110e;
  backdrop-filter: blur(16px);
  isolation: isolate;
}

.hero-card::after {
  position: absolute;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 9, 7, 0.96), transparent 52%);
  content: "";
  inset: 0;
  pointer-events: none;
}

.hero-card-image {
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  inset: 0;
}

.hero-card-index {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.hero-card-copy {
  position: relative;
  z-index: 2;
}

.hero-card p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.hero-footer {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  align-self: end;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: repeat(4, 1fr);
}

.hero-footer span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 170px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.section-kicker {
  padding-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-copy h2 {
  max-width: 1020px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.intro-copy h2 span {
  color: var(--copper);
  font-style: italic;
}

.intro-copy > p {
  max-width: 630px;
  margin: 38px 0 0 34%;
  color: rgba(23, 24, 20, 0.66);
  font-size: 18px;
  line-height: 1.75;
}

.projects {
  padding-top: 40px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}

.section-heading h1,
.section-heading h2,
.process-intro h2,
.invest-copy h2,
.lead-copy h2 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: rgba(23, 24, 20, 0.62);
  line-height: 1.7;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
}

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

.project-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--ink-soft);
}

.project-card-large .project-visual {
  height: 100%;
  min-height: 700px;
}

.visual-one {
  background:
    radial-gradient(circle at 72% 28%, rgba(176, 111, 69, 0.55), transparent 26%),
    linear-gradient(145deg, #23251f, #11120f 72%);
}

.visual-two {
  background:
    radial-gradient(circle at 28% 78%, rgba(143, 154, 130, 0.52), transparent 34%),
    linear-gradient(135deg, #151612, #313329);
}

.visual-three {
  background:
    radial-gradient(circle at 73% 54%, rgba(221, 205, 180, 0.24), transparent 30%),
    linear-gradient(150deg, #2c2520, #11120f);
}

.project-plane {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
  transition: transform 1.1s var(--ease);
}

.project-card:hover .project-plane {
  transform: translateY(-12px) rotateY(-5deg);
}

.plane-one {
  top: 18%;
  right: 10%;
  width: 54%;
  height: 66%;
  transform: perspective(900px) rotateY(-18deg) rotateX(8deg);
}

.plane-two {
  right: 37%;
  bottom: 10%;
  width: 48%;
  height: 43%;
  border-color: rgba(176, 111, 69, 0.48);
  transform: perspective(700px) rotateY(22deg) rotateX(-5deg);
}

.plane-three {
  top: 8%;
  right: 18%;
  width: 21%;
  height: 32%;
  background: rgba(176, 111, 69, 0.14);
  transform: perspective(600px) translateZ(60px);
}

.project-number {
  position: absolute;
  bottom: 24px;
  left: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  letter-spacing: -0.07em;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 6px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.project-meta p {
  margin: 0 0 5px;
  color: rgba(23, 24, 20, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.project-meta > span {
  color: var(--copper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study {
  display: block;
}

.project-gateway-section {
  padding-top: 40px;
}

.project-gateway {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.project-gateway img,
.city-card img,
.selection-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}

.project-gateway:hover img,
.city-card-active:hover img,
.selection-card:hover img {
  transform: scale(1.025);
}

.project-gateway-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 9, 7, 0.88), transparent 62%),
    linear-gradient(to right, rgba(8, 9, 7, 0.32), transparent 54%);
}

.project-gateway-copy {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 64px);
  left: clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px 40px;
}

.project-gateway-copy small,
.project-gateway-copy em,
.city-card-copy small,
.city-card-copy em,
.selection-copy small,
.selection-copy em,
.selection-copy b,
.directory-topline {
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-gateway-copy small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.66);
}

.project-gateway-copy strong {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.project-gateway-copy em {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

[data-view] {
  display: none;
}

body.view-home [data-view="home"],
body.view-cities [data-view="cities"],
body.view-marrakech [data-view="marrakech"],
body.view-rabat [data-view="rabat"],
body.view-ourika [data-view="ourika"],
body.view-palmeraie [data-view="palmeraie"],
body.view-rabat-zair [data-view="rabat-zair"],
body.view-construction-maroc [data-view="construction-maroc"],
body.view-construction-marrakech [data-view="construction-marrakech"],
body.view-construction-villa-marrakech [data-view="construction-villa-marrakech"],
body.view-architecte-marrakech [data-view="architecte-marrakech"] {
  display: block;
}

body:not(.view-home):not(.view-seo) main > section:not([data-view]):not(.seo-context-links) {
  display: none;
}

body:not(.view-home) .site-header {
  height: 72px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(242, 239, 232, 0.94);
  backdrop-filter: blur(18px);
}

body:not(.view-home) .site-header .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.project-directory,
.project-detail {
  padding-top: 150px;
}

.directory-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 68px;
  padding-bottom: 18px;
  color: rgba(23, 24, 20, 0.48);
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.project-back-visible {
  color: var(--ink);
}

.city-grid,
.project-selection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.city-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.city-card::after,
.selection-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 7, 0.86), transparent 58%);
  content: "";
  pointer-events: none;
}

.city-card-copy {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  gap: 12px;
}

.city-card-copy small,
.city-card-copy em {
  color: rgba(255, 255, 255, 0.66);
}

.city-card-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.city-card-copy em {
  width: max-content;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.city-card-upcoming {
  background:
    radial-gradient(circle at 68% 30%, rgba(176, 111, 69, 0.44), transparent 28%),
    linear-gradient(145deg, #292a24, #11120f);
}

.city-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 420px;
  line-height: 1;
  transform: translate(-50%, -52%);
}

.selection-card {
  display: block;
  color: var(--ink);
}

.project-selection-grid-single .selection-card {
  grid-column: 1 / -1;
}

.selection-image {
  position: relative;
  display: block;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.selection-image > small {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 24px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(15, 16, 13, 0.72);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selection-copy {
  display: grid;
  padding: 24px 0 16px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 18px 24px;
}

.selection-copy > span {
  display: grid;
  gap: 7px;
}

.selection-copy small,
.selection-copy em {
  color: rgba(23, 24, 20, 0.52);
}

.selection-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.selection-copy em {
  grid-column: 1;
}

.selection-copy b {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--copper);
}

.project-back {
  display: none;
}

.case-hero-link {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.case-hero-discover {
  display: none;
}

body.project-detail-mode .project-back {
  display: inline-flex;
  width: max-content;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.project-detail-mode .case-hero-link,
body.project-detail-mode .case-hero-discover {
  display: none;
}

.case-hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.case-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 9, 7, 0.82), transparent 52%),
    linear-gradient(to right, rgba(8, 9, 7, 0.24), transparent 48%);
  content: "";
  pointer-events: none;
}

.case-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 1.5s var(--ease);
}

.case-hero:hover img {
  transform: scale(1.018);
}

.case-hero-overlay {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(28px, 6vw, 78px);
  left: clamp(24px, 5vw, 72px);
}

.case-hero-overlay p,
.case-hero-overlay span {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-hero-overlay h3 {
  max-width: 900px;
  margin: 13px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 126px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.case-intro {
  display: grid;
  padding: clamp(60px, 9vw, 118px) 0;
  align-items: start;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(50px, 9vw, 130px);
}

.case-copy .eyebrow {
  color: var(--copper);
}

.case-copy h3 {
  max-width: 750px;
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.case-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(23, 24, 20, 0.62);
  font-size: 17px;
  line-height: 1.8;
}

.concept-points {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.concept-points li {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 120px 1fr;
  gap: 24px;
}

.concept-points strong {
  color: var(--copper);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concept-points span {
  color: rgba(23, 24, 20, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.case-copy .case-link {
  color: var(--ink);
  border-bottom-color: rgba(23, 24, 20, 0.45);
}

.case-specs {
  margin: 0;
  border-top: 1px solid var(--line);
}

.case-specs > div {
  display: grid;
  min-height: 88px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.case-specs dt {
  color: rgba(23, 24, 20, 0.54);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-specs dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  text-align: right;
}

.project-gallery {
  display: grid;
  grid-template-areas:
    "aerial aerial"
    "entry pool"
    "suite-one suite-two"
    "suite-three living"
    "cinema cinema";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  color: var(--white);
  background: var(--ink-soft);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 7, 0.66), transparent 36%);
  content: "";
  pointer-events: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.65s ease,
    transform 1.15s var(--ease);
}

.gallery-item:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.008);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  gap: 18px;
}

.gallery-item figcaption span {
  color: rgba(255, 255, 255, 0.6);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-aerial {
  grid-area: aerial;
}

.gallery-entry {
  grid-area: entry;
}

.gallery-entry img {
  object-position: 64% 50%;
}

.gallery-pool {
  grid-area: pool;
}

.gallery-pool img {
  object-position: 56% 50%;
}

.gallery-suite-one {
  grid-area: suite-one;
}

.gallery-suite-two {
  grid-area: suite-two;
}

.gallery-suite-two img {
  object-position: 50% 45%;
}

.gallery-suite-three {
  grid-area: suite-three;
}

.gallery-suite-three img {
  object-position: 66% 50%;
}

.gallery-living {
  grid-area: living;
}

.gallery-living img {
  object-position: 55% 50%;
}

.gallery-cinema {
  grid-area: cinema;
}

.gallery-image-link {
  display: block;
  color: inherit;
}

.case-hero-rabat img {
  object-fit: contain;
}

.rabat-gallery {
  grid-template-areas: none;
}

.rabat-gallery .gallery-item,
.construction-gallery .gallery-item {
  aspect-ratio: auto;
}

.rabat-gallery .gallery-item img,
.construction-gallery .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

.rabat-gallery .gallery-item:hover img,
.construction-gallery .gallery-item:hover img {
  transform: none;
}

.rabat-gallery-wide {
  grid-column: 1 / -1;
}

.construction-progress {
  margin-top: clamp(70px, 10vw, 130px);
  padding-top: clamp(58px, 8vw, 96px);
  border-top: 1px solid var(--line);
}

.construction-progress-heading {
  display: grid;
  margin-bottom: 48px;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.construction-progress-heading .eyebrow {
  color: var(--copper);
}

.construction-progress-heading h3 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.construction-progress-heading > p {
  max-width: 620px;
  margin: 0;
  color: rgba(23, 24, 20, 0.62);
  font-size: 15px;
  line-height: 1.8;
}

.construction-gallery {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: start;
  gap: 14px;
}

.construction-gallery-stack {
  display: grid;
  gap: 14px;
}

.finance-panel {
  margin-top: clamp(70px, 10vw, 130px);
  padding: clamp(34px, 6vw, 78px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(176, 111, 69, 0.2), transparent 25%),
    var(--ink);
}

.finance-heading {
  display: grid;
  margin-bottom: 48px;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.finance-heading .eyebrow {
  color: #d4b38e;
}

.finance-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.finance-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.finance-kpis {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(4, 1fr);
}

.finance-kpis > div {
  min-width: 0;
  padding: 34px 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.finance-kpis > div:first-child {
  padding-left: 0;
}

.finance-kpis > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.finance-kpis span {
  display: block;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finance-kpis strong {
  display: block;
  margin: 18px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.finance-kpis strong small {
  color: #d4b38e;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finance-kpis p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.finance-detail {
  display: grid;
  padding: 54px 0 0;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(45px, 8vw, 110px);
}

.finance-assumptions,
.finance-sensitivity {
  min-width: 0;
}

.finance-detail h4 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.finance-assumptions dl {
  margin: 0;
}

.finance-assumptions dl > div {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 22px;
}

.finance-assumptions dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.finance-assumptions dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.finance-table {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.finance-row {
  display: grid;
  min-height: 56px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 0.8fr 1.2fr 1fr 1fr;
  gap: 14px;
  font-size: 12px;
}

.finance-row-head {
  min-height: 42px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finance-row-target {
  color: #f2d4b1;
  background: rgba(176, 111, 69, 0.12);
}

.finance-row-target > *:first-child {
  padding-left: 10px;
}

.finance-disclaimer {
  margin: 42px 0 0;
  padding: 22px 0 0;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  line-height: 1.7;
}

.services {
  width: 100%;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.services .section-heading {
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.services .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.service-item {
  display: grid;
  min-height: 170px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: 90px 1fr auto;
  transition:
    padding 0.55s var(--ease),
    background 0.35s ease;
}

.service-item:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.service-item > span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
}

.service-item h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
}

.service-item p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
}

.service-item strong {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(50px, 8vw, 130px);
}

.process-intro {
  position: sticky;
  top: 120px;
}

.process-intro > p:last-child {
  max-width: 500px;
  margin-top: 28px;
  color: rgba(23, 24, 20, 0.62);
  line-height: 1.75;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  min-height: 180px;
  align-items: center;
  border-top: 1px solid var(--line);
  grid-template-columns: 78px 1fr;
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-steps li > span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
}

.process-steps h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.process-steps p {
  margin: 0;
  color: rgba(23, 24, 20, 0.58);
}

.invest {
  display: grid;
  width: 100%;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: #10110e;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
}

.invest-visual {
  position: relative;
  width: min(100%, 560px);
  min-height: 0;
  aspect-ratio: 1003 / 1568;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #10110e;
  justify-self: center;
}

.invest-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

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

.invest-copy > p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.75;
}

.invest-copy .eyebrow {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 30px;
  transition: transform 0.35s var(--ease);
}

.text-link:hover span {
  transform: translateX(8px);
}

.invest-note {
  max-width: 590px;
  margin-top: 56px;
  padding: 24px;
  border-left: 2px solid var(--copper);
  background: rgba(255, 255, 255, 0.055);
}

.invest-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.invest-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.65;
}

.founder {
  width: 100%;
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: #0e0f0c;
}

.founder-heading {
  display: grid;
  margin-bottom: clamp(46px, 7vw, 90px);
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.founder-heading .eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

.founder-heading h2 {
  max-width: 830px;
}

.founder-heading > p {
  max-width: 500px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.57);
  line-height: 1.75;
}

.founder-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
}

.founder-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  background: #191a17;
}

.founder-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 8, 6, 0.76), transparent 38%),
    linear-gradient(135deg, transparent 55%, rgba(176, 111, 69, 0.13));
  content: "";
  pointer-events: none;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.2) contrast(1.04);
  transform: scale(1.005);
  transition:
    filter 0.7s var(--ease),
    transform 1.2s var(--ease);
}

.founder-photo:hover img {
  filter: saturate(0.52) contrast(1.02);
  transform: scale(1.008);
}

.founder-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.founder-photo figcaption span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-photo figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
}

.founder-photo-portrait {
  width: 100%;
  max-width: 560px;
  min-height: 0;
  align-self: start;
  aspect-ratio: 2 / 3;
  grid-row: auto;
  justify-self: center;
}

.founder-photo-portrait img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}

.founder-photo-portrait:hover img {
  transform: none;
}

.founder-story {
  padding: clamp(32px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 92% 0%, rgba(176, 111, 69, 0.14), transparent 28%),
    #171814;
}

.founder-role {
  margin: 0 0 22px;
  color: #d4b38e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.founder-story h3 {
  max-width: 720px;
  margin: 0 0 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.founder-story > p:not(.founder-role):not(.founder-conviction) {
  max-width: 760px;
  margin: 0 0 19px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
}

.founder-story .founder-lead {
  color: rgba(255, 255, 255, 0.84) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55 !important;
}

.founder-principles {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-principles > div {
  padding: 24px 24px 8px 0;
}

.founder-principles > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.founder-principles strong {
  color: #d4b38e;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-principles p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.founder-conviction {
  max-width: 700px;
  margin: 34px 0;
  padding: 19px 0 19px 24px;
  color: var(--white);
  border-left: 2px solid var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.5;
}

.founder-expertise {
  display: flex;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  gap: 9px;
  flex-wrap: wrap;
}

.founder-expertise li {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-gallery {
  display: grid;
  min-height: 0;
  align-items: start;
  grid-column: 1 / -1;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
}

.founder-photo-office {
  aspect-ratio: 1 / 1;
}

.founder-photo-site {
  aspect-ratio: 3 / 2;
}

.founder-photo-office img {
  object-position: 50% 50%;
  transform: none;
}

.founder-photo-office:hover img {
  transform: none;
}

.founder-photo-site img {
  object-position: 50% 50%;
  transform: none;
}

.founder-photo-site:hover img {
  transform: none;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 140px);
}

.lead-copy {
  align-self: start;
}

.lead-copy > p {
  max-width: 520px;
  color: rgba(23, 24, 20, 0.62);
  line-height: 1.75;
}

.lead-copy .eyebrow {
  color: var(--copper);
}

.lead-promise {
  display: flex;
  margin-top: 42px;
  align-items: center;
  gap: 14px;
}

.lead-promise > span {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 8px rgba(143, 154, 130, 0.15);
}

.lead-promise p {
  max-width: 370px;
  margin: 0;
  font-size: 13px;
}

.lead-form {
  padding: clamp(28px, 4vw, 58px);
  color: var(--white);
  background: var(--ink);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: block;
  margin-bottom: 18px;
}

.lead-form label > span:first-child {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--copper);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form option {
  color: var(--ink);
  background: var(--paper);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin: 3px 0 0;
  accent-color: var(--copper);
}

.consent span {
  margin: 0 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
}

.form-status {
  min-height: 22px;
  margin: 15px 0 0;
  color: #d9bf9f;
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  width: 100%;
  padding: 74px max(24px, calc((100% - var(--max)) / 2)) 34px;
  color: var(--white);
  background: #0e0f0c;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
}

.footer-brand {
  align-self: start;
}

.site-footer > p {
  max-width: 420px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.25;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer > small {
  grid-column: 1 / -1;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.floating-cta {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: none;
  padding: 15px 18px;
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-entry {
  padding-top: 30px;
}

.seo-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-entry-card {
  display: flex;
  min-height: 330px;
  padding: clamp(30px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 62%),
    var(--ink);
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.55s var(--ease), background 0.45s ease;
}

.seo-entry-card-accent {
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 111, 69, 0.34), transparent 36%),
    #24251f;
}

.seo-entry-card:hover,
.seo-entry-card:focus-visible {
  background-color: #20221d;
  transform: translateY(-6px);
}

.seo-entry-card small,
.seo-entry-card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-entry-card strong {
  max-width: 520px;
  margin: 58px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.seo-entry-card span {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.seo-landing {
  padding-top: 150px;
  padding-bottom: 0;
}

.seo-landing-hero {
  display: grid;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: 0.9fr 1.1fr;
}

.seo-landing-copy {
  display: flex;
  padding: clamp(42px, 6vw, 84px);
  flex-direction: column;
  justify-content: center;
}

.seo-landing-copy h1 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.seo-landing-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.75;
}

.seo-landing-copy .button-primary,
.seo-final-cta .button-primary,
.seo-crosslink .button-primary {
  color: var(--white);
  background: var(--copper);
}

.seo-landing-copy .button-primary:hover,
.seo-final-cta .button-primary:hover,
.seo-crosslink .button-primary:hover {
  background: #c47d4d;
}

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

.seo-landing-visual {
  display: flex;
  min-width: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
  background: #10110e;
}

.seo-landing-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

.seo-proof-strip {
  display: grid;
  padding: 26px 30px;
  color: var(--white);
  background: #0e0f0c;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.seo-proof-strip span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.seo-content {
  padding-top: 110px;
}

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

.seo-service-grid article {
  min-height: 300px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-service-grid article > span {
  color: var(--copper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.seo-service-grid h3,
.seo-local-grid h3 {
  margin: 74px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.seo-service-grid p,
.seo-local-grid p {
  margin: 0;
  color: rgba(23, 24, 20, 0.62);
  line-height: 1.75;
}

.seo-crosslink,
.seo-final-cta {
  display: grid;
  margin-top: 90px;
  padding: clamp(40px, 6vw, 80px);
  align-items: end;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.seo-crosslink h2,
.seo-final-cta h2,
.seo-faq h2,
.seo-project-proof h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.seo-local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-local-grid article {
  min-height: 300px;
  padding: 36px;
  background: var(--paper-warm);
}

.seo-local-grid h3 {
  margin-top: 78px;
}

.seo-project-proof {
  margin-top: 120px;
}

.seo-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-project-grid > a {
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.seo-project-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: 50% 50%;
  background: #10110e;
  transition: transform 0.8s var(--ease);
}

.seo-project-grid a:hover img {
  transform: scale(1.015);
}

.seo-project-grid a > span {
  display: grid;
  padding: 28px 30px 32px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
}

.seo-project-grid small,
.seo-project-grid em {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.seo-project-grid small {
  grid-column: 1 / -1;
}

.seo-project-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.seo-faq {
  display: grid;
  margin-top: 130px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
}

.seo-faq-list {
  border-top: 1px solid var(--line);
}

.seo-faq details {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.seo-faq summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  list-style: none;
  gap: 24px;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq summary::after {
  color: var(--copper);
  content: "+";
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 300;
}

.seo-faq details[open] summary::after {
  content: "−";
}

.seo-faq details p {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(23, 24, 20, 0.62);
  line-height: 1.75;
}

.seo-final-cta {
  margin-top: 120px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 74px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    border: 0;
    background: transparent;
    gap: 6px;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s var(--ease);
  }

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

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

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 36px;
    color: var(--white);
    background: rgba(14, 15, 12, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      visibility 0s linear 0.45s,
      opacity 0.45s ease,
      transform 0.45s var(--ease);
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .main-nav .nav-cta {
    margin-top: 20px;
    padding: 16px 20px;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero-content {
    width: 100%;
  }

  .hero-card {
    display: none;
  }

  .hero-grid {
    top: 18%;
    right: -24%;
    width: 82vw;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-copy > p {
    margin-left: 16%;
  }

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

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

  .project-card-large .project-visual {
    min-height: 520px;
  }

  .case-intro,
  .finance-heading,
  .construction-progress-heading,
  .finance-detail {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    grid-template-areas:
      "aerial aerial"
      "entry pool"
      "suite-one suite-two"
      "suite-three living"
      "cinema cinema";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

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

  .finance-kpis > div:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .finance-kpis > div:nth-child(3) {
    padding-left: 0;
  }

  .finance-kpis > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .process,
  .invest,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .founder-heading,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo-portrait {
    min-height: 0;
    max-width: 560px;
    aspect-ratio: 2 / 3;
    grid-row: auto;
  }

  .founder-photo-portrait img {
    object-position: 50% 50%;
    transform: none;
  }

  .founder-photo-portrait:hover img {
    transform: scale(1.012);
  }

  .process-intro {
    position: static;
  }

  .invest-visual {
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 900px;
    padding: 125px 24px 32px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 80px);
    line-height: 0.9;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-footer {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .section {
    width: min(var(--max), calc(100% - 36px));
    padding: 92px 0;
  }

  .intro-copy > p {
    margin-left: 0;
    font-size: 16px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 24px;
  }

  .project-card-large .project-visual,
  .project-visual {
    min-height: 390px;
  }

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

  .case-hero {
    min-height: 0;
    aspect-ratio: auto;
    background: var(--ink);
  }

  .case-hero::after {
    display: none;
  }

  .case-hero img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transform: none;
  }

  .case-hero:hover img {
    transform: none;
  }

  .case-hero-overlay {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 24px 18px 26px;
  }

  .case-hero-overlay h3 {
    margin: 8px 0 12px;
    font-size: clamp(38px, 12vw, 50px);
    line-height: 0.92;
  }

  .case-intro {
    padding: 70px 0;
  }

  .case-specs > div {
    min-height: 78px;
  }

  .case-specs dd {
    font-size: 19px;
  }

  .project-gallery {
    grid-template-areas:
      "aerial"
      "entry"
      "pool"
      "suite-one"
      "suite-two"
      "suite-three"
      "living"
      "cinema";
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .project-gallery .gallery-cinema {
    min-height: 0;
  }

  .rabat-gallery {
    grid-template-areas: none;
  }

  .rabat-gallery-wide {
    grid-column: 1;
  }

  .construction-progress {
    margin-top: 78px;
    padding-top: 58px;
  }

  .construction-progress-heading {
    display: block;
  }

  .construction-progress-heading > p {
    margin-top: 24px;
  }

  .construction-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .construction-gallery-stack {
    gap: 10px;
  }

  .gallery-item figcaption {
    right: 16px;
    bottom: 15px;
    left: 16px;
    font-size: 16px;
  }

  .finance-panel {
    margin-top: 78px;
    padding: 34px 22px;
  }

  .finance-heading {
    display: block;
  }

  .finance-heading > p {
    margin-top: 24px;
  }

  .finance-kpis {
    grid-template-columns: 1fr;
  }

  .finance-kpis > div,
  .finance-kpis > div:first-child,
  .finance-kpis > div:nth-child(3),
  .finance-kpis > div:last-child {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .finance-kpis > div:last-child {
    border-bottom: 0;
  }

  .finance-kpis span {
    min-height: 0;
  }

  .finance-kpis strong {
    font-size: 39px;
  }

  .finance-table {
    overflow: visible;
  }

  .finance-row {
    min-width: 0;
    padding: 14px 0;
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .finance-row-head {
    display: none;
  }

  .finance-row > * {
    display: grid;
    min-width: 0;
    gap: 4px;
  }

  .finance-row > *::before {
    color: rgba(255, 255, 255, 0.38);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .finance-row > *:nth-child(1)::before {
    content: "Nuits / mois";
  }

  .finance-row > *:nth-child(2)::before {
    content: "CA annuel";
  }

  .finance-row > *:nth-child(3)::before {
    content: "Rendement brut";
  }

  .finance-row > *:nth-child(4)::before {
    content: "Retour brut";
  }

  .finance-row-target > *:first-child {
    padding-left: 0;
  }

  .concept-points li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .services,
  .invest,
  .founder {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-item {
    min-height: 220px;
    padding: 24px 0;
    grid-template-columns: 42px 1fr;
  }

  .service-item > strong {
    display: none;
  }

  .process-steps li {
    min-height: 150px;
    grid-template-columns: 54px 1fr;
  }

  .invest-visual {
    min-height: 0;
  }

  .founder-heading {
    display: block;
  }

  .founder-heading > p {
    margin-top: 24px;
  }

  .founder-photo-portrait {
    min-height: 0;
    aspect-ratio: 2 / 3;
  }

  .founder-photo-portrait img {
    object-position: 50% 50%;
    transform: none;
  }

  .founder-photo-portrait:hover img {
    transform: scale(1.01);
  }

  .founder-story {
    padding: 32px 24px;
  }

  .founder-principles {
    grid-template-columns: 1fr;
  }

  .founder-principles > div {
    padding: 22px 0;
  }

  .founder-principles > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .founder-gallery {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .founder-gallery .founder-photo {
    min-height: 0;
  }

  .founder-photo-office img {
    object-position: 50% 50%;
    transform: none;
  }

  .founder-photo-site img {
    object-position: 50% 50%;
    transform: none;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form {
    margin-right: -18px;
    margin-left: -18px;
  }

  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
    grid-template-columns: 1fr;
  }

  .site-footer > p,
  .site-footer > small {
    grid-column: auto;
  }

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

  .floating-cta {
    display: block;
  }
}

@media (max-width: 960px) {
  .project-gateway-copy {
    grid-template-columns: 1fr;
  }

  .project-gateway-copy em {
    width: max-content;
  }

  .city-card {
    min-height: 0;
  }

  .selection-copy {
    grid-template-columns: 1fr;
  }

  .selection-copy b,
  .selection-copy em {
    grid-row: auto;
    grid-column: 1;
  }
}

@media (max-width: 700px) {
  .project-directory,
  .project-detail {
    padding-top: 112px;
  }

  .directory-topline {
    margin-bottom: 44px;
    align-items: flex-start;
    flex-direction: column;
  }

  .city-grid,
  .project-selection-grid {
    grid-template-columns: 1fr;
  }

  .city-card {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .project-gateway {
    display: grid;
    min-height: 0;
    aspect-ratio: auto;
    background: var(--ink);
  }

  .project-gateway img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    grid-column: 1;
    grid-row: 1;
    transform: none;
  }

  .project-gateway:hover img {
    transform: none;
  }

  .project-gateway-shade {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    aspect-ratio: 16 / 9;
    background: linear-gradient(to top, rgba(8, 9, 7, 0.48), transparent 58%);
  }

  .project-gateway-copy {
    position: relative;
    z-index: 2;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 28px 24px 30px;
    background: var(--ink);
  }

  .project-gateway-copy strong {
    max-width: 310px;
    font-size: clamp(39px, 12vw, 50px);
  }

  .project-gateway-copy em {
    line-height: 1.55;
  }

  .selection-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .selection-copy b {
    margin-top: 8px;
  }
}

@media (max-width: 980px) {
  .seo-entry-grid,
  .seo-landing-hero,
  .seo-service-grid,
  .seo-local-grid,
  .seo-project-grid,
  .seo-faq {
    grid-template-columns: 1fr;
  }

  .seo-landing-hero {
    min-height: 0;
  }

  .seo-landing-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .seo-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-proof-strip span {
    text-align: left;
  }

  .seo-service-grid {
    border-left: 0;
  }

  .seo-service-grid article {
    min-height: 0;
    border-right: 0;
  }

  .seo-service-grid h3,
  .seo-local-grid h3 {
    margin-top: 40px;
  }

  .seo-crosslink,
  .seo-final-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .seo-crosslink .button,
  .seo-final-cta .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .seo-entry-card {
    min-height: 280px;
  }

  .seo-landing {
    padding-top: 112px;
  }

  .seo-landing-copy {
    padding: 38px 24px 44px;
  }

  .seo-landing-copy h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .seo-landing-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .seo-proof-strip {
    grid-template-columns: 1fr;
  }

  .seo-service-grid article,
  .seo-local-grid article {
    padding: 28px 24px;
  }

  .seo-project-grid a > span {
    grid-template-columns: 1fr;
  }

  .seo-project-grid em {
    margin-top: 8px;
  }

  .seo-faq {
    margin-top: 96px;
  }

  .seo-faq summary {
    font-size: 21px;
  }
}

/* Homepage — restrained editorial hierarchy */
body.view-home .hero {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  column-gap: clamp(42px, 7vw, 110px);
}

body.view-home .hero-content {
  width: min(780px, 65vw);
}

body.view-home .hero h1 {
  font-size: clamp(62px, 7.5vw, 116px);
  line-height: 0.9;
}

body.view-home .hero-lead {
  max-width: 560px;
}

body.view-home .hero-card {
  right: clamp(24px, 6vw, 104px);
  bottom: 142px;
  width: min(270px, 22vw);
}

body.view-home .hero-footer {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(150px, 0.42fr)) 1fr;
  align-items: end;
  gap: clamp(22px, 4vw, 64px);
}

body.view-home .hero-footer a {
  display: grid;
  align-items: end;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 32px 1fr;
  gap: 10px;
}

body.view-home .hero-footer small {
  color: var(--copper);
  font-size: 9px;
  letter-spacing: 0.14em;
}

body.view-home .hero-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

body.view-home .hero-footer p {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-projects {
  padding-top: clamp(92px, 10vw, 146px);
}

.home-projects .section-heading {
  margin-bottom: 42px;
}

.home-projects .section-heading h2 {
  max-width: 620px;
}

.home-projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  gap: 18px;
}

.home-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-city-card {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-city-card::after {
  position: absolute;
  z-index: 1;
  background: linear-gradient(to top, rgba(8, 9, 7, 0.9), transparent 62%);
  content: "";
  inset: 0;
}

.home-city-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 1.1s var(--ease), filter 0.7s var(--ease);
}

.home-city-card:hover img,
.home-city-card:focus-visible img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.025);
}

.home-city-card > span {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 7px 18px;
}

.home-city-card small,
.home-city-card em {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-city-card small {
  grid-column: 1 / -1;
}

.home-city-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.home-project-contact {
  display: flex;
  min-height: 520px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(176, 111, 69, 0.38), transparent 33%),
    var(--ink);
  flex-direction: column;
  justify-content: space-between;
}

.home-project-contact-index {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-project-contact p {
  max-width: 260px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.54);
}

.home-project-contact strong {
  display: block;
  max-width: 280px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.home-project-contact > a {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.view-home .services {
  padding-top: clamp(86px, 9vw, 130px);
  padding-bottom: clamp(86px, 9vw, 130px);
}

body.view-home .services .section-heading {
  margin-bottom: 0;
  padding-bottom: 38px;
}

body.view-home .services .section-heading > p {
  color: rgba(255, 255, 255, 0.52);
}

body.view-home .service-item {
  min-height: 132px;
  grid-template-columns: 64px 1fr auto;
}

body.view-home .service-item h3 {
  margin-bottom: 5px;
  font-size: clamp(28px, 2.7vw, 40px);
}

body.view-home .service-item p {
  font-size: 14px;
}

.service-item-invest > a {
  padding-bottom: 7px;
  color: #d4b38e;
  border-bottom: 1px solid rgba(212, 179, 142, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services-legal {
  max-width: 680px;
  margin: 28px 0 0 64px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  line-height: 1.65;
}

body.view-home .founder {
  color: var(--ink);
  background: var(--paper);
}

body.view-home .founder-heading {
  margin-bottom: clamp(38px, 6vw, 72px);
}

body.view-home .founder-heading .eyebrow {
  color: var(--copper);
}

body.view-home .founder-heading > p {
  color: rgba(23, 24, 20, 0.58);
}

body.view-home .founder-grid {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 20px;
}

body.view-home .founder-photo-portrait {
  max-width: none;
}

body.view-home .founder-story {
  padding: clamp(34px, 5vw, 70px);
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

body.view-home .founder-story h3 {
  margin-bottom: 24px;
  font-size: clamp(37px, 4vw, 58px);
}

body.view-home .founder-story .founder-lead {
  max-width: 670px;
  color: rgba(23, 24, 20, 0.7) !important;
}

body.view-home .founder-expertise li {
  color: rgba(23, 24, 20, 0.7);
  border-color: var(--line);
}

body.view-home .founder-gallery {
  margin-top: 0;
  gap: 20px;
}

body.view-home .founder-photo-office,
body.view-home .founder-photo-site {
  aspect-ratio: 16 / 9;
}

body.view-home .lead-section {
  padding-top: clamp(86px, 9vw, 130px);
  padding-bottom: clamp(86px, 9vw, 130px);
}

.contact-direct {
  display: grid;
  width: fit-content;
  margin-top: 34px;
  gap: 10px;
}

.contact-direct a {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.view-home .lead-form textarea {
  min-height: 105px;
}

.cursor-aura {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(176, 111, 69, 0.8);
  border-radius: 50%;
  background: rgba(176, 111, 69, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition:
    width 0.35s var(--ease),
    height 0.35s var(--ease),
    opacity 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  backdrop-filter: blur(3px);
}

.cursor-aura span {
  opacity: 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.cursor-aura.is-visible {
  opacity: 1;
}

.cursor-aura.is-action {
  width: 74px;
  height: 74px;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(23, 24, 20, 0.76);
}

.cursor-aura.is-action span {
  opacity: 1;
}

.cursor-aura.is-pressed {
  width: 54px;
  height: 54px;
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor-aura {
    display: flex;
  }
}

@media (max-width: 1100px) {
  body.view-home .hero {
    grid-template-columns: 1fr;
  }

  body.view-home .hero-content {
    width: min(760px, 70vw);
  }

  body.view-home .hero-card {
    width: min(230px, 22vw);
  }

  .home-projects-layout {
    grid-template-columns: 1fr;
  }

  .home-project-contact {
    min-height: 310px;
  }

  .home-project-contact strong {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .cursor-aura {
    display: none !important;
  }

  body.view-home .hero {
    display: flex;
    min-height: 100svh;
    padding: 128px 18px 24px;
    flex-direction: column;
    justify-content: flex-end;
  }

  body.view-home .hero-content {
    width: 100%;
  }

  body.view-home .hero h1 {
    font-size: clamp(52px, 15vw, 72px);
    line-height: 0.92;
  }

  body.view-home .hero-lead {
    margin-top: 24px;
    font-size: 15px;
  }

  body.view-home .hero-actions {
    margin-top: 26px;
  }

  body.view-home .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    display: none;
  }

  body.view-home .hero-footer {
    display: grid;
    width: 100%;
    margin-top: 44px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  body.view-home .hero-footer a {
    padding-right: 0;
    border-right: 0;
    grid-template-columns: 24px 1fr;
  }

  body.view-home .hero-footer strong {
    font-size: 18px;
  }

  body.view-home .hero-footer p {
    display: none;
  }

  .home-projects .section-heading,
  body.view-home .services .section-heading,
  body.view-home .founder-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .home-city-grid {
    grid-template-columns: 1fr;
  }

  .home-city-card {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .home-project-contact {
    min-height: 280px;
    padding: 26px;
  }

  body.view-home .service-item {
    min-height: 0;
    padding: 25px 0;
    grid-template-columns: 38px 1fr;
  }

  body.view-home .service-item > strong,
  body.view-home .service-item > a {
    margin: 12px 0 0 38px;
    grid-column: 1 / -1;
  }

  .services-legal {
    margin-left: 38px;
  }

  body.view-home .founder-grid {
    grid-template-columns: 1fr;
  }

  body.view-home .founder-photo-portrait {
    width: min(100%, 500px);
  }

  body.view-home .founder-gallery {
    grid-template-columns: 1fr;
  }

  body.view-home .founder {
    padding-bottom: 44px;
  }

  body.view-home .lead-section {
    padding-top: 64px;
    gap: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-aura {
    display: none !important;
  }
}
