/* Portfolio */
.expertise h2,
.process h2,
.pricing-heading h2 {
  font: 500 clamp(46px, 5.5vw, 78px)/1.03 Manrope;
  letter-spacing: -0.06em;
  margin: 0;
}
.price-swipe-hint {
  display: none;
}
.price-grid::before {
  position: absolute;
  top: -11px;
  left: 36px;
  padding: 4px 12px;
  background: #f6f8fb;
  color: #4f626b;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.625rem;
  font-weight: 700;
}

/* Expertise */
.expertise {
  padding: 105px var(--pad);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  background: var(--paper);
  color: var(--ink);
}
.expertise-intro {
  position: sticky;
  top: 100px;
  height: max-content;
}
.expertise-intro h2 {
  margin: 28px 0;
}
.expertise h2 em {
  font-weight: 400;
  color: #9b6b49;
}
.expertise-intro > p:last-child {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.7;
}
.expertise-list {
  border-top: 1px solid var(--line);
}
.expertise-list article {
  display: grid;
  grid-template-columns: 40px 1fr 58px;
  gap: 15px;
  padding: 30px 12px;
  border-bottom: 1px solid var(--line);
  transition: 0.3s;
}
.expertise-list article:hover {
  padding-left: 18px;
  background: #fff;
}
.expertise-list article > span:not(.expertise-signature) {
  color: #8d989d;
  font-size: 0.625rem;
}
.expertise-list h3 {
  margin: 0 0 10px;
  font: 500 27px Manrope;
  letter-spacing: -0.04em;
}
.expertise-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.expertise-signature {
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 58px;
  height: 46px;
  padding-right: 13px;
  border-right: 1px solid #9b6b49;
  color: #6f4b33;
  font: 650 0.625rem Manrope;
  letter-spacing: 0.18em;
}
.expertise-signature::after {
  position: absolute;
  right: -3px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9b6b49;
  box-shadow: 0 0 0 5px rgba(155, 107, 73, 0.12);
  content: "";
  transform: translateY(-50%);
}
.expertise {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.expertise-backgrounds {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.expertise-backgrounds::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 246, 240, 0.82),
    rgba(248, 246, 240, 0.68)
  );
  content: "";
}
.expertise-backgrounds img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.45s ease,
    transform 1.1s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.expertise-backgrounds img.is-active {
  opacity: 1;
  transform: scale(1);
}
.expertise-intro,
.expertise-list {
  position: relative;
  z-index: 1;
}
.expertise-list article.is-preview-active {
  background: rgba(255, 255, 255, 0.92);
}

