:root {
  --ink: #171612;
  --black: #0d0d0b;
  --black-soft: #151511;
  --ivory: #f5f1e9;
  --paper: #ebe5da;
  --stone: #c9bfaf;
  --line: rgba(23, 22, 18, 0.16);
  --gold: #b88b4a;
  --gold-light: #d6b77d;
  --gold-dark: #8e6634;
  --white: #fffdf8;
  --font-display: Georgia, "Times New Roman", serif;
  --font-sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

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

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

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

::selection {
  background: var(--gold);
  color: var(--black);
}

.shell {
  width: min(100% - 80px, 1380px);
  max-width: 100%;
  margin-inline: auto;
}

.shell > *,
.site-header__inner > *,
.brand > *,
.site-footer__top > *,
.statement__grid > *,
.seal-section__grid > *,
.section-heading > *,
.independence__grid > *,
.founder__grid > *,
.interior-hero__grid > *,
.content-grid > *,
.contact-layout > * {
  min-width: 0;
}

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

.section--dark,
.section--ink {
  background: var(--black);
  color: var(--white);
}

.section--ink {
  background: #13130f;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.028em;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(4rem, 7vw, 7.7rem);
  line-height: 0.91;
}

h2 {
  font-size: clamp(3rem, 5vw, 5.7rem);
  line-height: 0.96;
}

h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  line-height: 1.05;
}

p {
  margin: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--gold-dark);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

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

.eyebrow--light {
  color: rgba(255, 253, 248, 0.72);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

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

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

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

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

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

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--black);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--gold-light);
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 233, 0.94);
  color: var(--ink);
}

.site-header--hero {
  position: absolute;
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    180deg,
    rgba(7, 7, 5, 0.7) 0%,
    rgba(7, 7, 5, 0) 100%
  );
  color: var(--white);
}

.site-header__inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  line-height: 1.2;
}

.brand__seal {
  width: 54px;
  height: 54px;
  min-width: 54px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: contain;
  flex: 0 0 54px;
}

.brand span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.seal {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.brand small {
  opacity: 0.62;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 38px);
}

.site-nav a {
  position: relative;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav > a:not(.site-nav__contact)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:not(.site-nav__contact):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding-inline: 18px;
  border: 1px solid currentColor;
}

.nav-toggle,
.nav-trigger {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 5, 0.88) 0%, rgba(7, 7, 5, 0.48) 44%, rgba(7, 7, 5, 0.08) 72%),
    linear-gradient(0deg, rgba(7, 7, 5, 0.72) 0%, transparent 36%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

.hero__content h1 {
  width: min(850px, 67vw);
  text-wrap: balance;
}

.hero__mission {
  width: min(610px, 58vw);
  margin: 34px 0 42px;
  color: rgba(255, 253, 248, 0.8);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.8;
}

.hero__index {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 30px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.statement__grid {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: clamp(36px, 5vw, 94px);
  align-items: start;
}

.section-number {
  padding-top: 10px;
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.statement h2 {
  max-width: 880px;
}

.statement__copy {
  display: grid;
  gap: 26px;
  padding-top: 57px;
  color: rgba(23, 22, 18, 0.68);
  font-size: 1.02rem;
}

.seal-section__grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.seal-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.seal-stage::before,
.seal-stage::after {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 139, 74, 0.22);
  border-radius: 50%;
  content: "";
}

.seal-stage::after {
  width: 96%;
  border-color: rgba(184, 139, 74, 0.09);
}

.seal-stage .seal {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.48));
}

.seal-section__content h2 {
  max-width: 680px;
}

.seal-section__content > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 34px;
  color: rgba(255, 253, 248, 0.67);
  font-size: 1.03rem;
}

.seal-section blockquote {
  margin: 54px 0 48px;
  color: var(--gold-light);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.08;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  margin-bottom: 72px;
}

.section-heading > p {
  padding-bottom: 10px;
  color: rgba(23, 22, 18, 0.64);
}

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

.mandate-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 42px clamp(28px, 3vw, 50px);
  border-right: 1px solid var(--line);
}

.mandate-card:last-child {
  border-right: 0;
}

