@font-face {
  font-family: "Glacial Indifference";
  src: url("./assets/fonts/GlacialIndifference-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("./assets/fonts/GlacialIndifference-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("./assets/fonts/GlacialIndifference-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --olive: #424028;
  --olive-deep: #302e1c;
  --olive-raised: #4a4830;
  --cream: #f5f1e6;
  --accent: #d9b28b;
  --shadow-soft: 0 1.5rem 3rem rgba(15, 14, 8, 0.28);
  --shadow-lift: 0 0.6rem 1.4rem rgba(15, 14, 8, 0.24);
  --logo-size: min(42vw, 30rem);
  --maison-script: "Sloop Script Pro", "Bodoni 72", Didot, Georgia, serif;
  --maison-sans: "Glacial Indifference", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--olive);
  color: #f7f5ed;
  font-family: Georgia, "Times New Roman", serif;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.25rem 2.5rem;
  background: rgba(66, 64, 40, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 350ms ease;
}

body.menu-open .site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fffdf7;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle-line {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  transition: transform 350ms ease, width 350ms ease;
}

.menu-toggle-label {
  font-family: var(--maison-sans);
  font-size: 0.62rem;
}

.menu-toggle:hover .menu-toggle-line,
.menu-toggle:focus-visible .menu-toggle-line {
  width: 2.35rem;
}

.menu-toggle:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.5rem;
}

.profile-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #f5eddb;
  text-decoration: none;
  visibility: hidden;
}

.site-header-home {
  color: #f5f1e6;
  font-family: var(--maison-sans);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header-home:hover,
.site-header-home:focus-visible {
  color: #d9b28b;
}

.site-header-home:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.5rem;
}

.profile-mark {
  position: relative;
  width: 2rem;
  height: 2rem;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.profile-mark::before {
  content: "";
  position: absolute;
  top: 0.12rem;
  left: 0.7rem;
  width: 0.58rem;
  height: 0.72rem;
  border: 1px solid currentColor;
  border-radius: 48% 52% 46% 54%;
  transform: rotate(12deg);
}

.profile-mark::after {
  content: "";
  position: absolute;
  right: 0.08rem;
  bottom: 0.1rem;
  left: 0.25rem;
  height: 0.86rem;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 62% 38% 0 0;
  transform: rotate(-7deg);
}

.profile-link::before {
  content: "";
  position: absolute;
  top: 0.05rem;
  left: 0.58rem;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: #8b3d26;
  transition: transform 400ms ease;
}

.profile-link:hover .profile-mark,
.profile-link:focus-visible .profile-mark {
  transform: translateY(-0.12rem) rotate(3deg);
}

.profile-link:hover::before,
.profile-link:focus-visible::before {
  transform: translate(0.08rem, -0.04rem);
}

.profile-link:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.5rem;
}

.auth-modal {
  position: fixed;
  z-index: 35;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  background: rgba(23, 22, 13, 0.45);
}

.auth-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.home .auth-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: min(36rem, 96%);
  max-width: 44rem;
  padding: 1.5rem 1.75rem;
  background: var(--olive);
  color: #f5f1e6;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 2.5rem 4rem rgba(15, 14, 8, 0.22);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 61;
}

.auth-close {
  position: absolute;
  top: 1.15rem;
  right: 1.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}

.auth-close:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.35rem;
}

.auth-eyebrow {
  margin: 0 0 1.6rem;
  color: #8b3d26;
  font-family: var(--maison-sans);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home .auth-eyebrow,
.home .auth-card h1,
.home .auth-intro,
.home .auth-form label,
.home .auth-form input,
.home .auth-submit {
  color: #f5f1e6;
}

.home .auth-card h1 {
  margin: 0;
  font-size: 2.35rem;
  font-style: italic;
  font-weight: 400;
}

.auth-intro {
  margin: 0.55rem 0 2rem;
  font-size: 0.95rem;
  opacity: 0.7;
}

.auth-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(66, 64, 40, 0.25);
}

.auth-switch-button {
  padding: 0 0 0.7rem;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--maison-sans);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-switch-button.is-active {
  border-color: #8b3d26;
  color: #8b3d26;
}

.auth-form {
  display: grid;
  gap: 0.55rem;
}

.auth-form.is-hidden {
  display: none;
}

.auth-form label {
  margin-top: 0.45rem;
  font-family: var(--maison-sans);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(66, 64, 40, 0.35);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.95rem;
}

.auth-form input:focus {
  border-color: #8b3d26;
}

.home .auth-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.home .auth-submit {
  margin-top: 1.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--olive);
  cursor: pointer;
  font-family: var(--maison-sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.home .auth-submit:hover,
.home .auth-submit:focus-visible {
  background: #f5f1e6;
  border-color: #f5f1e6;
  color: var(--olive);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.auth-submit:focus-visible,
.auth-switch-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.25rem;
}

/* Contact modal (improved visual style) */
.contact-modal {
  position: fixed;
  z-index: 35;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.contact-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.home .contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}

.home .contact-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: min(40rem, 96%);
  max-width: 44rem;
  background: var(--olive);
  color: #f5f1e6;
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 2.5rem 4rem rgba(15, 14, 8, 0.22);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 61;
}

.contact-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  padding: 0.15rem 0.4rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.1rem;
}

.contact-modal h2 {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f1e6;
}

.home .contact-modal h2,
.home .contact-modal-body {
  color: #f5f1e6;
}

.home .contact-modal-body {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.contact-modal-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: #f5f1e6;
  color: var(--olive);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--maison-sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.home .contact-action-btn {
  background: #ffffff;
  border-color: rgba(255,255,255,0.2);
  color: var(--olive);
}

.home .contact-action-btn.contact-secondary {
  border-color: rgba(255,255,255,0.45);
  background: transparent;
  color: #f5f1e6;
}

.contact-action-btn:focus-visible,
.contact-modal-close:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.25rem;
}