/* Process */
.process {
  position: relative;
  isolation: isolate;
  padding: 105px var(--pad);
  background: #07151d;
  color: #fff;
  overflow: hidden;
}
.process-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(4, 15, 22, 0.93), rgba(7, 21, 29, 0.74)),
    url("../../assets/process-workspace.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.process > .section-index,
.process > .process-title,
.process > .process-swipe-hint,
.process > ol {
  position: relative;
  z-index: 1;
}
.process-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 28px 0 50px;
}
.process-title a {
  padding: 13px 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.75rem;
}
.process ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
}
.process li {
  min-height: 235px;
  padding: 26px;
  background: rgba(9, 32, 43, 0.82);
  border: 1px solid #ffffff24;
  border-radius: 6px;
  box-shadow: 0 18px 45px #0003;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.process li:hover {
  transform: translateY(-5px);
  border-color: #c59a72;
}
.process li b {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: #193a49;
  color: #c2d0d6;
  font-size: 0.625rem;
}
.process li strong {
  display: block;
  margin-top: 50px;
  font: 500 23px Manrope;
}
.process li p {
  color: #b4c1c6;
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* Réalisations */
.featured-project {
  padding: 96px var(--pad);
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
}
.featured-project-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}
.featured-project-heading h2 {
  margin: 24px 0 0;
  font: 500 clamp(44px, 5.2vw, 72px)/1.03 Manrope;
  letter-spacing: -0.06em;
}
.featured-project-heading h2 em {
  color: #d1a17c;
  font-weight: 400;
}
.featured-project-heading > p {
  max-width: 430px;
  margin: 0;
  color: #aeb8bc;
  line-height: 1.7;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.project-card {
  min-width: 0;
  border: 1px solid #ffffff1c;
  border-radius: 14px;
  background: linear-gradient(145deg, #10242e, #07151d);
  overflow: hidden;
  box-shadow: 0 24px 60px #0006;
}
.project-showcase {
  position: relative;
  display: block;
  min-height: clamp(260px, 31vw, 420px);
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 77% 20%, #d1a17c20, transparent 28%),
    linear-gradient(145deg, #e6e2da, #cbd2d3);
  overflow: hidden;
}
.device {
  position: absolute;
  display: block;
  background: #0a0d0f;
  box-shadow: 0 18px 38px #0b151b45;
}
.device img {
  display: block;
  width: 100%;
  height: auto;
}
.device-desktop {
  left: 14%;
  top: 15%;
  width: 66%;
  padding: 9px 9px 14px;
  border: 2px solid #30383c;
  border-radius: 8px;
}
.device-desktop::after {
  position: absolute;
  left: 38%;
  right: 38%;
  bottom: -12%;
  height: 12%;
  background: linear-gradient(90deg, #aeb4b5, #eef0ef, #aeb4b5);
  clip-path: polygon(36% 0, 64% 0, 72% 78%, 100% 100%, 0 100%, 28% 78%);
  content: "";
}
.device-camera {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #315f7d;
  transform: translateX(-50%);
}
.device-tablet {
  right: 10%;
  bottom: 14%;
  width: 27%;
  padding: 7px;
  border: 2px solid #31383b;
  border-radius: 8px;
}
.device-mobile {
  right: 4%;
  bottom: 9%;
  width: 12%;
  padding: 5px;
  border: 2px solid #30373b;
  border-radius: 9px;
}
.project-visit {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #ffffff38;
  border-radius: 99px;
  background: #09151dcf;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.project-showcase:hover .project-visit,
.project-showcase:focus-visible .project-visit {
  opacity: 1;
  transform: none;
}
.project-card-content {
  padding: 25px 28px 27px;
}
.project-card-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr);
  gap: 22px;
  align-items: end;
}
.project-status {
  display: inline-block;
  padding: 6px 9px;
  border: 1px solid #d1a17c66;
  border-radius: 99px;
  color: #d9ad89;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.5625rem;
  font-weight: 700;
}
.project-card-heading h3 {
  margin: 14px 0 0;
  font: 600 clamp(23px, 2vw, 31px)/1.08 Manrope;
  letter-spacing: -0.045em;
}
.project-card-heading > p {
  margin: 0;
  color: #afbdc2;
  font-size: 0.75rem;
  line-height: 1.55;
}
.project-information {
  margin-top: 22px;
  border-top: 1px solid #ffffff1a;
}
.project-information summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  color: #f4f1eb;
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.project-information summary::-webkit-details-marker {
  display: none;
}
.project-information summary > span {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid #ffffff30;
  border-radius: 50%;
}
.project-information summary > span::before,
.project-information summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: #d1a17c;
  content: "";
  transform: translate(-50%, -50%);
}
.project-information summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s var(--ease);
}
.project-information[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0);
}
.project-information-content {
  padding: 2px 0 4px;
}
.project-information-content > p {
  margin: 0;
  color: #aebbc0;
  font-size: 0.75rem;
  line-height: 1.7;
}
.project-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  margin: 20px 0 0;
}
.project-details > div {
  padding: 11px 0;
  border-top: 1px solid #ffffff18;
}
.project-details dt {
  color: #d1a17c;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.5625rem;
  font-weight: 700;
}
.project-details dd {
  margin: 5px 0 0;
  color: #d7dee1;
  font-size: 0.6875rem;
  line-height: 1.45;
}