.mandate-card--featured {
  background: #e8e0d3;
}

.mandate-card__index {
  margin-bottom: 80px;
  color: var(--gold-dark);
  font-size: 0.66rem;
  letter-spacing: 0.17em;
}

.mandate-card__price {
  margin: 28px 0 24px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.mandate-card__price span {
  color: rgba(23, 22, 18, 0.52);
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mandate-card > p:not(.mandate-card__index, .mandate-card__price) {
  color: rgba(23, 22, 18, 0.66);
}

.mandate-card ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 46px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  color: rgba(23, 22, 18, 0.72);
  font-size: 0.82rem;
  list-style: none;
}

.mandate-card li {
  position: relative;
  padding-left: 18px;
}

.mandate-card li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.mandate-card > a {
  margin-top: auto;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.one-off-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 40px;
  align-items: end;
  margin: 82px 0 34px;
}

.one-off-heading .eyebrow {
  margin: 0 0 7px;
}

.one-off-heading h3 {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.9rem);
  font-weight: 400;
  line-height: 1.04;
}

.one-off-section {
  background: #eee8de;
}

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

.one-off-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 4vw, 64px);
  min-height: 285px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.34);
}

.one-off-card + .one-off-card {
  border-left: 0;
}

.one-off-card h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.5rem);
  font-weight: 500;
}

.one-off-card__price {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  line-height: 1;
}

.one-off-card__price span {
  color: rgba(23, 22, 18, 0.5);
  font-family: var(--font-sans);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.one-off-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.one-off-card > div:last-child > p {
  color: rgba(23, 22, 18, 0.67);
}

.one-off-card small {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 0.68rem;
  line-height: 1.55;
}

.independence__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
}

.image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame--work {
  aspect-ratio: 1.32;
}

.independence__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 34px;
  color: rgba(255, 253, 248, 0.66);
}

.principle-list {
  display: grid;
  margin: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.principle-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.principle-list span {
  color: var(--gold-light);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
}

.principle-list p {
  color: rgba(255, 253, 248, 0.84);
}

.founder {
  background: var(--paper);
}

.founder__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(70px, 11vw, 170px);
  align-items: center;
}

.founder__content h2 {
  max-width: 760px;
}

.founder__lead {
  margin-top: 40px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.35;
}

.founder__content > p:not(.eyebrow, .founder__lead) {
  max-width: 670px;
  margin: 27px 0 38px;
  color: rgba(23, 22, 18, 0.64);
}

.portrait {
  margin: 0;
}

.portrait img {
  width: 100%;
  aspect-ratio: 1.1;
  height: auto;
  object-fit: cover;
  object-position: center 22%;
}

.portrait figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.portrait figcaption strong {
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 500;
}

.portrait figcaption span {
  color: rgba(23, 22, 18, 0.55);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.marrakech-band {
  position: relative;
  display: flex;
  min-height: min(68vw, 760px);
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.marrakech-band > img,
.marrakech-band__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.marrakech-band > img {
  object-fit: cover;
}

.marrakech-band__shade {
  background: linear-gradient(0deg, rgba(10, 9, 7, 0.82), rgba(10, 9, 7, 0.08) 72%);
}

.marrakech-band__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(50px, 7vw, 100px);
}

.marrakech-band__content h2 {
  max-width: 900px;
}

.marrakech-band__content > p:last-child {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 253, 248, 0.72);
}

.final-cta {
  text-align: center;
}

.final-cta__inner {
  display: flex;
  max-width: 980px;
  flex-direction: column;
  align-items: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 30px 0 40px;
  color: rgba(23, 22, 18, 0.64);
}

.site-footer {
  background: var(--black);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  gap: 70px;
  padding-block: 72px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__brand .seal {
  width: 100px;
  height: 100px;
  min-width: 100px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: contain;
  flex: 0 0 100px;
}

.site-footer__brand div {
  display: grid;
  gap: 5px;
}

.site-footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
}

.site-footer__brand span,
.site-footer__brand a,
.site-footer__nav a {
  color: rgba(255, 253, 248, 0.57);
}

