: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;
}

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

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: 330px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

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

.mini-building {
  display: flex;
  height: 120px;
  align-items: flex-end;
  gap: 6px;
  transform: perspective(500px) rotateY(-18deg);
}

.mini-building span {
  display: block;
  width: 24%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(to top, rgba(176, 111, 69, 0.3), transparent);
}

.mini-building span:nth-child(1) {
  height: 42%;
}

.mini-building span:nth-child(2) {
  height: 72%;
}

.mini-building span:nth-child(3) {
  height: 100%;
}

.mini-building span:nth-child(4) {
  height: 58%;
}

.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 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-back {
  display: none;
}

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

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

body:not(.project-detail-mode) .case-study .case-intro,
body:not(.project-detail-mode) .case-study .project-gallery,
body:not(.project-detail-mode) .case-study .finance-panel {
  display: none;
}

body:not(.project-detail-mode) .case-hero {
  min-height: clamp(480px, 58vw, 720px);
  cursor: pointer;
}

body:not(.project-detail-mode) .case-hero-type {
  display: none;
}

body:not(.project-detail-mode) .case-hero-discover {
  display: inline-flex;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
}

body.project-detail-mode main > section:not(#realisations) {
  display: none;
}

body.project-detail-mode .projects {
  padding-top: 150px;
}

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

body.project-detail-mode .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.project-detail-mode .site-header .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.case-hero {
  position: relative;
  min-height: clamp(570px, 68vw, 850px);
  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%;
  min-height: inherit;
  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;
}

.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 aerial aerial aerial entry entry entry"
    "pool pool pool suite-one suite-one suite-one suite-one suite-one"
    "suite-two suite-two suite-three suite-three living living living living"
    "cinema cinema cinema cinema cinema cinema cinema cinema";
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: 470px 430px 370px 590px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  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.028);
}

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

.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-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: #273028;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
}

.invest-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 50% 50%, rgba(176, 111, 69, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent);
}

.invest-disc {
  position: absolute;
  top: 15%;
  left: 11%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.invest-disc::before,
.invest-disc::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  inset: 14%;
}

.invest-disc::after {
  inset: 30%;
}

.invest-tower {
  position: absolute;
  bottom: 10%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(to top, rgba(176, 111, 69, 0.26), rgba(255, 255, 255, 0.02));
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.18);
  transform: perspective(700px) rotateY(-12deg);
}

.tower-one {
  left: 18%;
  width: 22%;
  height: 38%;
}

.tower-two {
  left: 40%;
  width: 27%;
  height: 63%;
}

.tower-three {
  left: 66%;
  width: 18%;
  height: 46%;
}

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

.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: scale(1.012);
}

.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-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: 360px;
  grid-column: 1 / -1;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
}

.founder-photo-office img {
  object-position: 61% 48%;
  transform: scale(1.055);
  transform-origin: 61% 48%;
}

.founder-photo-office:hover img {
  transform: scale(1.085);
}

.founder-photo-site img {
  object-position: 63% 48%;
  transform: scale(1.015);
  transform-origin: 63% 48%;
}

.founder-photo-site:hover img {
  transform: scale(1.045);
}

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

.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,
  .finance-detail {
    grid-template-columns: 1fr;
  }

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

  .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: 480px;
  }

  .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: 540px;
  }

  .case-hero-overlay h3 {
    font-size: clamp(56px, 19vw, 88px);
  }

  .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: 310px;
    gap: 10px;
  }

  .project-gallery .gallery-cinema {
    min-height: 360px;
  }

  .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-x: auto;
  }

  .finance-row {
    min-width: 540px;
  }

  .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: 390px;
  }

  .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-gallery {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .founder-gallery .founder-photo {
    min-height: 340px;
  }

  .founder-photo-office img {
    object-position: 60% 48%;
    transform: scale(1.025);
  }

  .founder-photo-site img {
    object-position: 62% 50%;
    transform: scale(1.005);
  }

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