/* Pricing */
.pricing {
  padding: 105px var(--pad) 62px;
  background: #edf0ef;
  color: var(--ink);
  overflow: hidden;
}
.pricing-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}
.pricing-heading h2 em {
  font-weight: 400;
  color: #9b6b49;
}
.pricing-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.price-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 18px;
  border: 1px solid #c8d4d9;
  border-radius: 24px;
  background: #f7f9f9;
  box-shadow: 0 25px 65px #192f3914;
}
.price-grid::before {
  content: "Choisissez votre formule";
  background: #edf0ef;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid #c9d5da;
  border-radius: 18px;
  box-shadow: 0 9px 25px #192f390f;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    border-color 0.35s;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: #93aab5;
  box-shadow: 0 24px 48px #192f3921;
}
.price-card.featured {
  border: 2px solid #315f7d;
  box-shadow: 0 25px 55px #315f7d2b;
  transform: translateY(-8px);
}
.price-card.featured:hover {
  transform: translateY(-13px);
}
.popular {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 18px;
  border-radius: 99px;
  background: #315f7d;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.625rem;
  font-weight: 700;
}
.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.plan-head > span {
  padding: 7px 10px;
  background: #e8eef1;
  color: #315f7d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.625rem;
  font-weight: 700;
}
.plan-head small {
  color: #87959b;
  font-size: 0.625rem;
}
.price-card h3 {
  margin: 0 0 12px;
  font: 600 25px Manrope;
  letter-spacing: -0.04em;
}
.plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}
.plan-price small {
  width: 100%;
  color: #819097;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.625rem;
}
.plan-price strong {
  font: 650 44px Manrope;
  letter-spacing: -0.06em;
}
.price-card > p {
  min-height: 65px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.65;
}
.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 0;
  margin: 0 0 24px;
  border-top: 1px solid #e1e7e9;
}
.price-card li {
  color: #50636c;
  font-size: 0.75rem;
}
.price-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  border-radius: 50%;
  background: #e0eee8;
  color: #367256;
  font-weight: 700;
}
.price-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding: 16px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}
.price-card.featured > a {
  background: #315f7d;
}
.pricing-note {
  max-width: 760px;
  margin: 38px 0 0;
  color: #718087;
  font-size: 0.75rem;
  line-height: 1.6;
}
.offer-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  border-top: 1px solid #c8d4d9;
  border-bottom: 1px solid #c8d4d9;
}
.offer-details > div {
  padding: 23px 24px 23px 0;
}
.offer-details > div:not(:first-child) {
  padding-left: 24px;
  border-left: 1px solid #c8d4d9;
}
.offer-details span {
  display: block;
  color: #7a8a91;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.625rem;
}
.offer-details strong {
  display: block;
  margin: 9px 0 5px;
  font: 600 15px Manrope;
}
.offer-details p {
  margin: 0;
  color: #718087;
  font-size: 0.625rem;
  line-height: 1.5;
}