.site-footer__brand span {
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__brand a {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 0.72rem;
  transition: color 180ms ease;
}

.site-footer__brand a:first-of-type {
  margin-top: 8px;
}

.site-footer__brand a:hover {
  color: var(--gold-light);
}

.site-footer__nav {
  display: grid;
  align-content: start;
  gap: 7px;
  font-size: 0.78rem;
}

.site-footer__nav p,
.site-footer__conviction p {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__conviction strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.06;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 253, 248, 0.4);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

/* Interior pages */
.interior-hero {
  padding-block: clamp(100px, 12vw, 180px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 139, 74, 0.14), transparent 30%),
    var(--ivory);
}

.interior-hero--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 139, 74, 0.16), transparent 30%),
    var(--black);
  color: var(--white);
}

.interior-hero__grid {
  display: grid;
  grid-template-columns: 0.55fr 1.55fr 0.7fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
}

.interior-hero__grid .eyebrow {
  align-self: start;
  padding-top: 13px;
}

.interior-hero__grid h1 {
  font-size: clamp(4.2rem, 7vw, 8rem);
}

.interior-hero__grid > p:last-child {
  padding-bottom: 8px;
  color: rgba(23, 22, 18, 0.62);
}

.interior-hero--dark .interior-hero__grid > p:last-child {
  color: rgba(255, 253, 248, 0.6);
}

.content-section {
  padding-block: clamp(80px, 9vw, 142px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(55px, 9vw, 150px);
}

.content-grid__aside {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.12;
}

.prose {
  display: grid;
  max-width: 830px;
  gap: 26px;
  color: rgba(23, 22, 18, 0.69);
}

.prose h2 {
  margin-bottom: 16px;
  color: var(--ink);
}

.prose .lead {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 2.15rem);
  line-height: 1.35;
}

.prose--light {
  color: rgba(255, 253, 248, 0.65);
}

.prose--light h2,
.prose--light .lead {
  color: var(--white);
}

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

.method-card {
  min-height: 280px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.method-card:last-child {
  border-right: 0;
}

.method-card span {
  color: var(--gold-dark);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.method-card h3 {
  margin: 54px 0 18px;
  font-size: 1.85rem;
}

.method-card p {
  color: rgba(23, 22, 18, 0.62);
  font-size: 0.84rem;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 680px;
}

.feature-split__image {
  min-height: 520px;
}

.feature-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 8vw, 130px);
  background: var(--black);
  color: var(--white);
}

.feature-split__content > p:not(.eyebrow) {
  margin: 34px 0;
  color: rgba(255, 253, 248, 0.64);
}

.mandate-detail-grid {
  display: grid;
  gap: 24px;
}

.mandate-detail {
  display: grid;
  grid-template-columns: 90px 1fr 0.65fr;
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(36px, 5vw, 70px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.32);
}

.mandate-detail--featured {
  background: #e8e0d3;
}

.mandate-detail__index {
  color: var(--gold-dark);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
}

.mandate-detail__price {
  margin: 24px 0;
  font-family: var(--font-display);
  font-size: 2.15rem;
  line-height: 1;
}

.mandate-detail__price span {
  color: rgba(23, 22, 18, 0.53);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mandate-detail__copy > p:last-child {
  max-width: 620px;
  color: rgba(23, 22, 18, 0.64);
}

.mandate-detail ul {
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: rgba(23, 22, 18, 0.72);
  font-size: 0.83rem;
  list-style: none;
}

.mandate-detail li {
  padding: 0 0 12px 18px;
  border-bottom: 1px solid var(--line);
}

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

.charter-article {
  display: grid;
  grid-template-columns: 86px 0.65fr 1.35fr;
  gap: 40px;
  padding: 33px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  align-items: start;
}

.charter-article span {
  color: var(--gold-light);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.charter-article h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.6rem);
}

.charter-article p {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.62);
}

.engagement {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
}

.engagement::before {
  display: block;
  width: 1px;
  height: 100px;
  margin: 0 auto 60px;
  background: var(--gold);
  content: "";
}

.seal--engagement {
  width: min(230px, 56vw);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto 52px;
  border-radius: 50%;
  box-shadow: 0 24px 65px rgba(24, 20, 14, 0.18);
}