.site-menu {
  position: fixed;
  z-index: 15;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(22rem, 82vw);
  padding: 7rem 2.75rem 2.5rem;
  background: #f5f1e6;
  color: var(--olive);
  transform: translateX(-100%);
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.menu-eyebrow {
  margin: 0 0 4.5rem;
  font-family: var(--maison-sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lang-switch {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.lang-button {
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(66,64,40,0.12);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--maison-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lang-button[aria-pressed="true"] {
  background: #d9b28b;
  color: var(--olive);
  border-color: #d9b28b;
}

.site-menu nav {
  display: grid;
  gap: 1.25rem;
}

.site-menu nav a {
  color: inherit;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-style: italic;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.site-menu nav a:hover,
.site-menu nav a:focus-visible {
  color: #8b3d26;
  transform: translateX(0.4rem);
}

.menu-note {
  margin: auto 0 0;
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.7;
}

.menu-signature {
  display: block;
  width: min(8rem, 58%);
  margin: auto auto 0;
  filter: brightness(0.62) saturate(0.7);
  transition: opacity 220ms ease;
}

.menu-signature:hover,
.menu-signature:focus-visible {
  opacity: 0.7;
}

.menu-signature img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-lang {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0 1.2rem;
}

/* Place language buttons at the bottom of the menu, just above the signature */
.menu-inner .menu-lang {
  margin-top: auto;
  margin-bottom: 2.7rem;
  justify-content: center;
  padding-left: 0;
}

.menu-lang-button {
  padding: 0.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-lang-button[aria-pressed="true"] svg { filter: drop-shadow(0 0 0.4rem rgba(0,0,0,0.06)); }

/* Page flags placed above the logo */
.page-flags {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7.5rem;
  display: flex;
  gap: 0.6rem;
  z-index: 12;
}

.page-flags .menu-lang-button img {
  display: block;
  width: auto;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0.6rem 1.2rem rgba(3,3,3,0.08);
}

.page-flags .menu-lang-button {
  background: transparent;
  border: 0;
  padding: 0.15rem;
}

.menu-backdrop {
  position: fixed;
  z-index: 10;
  inset: 0;
  background: rgba(23, 22, 13, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-menu {
  transform: translateX(0);
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .menu-toggle-line {
  width: 1.8rem;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle {
  color: var(--olive);
}

.home {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  background: radial-gradient(ellipse 55rem 45rem at 50% 42%, var(--olive-raised) 0%, var(--olive) 60%);
}

.inner-page {
  min-height: 100svh;
  padding: 1.75rem max(2rem, 8vw) 4rem;
  background: radial-gradient(ellipse 60rem 40rem at 50% -8%, var(--olive-raised) 0%, var(--olive) 55%);
  color: #f5f1e6;
  font-family: var(--maison-sans);
}

.inner-header,
.inner-intro,
.inner-footer,
.request-form,
.carnet-lines,
.findings-list {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
}

.inner-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
}

.inner-wordmark {
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: 1.8rem;
  font-style: italic;
  text-decoration: none;
}

.inner-wordmark img {
  display: block;
  height: 2.15rem;
  width: auto;
}

.inner-back,
.inner-cta-link {
  color: #f5f1e6;
  font-family: var(--maison-sans);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.inner-back:hover,
.inner-back:focus-visible,
.inner-cta-link:hover,
.inner-cta-link:focus-visible {
  color: #d9b28b;
}

.inner-intro {
  display: grid;
  grid-template-columns: minmax(9rem, 0.55fr) minmax(18rem, 1.45fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  padding: clamp(5rem, 13vh, 8rem) 0 5rem;
}

.inner-eyebrow {
  margin: 0 0 1rem;
  color: #d9b28b;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.inner-intro h1 {
  max-width: 38rem;
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.inner-intro h1 em {
  color: #d9b28b;
  font-style: italic;
}

.inner-intro > div > p,
.inner-intro > p:last-child {
  max-width: 25rem;
  margin: 0 0 0.25rem;
  color: rgba(245, 241, 230, 0.7);
  font-size: 0.88rem;
  line-height: 1.8;
}

.request-form {
  border-top: 1px solid rgba(245, 241, 230, 0.2);
}

.request-page .inner-header {
  max-width: 58rem;
}

.request-page .inner-intro {
  display: block;
  max-width: 58rem;
  padding: clamp(4rem, 9vh, 6rem) 0 3rem;
  text-align: center;
}

.request-page .inner-eyebrow {
  margin-bottom: 1.6rem;
}

.request-page .inner-intro h1 {
  max-width: 28rem;
  margin: 0 auto;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.03;
}

.request-page .inner-intro > p:last-child {
  max-width: 25rem;
  margin: 1.5rem auto 0;
  font-family: var(--maison-sans);
  font-size: 0.95rem;
  color: rgba(245, 241, 230, 0.9);
  font-style: normal;
  line-height: 1.75;
}

.request-page .request-context {
  max-width: 58rem;
  margin-bottom: 2.5rem;
}

.request-page .request-context > div {
  justify-content: center;
  padding: 0.85rem 1rem;
}

.request-page .request-context p {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.request-page .request-form {
  max-width: 58rem;
}

@media (min-width: 601px) {
  .request-page .request-form {
    padding: 0 3rem;
    border: 1px solid rgba(245, 241, 230, 0.12);
    border-radius: 6px;
    background: linear-gradient(180deg, var(--olive-raised) 0%, var(--olive) 40%);
    box-shadow: var(--shadow-soft);
    animation: requestCardIn 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .request-page .request-actions {
    padding-bottom: 1.75rem;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1), transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes requestCardIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.request-page .request-progress {
  max-width: 31rem;
  margin: 0 auto;
  padding: 1rem 0;
  font-size: 0.52rem;
}

.request-page .request-step {
  min-height: 12rem;
  padding: 2rem 0 1.5rem;
  text-align: center;
}

.request-page .request-step legend {
  margin: 0 auto;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.08;
}

.request-page .request-prompt {
  max-width: 23rem;
  margin: 0.12rem auto 1.2rem;
  font-size: 0.76rem;
  line-height: 1.65;
}

.request-page .request-step input,
.request-page .request-step textarea,
.request-page .request-step select {
  display: block;
  width: min(100%, 28rem);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: 0.82rem;
}

.request-page .request-step textarea {
  min-height: 4.5rem;
}

.request-page .request-actions {
  max-width: 31rem;
  margin: 0 auto;
  margin-top: 2rem;
}

.request-page .request-note,
.request-page .request-success {
  max-width: 31rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.65rem;
}

.mobile-start,
.mobile-resume {
  display: none;
}

.request-context {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 64rem;
  margin: 0 auto 3rem;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
}

.request-context > div {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 1rem 1rem 0;
  border-right: 1px solid rgba(245, 241, 230, 0.2);
}

.request-context > div + div {
  padding-left: 1rem;
}

.request-context > div:last-child {
  border-right: 0;
}

.request-context span,
.finding-label {
  color: #d9b28b;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-context p {
  margin: 0;
  color: rgba(245, 241, 230, 0.7);
  font-size: 0.72rem;
}

.request-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  color: #d9b28b;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-progress-line {
  flex: 1;
  height: 1px;
  background: rgba(245, 241, 230, 0.2);
}

.request-progress-line span {
  display: block;
  height: 1px;
  background: #d9b28b;
  transition: width 350ms ease;
}

.request-step {
  display: none;
  min-height: 15rem;
  padding: 2.5rem 0 2rem;
  border: 0;
}

.request-step.is-active {
  display: block;
  animation: requestStepIn 450ms ease both;
}

.request-step legend {
  padding: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
}

.request-prompt {
  max-width: 25rem;
  margin: 1.2rem 0 2.5rem;
  color: rgba(245, 241, 230, 0.62);
  font-size: 0.84rem;
  line-height: 1.7;
}

.request-step input,
.request-step textarea,
.request-step select {
  width: min(100%, 34rem);
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 230, 0.4);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #f5f1e6;
  font: inherit;
  font-size: 0.92rem;
}

.request-step textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.request-upload {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: min(100%, 28rem);
  margin: 1.4rem auto 0;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
  color: rgba(245, 241, 230, 0.7);
  cursor: pointer;
  text-align: left;
  transition: color 220ms ease, border-color 220ms ease;
}

.request-upload:hover,
.request-upload:focus-within {
  border-color: #d9b28b;
  color: #f5f1e6;
}

.request-upload-icon {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #d9b28b;
  font-size: 1.1rem;
  font-weight: 300;
}

.request-upload strong,
.request-upload small {
  display: block;
}

.request-upload strong {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.request-upload small {
  margin-top: 0.25rem;
  color: rgba(245, 241, 230, 0.45);
  font-size: 0.65rem;
}

.request-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.request-file-list {
  width: min(100%, 28rem);
  margin: 0.6rem auto 0;
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #d9b28b;
  font-size: 0.62rem;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.request-file-list.is-empty {
  color: rgba(217, 178, 139, 0.8);
}

.request-file-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-file-item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 0.38rem;
  padding: 0.2rem 0.26rem 0.2rem 0.5rem;
  border: 1px solid rgba(217, 178, 139, 0.45);
  border-radius: 999px;
  background: rgba(217, 178, 139, 0.08);
}

.request-file-item.is-pending {
  border-style: dashed;
  border-color: rgba(217, 178, 139, 0.65);
  background: rgba(217, 178, 139, 0.12);
}

.request-file-name {
  max-width: min(70vw, 18rem);
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.request-file-state {
  color: rgba(245, 241, 230, 0.8);
  font-size: 0.54rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.request-file-remove {
  display: inline-grid;
  width: 1.02rem;
  height: 1.02rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(217, 178, 139, 0.6);
  border-radius: 50%;
  background: transparent;
  color: #d9b28b;
  cursor: pointer;
  font-size: 0.74rem;
  line-height: 1;
}

.request-file-remove:hover,
.request-file-remove:focus-visible {
  border-color: #d9b28b;
  color: #f5f1e6;
}

.request-file-remove:focus-visible {
  outline: 1px solid #d9b28b;
  outline-offset: 0.1rem;
}

.request-error {
  display: none;
  width: min(100%, 28rem);
  margin: 0.5rem auto 0;
  color: #d9b28b;
  font-size: 0.62rem;
  line-height: 1.4;
  text-align: center;
}

.request-error.is-visible {
  display: block;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: min(100%, 28rem);
  margin: 0 auto 1rem;
}

.contact-method {
  display: grid;
  min-height: 4.5rem;
  place-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.4rem;
  border: 0;
  background: transparent;
  color: rgba(245, 241, 230, 0.62);
  cursor: pointer;
  font-family: var(--maison-sans);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.contact-method svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.contact-method:hover,
.contact-method:focus-visible,
.contact-method.is-selected {
  color: #f5f1e6;
}

.contact-method:focus-visible {
  outline: 1px solid #d9b28b;
  outline-offset: 0.35rem;
}

.contact-method.is-selected svg {
  color: #d9b28b;
  transform: scale(1.12);
}

.contact-field {
  width: min(100%, 28rem);
  margin: 0 auto;
  text-align: center;
}

.contact-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(245, 241, 230, 0.58);
  font-size: 0.62rem;
}

.contact-field input {
  width: 100%;
  text-align: center;
}

.request-step select option {
  color: var(--olive);
}

.request-step input,
.request-step textarea {
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.request-step input:focus,
.request-step textarea:focus,
.request-step select:focus {
  border-color: #d9b28b;
  box-shadow: 0 1px 0 0 rgba(217, 178, 139, 0.5);
}

.timeline-picker {
  position: relative;
  width: min(100%, 28rem);
  margin: 0 auto;
}

.timeline-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 230, 0.4);
  background: transparent;
  color: rgba(245, 241, 230, 0.62);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  text-align: left;
}

.timeline-trigger span {
  color: #d9b28b;
  font-size: 1.1rem;
  transition: transform 220ms ease;
}

.timeline-picker[data-open="true"] .timeline-trigger {
  border-color: #d9b28b;
  color: #f5f1e6;
}

.timeline-picker[data-open="true"] .timeline-trigger span {
  transform: rotate(180deg);
}

.timeline-options {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: calc(100% + 0.5rem);
  left: 0;
  display: grid;
  padding: 0.35rem 0;
  border: 1px solid rgba(217, 178, 139, 0.6);
  background: #424028;
  box-shadow: 0 1rem 2rem rgba(15, 14, 8, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.timeline-picker[data-open="true"] .timeline-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.timeline-options button {
  padding: 0.8rem 1rem;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 230, 0.12);
  background: transparent;
  color: #f5f1e6;
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease;
}

.timeline-options button:last-child {
  border-bottom: 0;
}

.timeline-options button:hover,
.timeline-options button:focus-visible {
  background: rgba(217, 178, 139, 0.14);
  color: var(--accent);
}

.timeline-picker select {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.request-step ::placeholder {
  color: rgba(245, 241, 230, 0.42);
}

.request-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
}

.request-back {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(245, 241, 230, 0.58);
  cursor: pointer;
  font-family: var(--maison-sans);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-back:disabled {
  visibility: hidden;
}

.request-back:hover,
.request-back:focus-visible {
  color: #d9b28b;
}

@keyframes requestStepIn {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inner-cta {
  display: inline-flex;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.85rem 1rem;
  border: 1px solid #d9b28b;
  background: transparent;
  color: #f5f1e6;
  cursor: pointer;
  font-family: var(--maison-sans);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.inner-cta:hover,
.inner-cta:focus-visible {
  background: #d9b28b;
  color: var(--olive);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.inner-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.request-note,
.request-success {
  color: rgba(245, 241, 230, 0.48);
  font-size: 0.72rem;
}

.request-success {
  color: #d9b28b;
}

.request-success-screen {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(36, 35, 22, 0.9);
}

.request-success-screen[hidden] {
  display: none;
}

.request-success-card {
  width: min(36rem, 96vw);
  padding: 1.6rem 1.25rem;
  border: 1px solid rgba(217, 178, 139, 0.55);
  background: var(--olive);
  color: #f5f1e6;
  text-align: center;
}

.request-success-card h2 {
  margin: 0.2rem 0 0.8rem;
  font-family: var(--maison-script);
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.request-success-card p {
  margin: 0;
  color: rgba(245, 241, 230, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
}

.request-success-actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.request-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.68rem 0.95rem;
  border: 1px solid rgba(217, 178, 139, 0.8);
  background: transparent;
  color: #f5f1e6;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--maison-sans);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.request-success-btn.is-solid {
  background: #d9b28b;
  color: var(--olive);
}

.request-success-btn:hover,
.request-success-btn:focus-visible {
  border-color: #d9b28b;
}

body.request-success-open {
  overflow: hidden;
}

.carnet-lines {
  border-top: 1px solid rgba(245, 241, 230, 0.2);
}

.carnet-lines p {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
  margin: 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-style: italic;
  transition: padding-left 280ms cubic-bezier(0.22, 1, 0.36, 1), color 280ms ease;
}

.carnet-lines p:hover {
  padding-left: 0.6rem;
  color: var(--accent);
}

.carnet-lines p span {
  color: #d9b28b;
  font-family: var(--maison-sans);
  font-size: 0.58rem;
  font-style: normal;
  transition: color 280ms ease;
}

.carnet-focus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3.25rem;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
}

.carnet-focus article {
  padding: 1.4rem 1.1rem 1.5rem;
  border-right: 1px solid rgba(245, 241, 230, 0.2);
  transition: background-color 320ms ease;
}

.carnet-focus article:hover {
  background: rgba(217, 178, 139, 0.05);
}

.carnet-focus article:last-child {
  border-right: 0;
}

.carnet-focus-label {
  margin: 0 0 0.8rem;
  color: #d9b28b;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carnet-focus h2 {
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.06;
}

.carnet-focus article p:last-child {
  margin: 0.85rem 0 0;
  color: rgba(245, 241, 230, 0.66);
  font-size: 0.73rem;
  line-height: 1.6;
}

.carnet-process {
  display: grid;
  grid-template-columns: minmax(12rem, 0.75fr) minmax(18rem, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: 3.25rem 0 2rem;
}

.carnet-process h2 {
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.carnet-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
}

.carnet-process-list li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1.05rem;
  padding: 1.1rem 0.75rem;
  margin: 0 -0.75rem;
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
  border-radius: 4px;
  transition: background-color 280ms ease;
}

.carnet-process-list li:hover {
  background: rgba(217, 178, 139, 0.06);
}

.carnet-process-list span {
  color: #d9b28b;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
}

.carnet-process-list h3 {
  margin: 0;
  color: #fffdf7;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.carnet-process-list p {
  margin: 0.55rem 0 0;
  color: rgba(245, 241, 230, 0.65);
  font-size: 0.74rem;
  line-height: 1.6;
}

.carnet-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.65rem;
}

.carnet-fit article {
  padding: 1.25rem 1.15rem 1.35rem;
  border: 1px solid rgba(245, 241, 230, 0.16);
  border-radius: 6px;
  background: linear-gradient(165deg, var(--olive-raised) 0%, var(--olive) 65%);
  box-shadow: var(--shadow-lift);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.carnet-fit article:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.1rem 2rem rgba(15, 14, 8, 0.3);
}

.carnet-fit h2 {
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
}

.carnet-fit p {
  margin: 0.95rem 0 0;
  color: rgba(245, 241, 230, 0.68);
  font-size: 0.74rem;
  line-height: 1.7;
}

.carnet-fit p strong {
  color: #d9b28b;
  font-weight: 500;
}

.chapter-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.chapter-proof article {
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(245, 241, 230, 0.16);
  border-radius: 6px;
  background: linear-gradient(165deg, var(--olive-raised) 0%, var(--olive) 65%);
  box-shadow: var(--shadow-lift);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.chapter-proof article:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.1rem 2rem rgba(15, 14, 8, 0.3);
}

.chapter-proof-value {
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(1.65rem, 3.1vw, 2.35rem);
  font-style: italic;
  line-height: 1.08;
}

.chapter-proof-label {
  margin: 0.6rem 0 0;
  color: rgba(245, 241, 230, 0.66);
  font-size: 0.7rem;
  line-height: 1.5;
}

.chapter-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.15rem;
  padding: 1.4rem 0 1.2rem;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
}

.chapter-cta h2 {
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
}

.chapter-cta p:last-child {
  margin: 0.75rem 0 0;
  max-width: 34rem;
  color: rgba(245, 241, 230, 0.66);
  font-size: 0.74rem;
  line-height: 1.6;
}

.findings-angles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.6rem;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
}

.findings-angles article {
  padding: 1.2rem 1rem 1.3rem;
  border-right: 1px solid rgba(245, 241, 230, 0.2);
  transition: background-color 320ms ease;
}

.findings-angles article:hover {
  background: rgba(217, 178, 139, 0.05);
}

.findings-angles article:last-child {
  border-right: 0;
}

.findings-angles h2 {
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.findings-angles p:last-child {
  margin: 0.8rem 0 0;
  color: rgba(245, 241, 230, 0.66);
  font-size: 0.72rem;
  line-height: 1.58;
}

.findings-list {
  border-top: 1px solid rgba(245, 241, 230, 0.2);
}

.findings-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.7rem 0.9rem;
  margin: 0 -0.9rem;
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
  border-radius: 6px;
  transition: background-color 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.findings-list article:hover {
  background: rgba(217, 178, 139, 0.06);
  transform: translateX(0.3rem);
}

.findings-list article > span {
  color: #d9b28b;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.finding-label {
  margin: 0 0 0.7rem;
}

.findings-list h2 {
  max-width: 38rem;
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.finding-result {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.9rem 0 0;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(217, 178, 139, 0.4);
  border-radius: 999px;
  color: #d9b28b;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.finding-result::before {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: currentColor;
}

.inner-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3rem;
  color: rgba(245, 241, 230, 0.55);
  font-size: 0.78rem;
}

.contact-links {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  animation: contactReveal 1.2s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform: translateX(-50%);
}

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}
.contact-modal[aria-hidden="false"] {
  display: block;
}
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23,22,13,0.5);
}
.contact-modal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(36rem, 92vw);
  max-width: 36rem;
  background: #f5f1e6;
  color: var(--olive);
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 1.5rem 4rem rgba(15,14,8,0.22);
  font-family: var(--maison-sans);
}
.contact-modal-card h2 {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}
.contact-modal-body {
  margin-top: 0.6rem;
  font-family: var(--maison-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--olive);
}
.contact-modal-close {
  position: absolute;
  right: 0.6rem;
  top: 0.35rem;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  color: inherit;
  cursor: pointer;
}
.contact-modal-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
}
.contact-action-btn {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: #f5f1e6;
  cursor: pointer;
}
.contact-secondary {
  background: transparent;
  color: var(--olive);
  border-color: rgba(66,64,40,0.15);
}

.contact-links a {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  color: rgba(245, 241, 230, 0.82);
  transition: color 250ms ease, transform 250ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: #d9b28b;
  transform: translateY(-0.18rem);
}

.contact-links a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.4rem;
}

.contact-links svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

/* Restore same visual style for contact buttons */
.contact-button {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  color: rgba(245, 241, 230, 0.82);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 250ms ease, transform 250ms ease, background-color 250ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  color: #d9b28b;
  background: rgba(217, 178, 139, 0.1);
  transform: translateY(-0.18rem);
}

.contact-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.4rem;
}

.contact-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.profile-page {
  min-height: 100svh;
  padding: 8rem max(2rem, 8vw) 4rem;
  background: radial-gradient(ellipse 55rem 40rem at 50% -8%, var(--olive-raised) 0%, var(--olive) 55%);
  color: #f5f1e6;
  font-family: var(--maison-sans);
}

.profile-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 4rem;
  border-bottom: 1px solid rgba(245, 241, 230, 0.28);
  padding-bottom: 1.5rem;
}

.profile-page-eyebrow {
  margin: 0 0 0.7rem;
  color: #d9b28b;
  font-family: var(--maison-sans);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-page h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-style: italic;
  font-weight: 400;
}

.profile-back {
  color: inherit;
  font-family: var(--maison-sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.profile-back:hover,
.profile-back:focus-visible {
  color: #d9b28b;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(18rem, 1.3fr);
  gap: clamp(3rem, 9vw, 9rem);
  max-width: 72rem;
  margin: 0 auto;
}

.profile-portrait {
  display: grid;
  width: min(12rem, 100%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(245, 241, 230, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--olive-raised) 0%, var(--olive) 70%);
  box-shadow: var(--shadow-lift);
}

.profile-portrait .profile-mark {
  color: #f5f1e6;
  transform: scale(2.8);
}

.profile-details h2 {
  margin: 0 0 2rem;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-style: italic;
  font-weight: 400;
}

.profile-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0.6rem;
  margin: 0 -0.6rem;
  border-top: 1px solid rgba(245, 241, 230, 0.22);
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 280ms ease;
}

.profile-detail-row:hover {
  background: rgba(217, 178, 139, 0.05);
}

.profile-detail-row span:first-child {
  color: rgba(245, 241, 230, 0.65);
  font-family: var(--maison-sans);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-logout {
  margin-top: 2rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid #f5f1e6;
  background: transparent;
  color: #f5f1e6;
  cursor: pointer;
  font-family: var(--maison-sans);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}

.profile-logout:hover,
.profile-logout:focus-visible {
  border-color: #d9b28b;
  color: var(--olive);
  background: #d9b28b;
}

.maison-page {
  min-height: 100svh;
  padding: 1.75rem max(2rem, 7vw) 4rem;
  background: radial-gradient(ellipse 60rem 40rem at 50% -8%, var(--olive-raised) 0%, var(--olive) 55%);
  color: #f5f1e6;
  font-family: var(--maison-sans);
}

.maison-topbar,
.maison-hero,
.maison-manifesto,
.maison-values,
.maison-footer {
  max-width: 72rem;
  margin-right: auto;
  margin-left: auto;
}

.maison-closing {
  max-width: 46rem;
  margin: 0 auto;
  padding: 7rem 0 5rem;
  text-align: center;
}

.maison-closing blockquote {
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.maison-closing blockquote em {
  color: #d9b28b;
  font-style: italic;
}

.maison-closing > p:last-child {
  max-width: 26rem;
  margin: 1.8rem auto 0;
  color: rgba(245, 241, 230, 0.58);
  font-family: var(--maison-sans);
  font-size: 0.76rem;
  line-height: 1.7;
}

.maison-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
}

.maison-wordmark {
  width: 7.5rem;
  height: auto;
  filter: brightness(1.35) grayscale(1);
}

.maison-back {
  color: #f5f1e6;
  font-family: var(--maison-sans);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.maison-back:hover,
.maison-back:focus-visible,
.maison-footer a:hover,
.maison-footer a:focus-visible {
  color: #d9b28b;
}

.maison-hero {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(18rem, 1.55fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  padding: clamp(5rem, 13vh, 8rem) 0 6.5rem;
}

.maison-eyebrow,
.maison-section-label {
  margin: 0 0 1rem;
  color: #d9b28b;
  font-family: var(--maison-sans);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.maison-hero h1 {
  max-width: 32rem;
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.maison-hero-copy {
  max-width: 22rem;
  margin: 1.5rem 0 0.3rem;
  color: rgba(245, 241, 230, 0.72);
  font-family: var(--maison-sans);
  font-size: 0.88rem;
  line-height: 1.75;
}

.maison-manifesto {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 9vw, 9rem);
  padding: 3.5rem 0 4.5rem;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
}

.maison-manifesto h2 {
  max-width: 20rem;
  margin: 0;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.maison-manifesto-copy {
  max-width: 31rem;
  margin: 0;
  color: rgba(245, 241, 230, 0.75);
  font-family: var(--maison-sans);
  font-size: 0.88rem;
  line-height: 1.8;
}

.maison-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
}

.maison-value {
  min-height: 13rem;
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-right: 1px solid rgba(245, 241, 230, 0.2);
  transition: background-color 320ms ease;
}

.maison-value:hover {
  background: rgba(217, 178, 139, 0.05);
}

.maison-value + .maison-value {
  padding-left: 1.5rem;
}

.maison-value:last-child {
  border-right: 0;
}

.maison-value-number {
  display: block;
  margin-bottom: 4rem;
  color: #d9b28b;
  font-family: var(--maison-sans);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.maison-value h3 {
  margin: 0 0 0.8rem;
  color: #fffdf7;
  font-family: var(--maison-script);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
}

.maison-value p {
  max-width: 15rem;
  margin: 0;
  color: rgba(245, 241, 230, 0.62);
  font-family: var(--maison-sans);
  font-size: 0.78rem;
  line-height: 1.7;
}

.maison-domain-note {
  margin: 1.5rem 0 2.5rem;
  color: rgba(245, 241, 230, 0.6);
  font-size: 0.82rem;
  font-style: italic;
}

.maison-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #d9b28b;
  color: #f5f1e6;
  font-family: var(--maison-sans);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, gap 220ms ease;
}

.maison-cta:hover,
.maison-cta:focus-visible {
  gap: 1.35rem;
  color: #d9b28b;
}

.maison-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3rem;
  color: rgba(245, 241, 230, 0.58);
  font-size: 0.9rem;
}

.maison-footer p {
  margin: 0;
}

.maison-footer a {
  color: #f5f1e6;
  font-family: var(--maison-sans);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.floating-contact {
  position: fixed;
  z-index: 5;
  right: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(245, 241, 230, 0.42);
  background: rgba(66, 64, 40, 0.92);
  color: #f5f1e6;
  box-shadow: 0 0.7rem 2rem rgba(15, 14, 8, 0.14);
  font-family: var(--maison-sans);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  border-color: #d9b28b;
  background: var(--olive-raised);
  box-shadow: var(--shadow-lift);
  transform: translateY(-0.18rem);
}

.floating-contact:focus-visible {
  outline: 1px solid #f5f1e6;
  outline-offset: 0.35rem;
}

.floating-contact-icon {
  width: 1rem;
  height: 1rem;
  color: #d9b28b;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.brand-mark {
  width: var(--logo-size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: logoReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(1.25rem) scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contactReveal {
  from {
    opacity: 0;
    transform: translate(-50%, 0.5rem);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 600px) {
  :root {
    --logo-size: min(72vw, 22rem);
  }

  .home {
    padding: 1.25rem;
  }

  .contact-links {
    bottom: 1.5rem;
  }

  .home .contact-modal-card {
    top: auto;
    bottom: 5.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 24rem);
    padding: 1.1rem 1.25rem;
  }

  .site-header {
    padding: 1.5rem;
  }

  .site-menu {
    width: min(19rem, 82vw);
    padding: 6.5rem 2rem 2rem;
  }

  .menu-eyebrow,
  .site-menu nav a,
  .site-header-home,
  .inner-back,
  .maison-back,
  .profile-back {
    overflow-wrap: anywhere;
  }

  .auth-card {
    padding: 3rem 1.6rem 2rem;
  }

  .profile-page {
    padding: 7rem 1.5rem 3rem;
  }

  .profile-page-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 3rem;
  }

  .profile-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .profile-portrait {
    width: 9rem;
  }

  .maison-page {
    padding: 1.5rem 1.5rem 3rem;
  }

  .inner-page {
    padding: 1.5rem 1.5rem 3rem;
  }

  .inner-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding-bottom: 1.25rem;
  }

  .inner-wordmark {
    font-size: 1.5rem;
  }

  .inner-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 5rem 0 3.5rem;
  }

  .request-context {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }

  .request-context > div,
  .request-context > div + div {
    padding: 0.8rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 230, 0.2);
  }

  .request-context > div:last-child {
    border-bottom: 0;
  }

  .request-step {
    min-height: 16rem;
    padding-top: 2rem;
  }

  .request-page .inner-header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 0.8rem 0;
    background: var(--olive);
  }

  .request-page .inner-intro {
    padding-top: 3.5rem;
  }

  .request-page .inner-intro {
    min-height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 4rem;
  }

  .request-page .inner-intro > p:last-child {
    max-width: 22rem;
    margin-top: 1.6rem;
    line-height: 1.7;
  }

  .mobile-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    width: min(100%, 18rem);
    max-width: 100%;
    margin-top: 2.5rem;
    padding: 0.85rem 0;
    border: 0;
    border-bottom: 1px solid #d9b28b;
    background: transparent;
    color: #f5f1e6;
    cursor: pointer;
    font-family: var(--maison-sans);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-start span {
    color: #d9b28b;
    font-size: 1rem;
  }

  .mobile-start:focus-visible {
    outline: 1px solid #d9b28b;
    outline-offset: 0.4rem;
  }

  .mobile-resume:not([hidden]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    width: min(100%, 18rem);
    max-width: 100%;
    margin-top: 1.1rem;
    padding: 0.55rem 0;
    border: 0;
    background: transparent;
    color: #d9b28b;
    cursor: pointer;
    font-family: var(--maison-sans);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-resume:hover,
  .mobile-resume:focus-visible {
    color: #f5f1e6;
  }

  .request-page .request-context,
  .request-page .request-form {
    display: none;
  }

  body.mobile-request-started .request-page .inner-intro {
    display: none;
  }

  body.mobile-request-started .request-page .request-form {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 5rem);
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    border-top: 0;
  }

  body.mobile-request-started {
    height: 100svh;
    overflow: hidden;
  }

  body.mobile-request-started .request-page {
    height: 100svh;
    min-height: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  body.mobile-request-started .request-page .request-step {
    flex: 1;
    min-height: 0;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 1.75rem;
    padding-bottom: 1rem;
  }

  body.mobile-request-started .request-page .request-progress {
    top: 3.35rem;
  }

  body.mobile-request-started .request-page .request-step legend {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  body.mobile-request-started .request-page .request-prompt {
    margin: 0.8rem auto 1.25rem;
    font-size: 0.7rem;
    line-height: 1.45;
  }

  body.mobile-request-started .request-page .request-step textarea {
    min-height: 4.25rem;
    height: 4.25rem;
    padding: 0.7rem;
  }

  body.mobile-request-started .request-page .request-upload {
    min-height: 3.35rem;
    margin-top: 0.8rem;
    padding: 0.55rem 0.15rem;
  }

  body.mobile-request-started .request-page .request-upload small {
    font-size: 0.58rem;
  }

  body.mobile-request-started .request-page .request-file-list {
    margin-top: 0.35rem;
    font-size: 0.56rem;
  }

  body.mobile-request-started .request-page .request-actions {
    height: 3.5rem;
    margin-top: auto;
  }

  body.mobile-request-started .request-page .request-actions .inner-cta {
    margin-top: 0;
  }

  body.mobile-request-started .request-page .request-back {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    padding: 0 0.9rem;
    border: 1px solid rgba(245, 241, 230, 0.35);
  }

  body.mobile-request-started .request-page .request-note {
    margin-top: 0.35rem;
    font-size: 0.56rem;
  }

  .request-page .inner-intro h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .request-page .request-context {
    margin-bottom: 1.5rem;
  }

  .request-page .request-progress {
    position: sticky;
    top: 3.35rem;
    z-index: 1;
    background: var(--olive);
  }

  .request-page .request-step {
    min-height: 20rem;
    padding-top: 2.5rem;
  }

  .request-page .request-step legend {
    width: min(100%, 18rem);
    max-width: 18rem;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .request-page .request-step textarea,
  .request-page .request-step input,
  .request-page .request-step select,
  .request-page .request-upload,
  .request-page .request-file-list,
  .request-page .contact-methods,
  .request-page .contact-field {
    width: 100%;
  }

  .request-page .contact-method {
    min-height: 4.5rem;
    font-size: 0.52rem;
  }

  .request-page .contact-method span {
    overflow-wrap: anywhere;
    text-align: center;
  }

  .request-page .request-step textarea {
    min-height: 4.25rem;
    height: 4.25rem;
    padding: 0.7rem;
    border: 1px solid rgba(245, 241, 230, 0.35);
    text-align: left;
  }

  .request-page .request-upload {
    min-height: 3.35rem;
    margin-top: 0.8rem;
    padding: 0.55rem 0.15rem;
  }

  .request-page .request-actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 0.8rem 0;
    background: var(--olive);
  }

  .request-page .timeline-options {
    top: calc(100% + 0.5rem);
    bottom: auto;
  }

  body.mobile-request-started {
    height: 100svh;
    overflow: hidden;
  }

  body.mobile-request-started .request-page {
    height: 100svh;
    min-height: 0;
    overflow: hidden;
    padding-bottom: 0;
  }

  body.mobile-request-started .request-page .request-form {
    display: grid;
    grid-template-rows: auto auto auto auto;
    align-content: center;
    position: relative;
    height: calc(100svh - 5rem);
    padding-top: clamp(1.2rem, 4vh, 2rem);
    padding-bottom: clamp(0.7rem, 2.2vh, 1.2rem);
    overflow-x: hidden;
    overflow-y: hidden;
  }

  body.mobile-request-started .request-page .request-form::after {
    content: "";
    display: block;
    height: 6.6rem;
  }

  body.mobile-request-started .request-page .request-progress {
    position: static;
    padding-top: 0.2rem;
    padding-bottom: 0.35rem;
  }

  body.mobile-request-started .request-page .request-step {
    display: none;
    flex: 0 0 auto;
    height: auto;
    min-height: auto;
    overflow: visible;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
  }

  body.mobile-request-started .request-page .request-step.is-active {
    display: block;
    min-height: 0;
    padding-top: 0;
  }

  body.mobile-request-started .request-page .request-step.is-active legend {
    margin-top: 0;
  }

  body.mobile-request-started .request-page .request-step legend {
    width: 100%;
    max-width: 18rem;
    font-size: clamp(1.5rem, 7.2vw, 2rem);
    line-height: 1.03;
  }

  body.mobile-request-started .request-page .request-prompt {
    max-width: 19rem;
    margin: 0.36rem auto 0.82rem;
    font-size: 0.7rem;
    line-height: 1.58;
  }

  body.mobile-request-started .request-page .request-step textarea {
    min-height: 3.5rem;
    height: 3.5rem;
    padding: 0.62rem 0.72rem;
    text-align: left;
  }

  body.mobile-request-started .request-page .request-upload {
    min-height: 2.7rem;
    margin-top: 0.62rem;
    padding: 0.42rem 0.12rem;
  }

  body.mobile-request-started .request-page .request-upload strong {
    font-size: 0.64rem;
    line-height: 1.35;
  }

  body.mobile-request-started .request-page .request-upload small {
    margin-top: 0.16rem;
    font-size: 0.56rem;
    line-height: 1.4;
  }

  body.mobile-request-started .request-page .request-file-list {
    margin-top: 0.34rem;
    font-size: 0.54rem;
    line-height: 1.4;
    max-height: min(28svh, 13.5rem);
    overflow-y: auto;
    padding-right: 0.12rem;
  }

  body.mobile-request-started .request-page .request-file-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.34rem;
  }

  body.mobile-request-started .request-page .request-file-item {
    width: 100%;
    justify-content: space-between;
    border-radius: 0.62rem;
  }

  body.mobile-request-started .request-page .request-file-name {
    max-width: 100%;
  }

  body.mobile-request-started .request-page .request-actions {
    position: absolute;
    right: 0;
    bottom: clamp(2.2rem, 6.2vh, 2.8rem);
    left: 0;
    z-index: 2;
    height: auto;
    margin-top: 0;
    padding-top: 0.8rem;
    justify-content: center;
    gap: 0.8rem;
    background: transparent;
  }

  body.mobile-request-started .request-page .request-actions .inner-cta,
  body.mobile-request-started .request-page .request-actions .request-back {
    min-width: min(44vw, 9.6rem);
  }

  body.mobile-request-started .request-page .request-actions .request-back {
    justify-content: center;
    text-align: center;
  }

  body.mobile-request-started .request-page .request-actions .inner-cta {
    justify-content: center;
  }

  body.mobile-request-started .request-page .request-note {
    position: absolute;
    right: 0;
    bottom: clamp(0.6rem, 1.8vh, 1rem);
    left: 0;
    margin-top: 0;
    font-size: 0.54rem;
    line-height: 1.35;
  }

  body.mobile-request-started .request-page .request-success {
    position: absolute;
    right: 0;
    bottom: clamp(0.5rem, 1.8vh, 1rem);
    left: 0;
    margin-top: 0;
    padding: 0 0.4rem;
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .carnet-lines p {
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
    font-size: 1.35rem;
  }

  .carnet-focus {
    grid-template-columns: 1fr;
    margin-top: 2.3rem;
  }

  .carnet-focus article {
    padding: 1.1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 230, 0.2);
  }

  .carnet-focus article:last-child {
    border-bottom: 0;
  }

  .carnet-process {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 2.2rem 0 1.7rem;
  }

  .carnet-process h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.4rem);
    line-height: 1.08;
  }

  .carnet-process-list li {
    grid-template-columns: 2rem 1fr;
    gap: 0.7rem;
  }

  .carnet-fit {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .carnet-fit article {
    padding: 1rem 0.9rem 1.1rem;
  }

  .chapter-proof {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 1.6rem;
  }

  .chapter-proof article {
    padding: 0.85rem 0.85rem 0.92rem;
  }

  .chapter-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.7rem;
    padding: 1rem 0 1rem;
  }

  .chapter-cta h2 {
    font-size: clamp(1.4rem, 7.6vw, 2rem);
  }

  .findings-angles {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .findings-angles article {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 230, 0.2);
  }

  .findings-angles article:last-child {
    border-bottom: 0;
  }

  .findings-list article {
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
  }

  .inner-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .maison-topbar {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding-bottom: 1.5rem;
  }

  .maison-wordmark {
    width: 6rem;
  }

  .maison-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 0 5rem;
  }

  .maison-hero-copy {
    margin-top: 1.5rem;
  }

  .maison-manifesto {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 4rem;
  }

  .maison-values {
    grid-template-columns: 1fr;
  }

  .maison-value,
  .maison-value + .maison-value {
    min-height: auto;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 230, 0.25);
  }

  .maison-value:last-child {
    border-bottom: 0;
  }

  .maison-value-number {
    margin-bottom: 2rem;
  }

  .maison-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 2rem;
  }

  .floating-contact {
    right: 1rem;
    bottom: 1rem;
    padding: 0.7rem;
  }

  .floating-contact > span:last-child {
    display: none;
  }

  .maison-closing {
    padding: 5rem 0 3rem;
  }

  .menu-eyebrow {
    margin-bottom: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark {
    animation: none;
  }

  .contact-links {
    animation: none;
  }

  .site-menu,
  .menu-backdrop,
  .auth-modal,
  .auth-card,
  .menu-toggle-line,
  .profile-mark,
  .profile-link::before {
    transition: none;
  }
}