/* Contact */
.contact {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  padding: 58px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image:
    linear-gradient(90deg, #05121bea, #05121bb8 55%, #05121b8c),
    url("../../assets/contact-workspace.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.contact-kicker {
  margin: 15px 0;
  color: #d2dce0;
}
.contact h2 {
  max-width: 900px;
  margin: 0 auto;
  font: 500 clamp(36px, 4.5vw, 62px)/1.04 Manrope;
  letter-spacing: -0.055em;
}
.contact h2 em {
  font-weight: 400;
  color: #d1a17c;
}
.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(980px, 100%);
  margin: 28px auto 0;
  background: #ffffff1c;
  border: 1px solid #ffffff24;
  text-align: left;
}
.contact-links a {
  min-width: 0;
  padding: 22px;
  background: #07161e8c;
  display: grid;
  grid-template-columns: 1fr auto;
}
.contact-links a:not(:last-child) {
  border-right: 1px solid #ffffff20;
}
.contact-links a:hover {
  background: #102c38;
}
.contact-links span {
  grid-column: 1/-1;
  margin-bottom: 8px;
  color: #aabac2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.625rem;
}
.contact-links strong {
  font: 500 clamp(13px, 1.2vw, 19px) Manrope;
  overflow-wrap: anywhere;
}
.contact-links > a:nth-child(3) strong {
  font-size: clamp(12px, 1vw, 16px);
  white-space: nowrap;
}
.contact-links i {
  align-self: center;
  color: #d1a17c;
  font-style: normal;
}
.form-entry {
  width: min(980px, 100%);
  margin: 16px auto 0;
  padding: 13px 15px 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #07161e9c;
  border: 1px solid #ffffff25;
  text-align: left;
}
.form-entry > span {
  color: #bac8ce;
  font-size: 0.6875rem;
}
.form-entry > div {
  display: flex;
  gap: 8px;
}
.form-entry button {
  padding: 12px 15px;
  border: 1px solid #ffffff35;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.6875rem;
  font-weight: 600;
}
.form-entry #form-toggle {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.contact-form {
  width: min(920px, 100%);
  margin: 18px auto 0;
  padding: 30px;
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 25px 65px #0007;
  opacity: 0;
  transform: translateY(-8px);
  transition: 0.3s var(--ease);
}
.contact-form.open {
  opacity: 1;
  transform: none;
}
.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.form-heading span {
  color: #71838c;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.625rem;
}
.form-heading h3 {
  margin: 5px 0 0;
  font: 600 27px Manrope;
  letter-spacing: -0.04em;
}
.form-heading > button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #e3e9eb;
  color: #315f7d;
  font-size: 23px;
  cursor: pointer;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #52656e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.625rem;
}
.form-grid label.full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd9dd;
  background: #fff;
  color: var(--ink);
  outline: 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: 14px;
}
.form-grid textarea {
  resize: vertical;
}
.form-grid :is(input, select, textarea):focus {
  border-color: #315f7d;
  box-shadow: 0 0 0 3px #315f7d1a;
}
.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}
.form-submit p {
  margin: 0;
  color: #76858c;
  font-size: 0.625rem;
}
.form-submit button {
  min-width: 220px;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

/* FAQ */
.faq {
  padding: 105px var(--pad);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9vw;
  background: #fff;
  color: var(--ink);
}
.faq-intro {
  position: sticky;
  top: 110px;
  height: max-content;
}
.faq-intro h2 {
  margin: 28px 0 22px;
  font: 600 clamp(42px, 5vw, 68px)/1.05 Manrope;
  letter-spacing: -0.055em;
}
.faq-intro h2 em {
  font-weight: 400;
  color: #9b6b49;
}
.faq-intro > p:not(.section-index) {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-intro > a {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid #9eb2bd;
  color: #315f7d;
  font-size: 0.75rem;
  font-weight: 600;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
  cursor: pointer;
  font: 600 17px Manrope;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eaf0f2;
}
.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  width: 10px;
  height: 1px;
  background: #315f7d;
  transition: 0.25s;
}
.faq-list summary span::after {
  transform: rotate(90deg);
}
.faq-list details[open] summary {
  color: #315f7d;
}
.faq-list details[open] summary span::after {
  transform: none;
}
.faq-list details > p {
  margin: 0;
  padding: 0 50px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Footer */
footer {
  padding: 65px var(--pad) 25px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: 55px;
  background: #000;
  color: #fff;
  border-top: 1px solid #222;
}
.footer-brand {
  display: block;
  width: 108px;
}
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
.footer-brand + p {
  margin-top: 18px;
  color: #777;
  font-size: 0.75rem;
  line-height: 1.7;
}
.footer-nav {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 4px !important;
  font-size: 0.75rem;
}
.footer-nav > span {
  margin-bottom: 4px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.625rem;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px !important;
  color: #bfc4c6;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact a {
  overflow-wrap: anywhere;
}
.copyright {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid #222;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.625rem;
}

/* Cookie */

/* Legal pages */
.legal-page {
  min-height: 100vh;
  padding: 160px max(25px, calc((100% - 900px) / 2)) 100px;
  background: var(--paper);
  color: #111;
}
.legal-page h1 {
  font: 500 clamp(45px, 6vw, 65px) Manrope;
  letter-spacing: -0.06em;
}
.legal-page h2 {
  margin-top: 38px;
  font: 600 23px Manrope;
}
.legal-page p,
.legal-page li {
  color: #5f5f59;
  line-height: 1.75;
}
.legal-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-header {
  position: absolute;
  display: flex;
}
.legal-header .brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.legal-header .brand > span {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border: 1px solid #555;
  border-radius: 50%;
  font: 500 18px Manrope;
}
.legal-header .brand strong {
  font: 700 12px Manrope;
  letter-spacing: 0.12em;
}
.legal-header .brand small {
  display: block;
  margin-top: 3px;
  color: #aaa;
  font: 400 10px "DM Sans";
  text-transform: uppercase;
}