.engagement h2 {
  margin-bottom: 50px;
  text-align: center;
}

.engagement__text {
  display: grid;
  gap: 25px;
  color: rgba(23, 22, 18, 0.69);
  font-size: 1.04rem;
}

.engagement__text .engagement__emphasis {
  margin-block: 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.16;
  text-align: center;
}

.signature-block {
  display: grid;
  justify-content: end;
  margin-top: 70px;
  text-align: left;
}

.signature-block strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.signature-block span {
  color: var(--gold-dark);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 10vw, 160px);
}

.contact-intro h2 {
  margin-bottom: 32px;
}

.contact-intro > p {
  color: rgba(23, 22, 18, 0.63);
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-note span {
  color: var(--gold-dark);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-note strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.contact-direct {
  display: grid;
  gap: 6px;
}

.contact-direct a {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-direct a:hover {
  color: var(--gold-dark);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(23, 22, 18, 0.62);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-dark);
}

.form-consent {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 12px;
  color: rgba(23, 22, 18, 0.57);
  font-size: 0.72rem;
}

.form-consent input {
  margin-top: 5px;
  accent-color: var(--gold-dark);
}

.contact-form .button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  color: var(--gold-dark);
  font-size: 0.76rem;
}

@media (max-width: 1100px) {
  .shell {
    width: min(100% - 52px, 1380px);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.58rem;
  }

  .statement__grid,
  .interior-hero__grid {
    grid-template-columns: 50px 1fr;
  }

  .statement__copy,
  .interior-hero__grid > p:last-child {
    grid-column: 2;
    padding-top: 10px;
  }

  .mandate-card {
    min-height: 660px;
  }

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

  .method-card:nth-child(3) {
    border-right: 0;
  }

  .method-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 34px, 1380px);
  }

  .section {
    padding-block: 86px;
  }

  h1 {
    font-size: clamp(3.3rem, 13vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.65rem, 10vw, 4.4rem);
  }

  .interior-hero__grid h1 {
    font-size: clamp(3.2rem, 11vw, 4.6rem);
    line-height: 0.96;
  }

  .site-header__inner {
    min-height: 78px;
    padding-top: env(safe-area-inset-top);
  }

  .brand__seal {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-basis: 44px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .nav-trigger {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    cursor: pointer;
    flex: 0 0 44px;
    place-content: center;
  }

  .nav-trigger span {
    display: block;
    width: 23px;
    height: 1px;
    margin: 3px 0;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .nav-trigger em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    max-width: 100vw;
    padding:
      calc(100px + env(safe-area-inset-top))
      max(34px, env(safe-area-inset-right))
      calc(45px + env(safe-area-inset-bottom))
      max(34px, env(safe-area-inset-left));
    overflow-y: auto;
    background: var(--black);
    color: var(--white);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav__contact {
    min-height: 48px;
    margin-top: 20px;
    padding-inline: 20px;
    font-family: var(--font-sans) !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
  }

  .nav-toggle:checked ~ .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  body:has(.nav-toggle:checked) {
    overflow: hidden;
  }

  .nav-toggle:checked + .nav-trigger {
    position: fixed;
    top: 17px;
    right: 17px;
    color: var(--white);
  }

  .nav-toggle:checked + .nav-trigger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-trigger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-trigger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: max(760px, 100svh);
    align-items: flex-end;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(7, 7, 5, 0.92) 0%, rgba(7, 7, 5, 0.5) 65%, rgba(7, 7, 5, 0.16)),
      linear-gradient(90deg, rgba(7, 7, 5, 0.4), transparent);
  }

  .hero__content {
    padding: 140px 0 140px;
  }

  .hero__content h1,
  .hero__mission {
    width: 100%;
  }

  .hero__mission {
    margin-block: 28px 36px;
  }

  .hero__index {
    bottom: 25px;
    justify-content: flex-start;
    gap: 13px;
  }

  .hero__index span:nth-child(n + 2) {
    display: none;
  }

  .statement__grid,
  .seal-section__grid,
  .section-heading,
  .independence__grid,
  .founder__grid,
  .interior-hero__grid,
  .content-grid,
  .feature-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .statement__grid,
  .interior-hero__grid {
    gap: 22px;
  }

  .statement__grid > *,
  .interior-hero__grid > * {
    grid-column: 1 !important;
  }

  .section-number {
    display: none;
  }

  .statement__copy {
    padding-top: 12px;
  }

  .seal-section__grid {
    gap: 65px;
  }

  .seal-stage {
    width: min(68vw, 260px);
    max-width: 260px;
    margin-inline: auto;
  }

  .seal-section__content {
    text-align: left;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 50px;
  }

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

  .mandate-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mandate-card:last-child {
    border-bottom: 0;
  }

  .mandate-card__index {
    margin-bottom: 38px;
  }

  .mandate-card > a {
    margin-top: 28px;
  }

  .one-off-grid {
    grid-template-columns: 1fr;
  }

  .one-off-card + .one-off-card {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .independence__grid,
  .founder__grid {
    gap: 56px;
  }

  .independence__content {
    order: -1;
  }

  .marrakech-band {
    min-height: min(700px, 100svh);
  }

  .marrakech-band > img {
    object-position: 58% center;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 52px 32px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .interior-hero {
    padding-block: 82px 100px;
  }

  .interior-hero__grid > p:last-child {
    padding-top: 14px;
  }

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

  .method-card,
  .method-card:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .method-card:nth-child(even) {
    border-right: 0;
  }

  .method-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .feature-split__content {
    padding-block: 75px;
  }

  .mandate-detail {
    grid-template-columns: 48px 1fr;
  }

  .mandate-detail ul {
    grid-column: 2;
  }

  .charter-article {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .charter-article p {
    grid-column: 2;
  }
}

@media (max-width: 540px) {
  .shell {
    width: calc(100% - 32px);
  }

  .brand small {
    display: none;
  }

  .interior-hero__grid h1 {
    font-size: clamp(2.75rem, 12vw, 3.4rem);
    line-height: 0.98;
  }

  .brand {
    gap: 12px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .hero {
    min-height: max(700px, 100svh);
  }

  .hero__content {
    padding-bottom: 110px;
  }

  .button {
    width: 100%;
  }

  .seal-section blockquote {
    margin-block: 40px;
  }

  .portrait figcaption {
    flex-direction: column;
  }

  .seal-stage {
    width: min(62vw, 230px);
    max-width: 230px;
  }

  .seal--engagement {
    width: min(150px, 46vw);
  }

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

  .site-footer__brand {
    grid-column: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .site-footer__brand .seal {
    width: 72px;
    height: 72px;
    min-width: 72px;
    flex-basis: 72px;
  }

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

  .method-card,
  .method-card:nth-child(3) {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .method-card:first-child {
    border-top: 0;
  }

  .mandate-detail {
    grid-template-columns: 1fr;
  }

  .mandate-detail ul {
    grid-column: 1;
  }

  .one-off-heading,
  .one-off-card {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-field--full,
  .form-consent,
  .contact-form .button,
  .form-status {
    grid-column: 1;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: clamp(2.65rem, 13vw, 3.25rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 2.9rem);
    line-height: 1;
  }

  h3 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .interior-hero__grid h1 {
    font-size: clamp(2.35rem, 12vw, 2.75rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .section {
    padding-block: 70px;
  }

  .site-nav a {
    font-size: 2rem;
  }

  .hero__content {
    padding-top: 110px;
    padding-bottom: 96px;
  }

  .hero__mission {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .button {
    min-height: 52px;
    gap: 18px;
    padding-inline: 18px;
    font-size: 0.66rem;
  }

  .mandate-card,
  .mandate-detail,
  .one-off-card {
    padding-inline: 22px;
  }

  .charter-article {
    grid-template-columns: 1fr;
  }

  .charter-article p {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Ajustements de l’édition statique */
.site-nav a[aria-current="page"]:not(.site-nav__contact)::after {
  transform: scaleX(1);
}

.site-nav__contact[aria-current="page"] {
  background: var(--gold-dark);
  color: var(--white);
}

.form-status:empty {
  display: none;
}
