:root {
  color-scheme: light only;
  --paper: #f3f0e8;
  --paper-deep: #e5ded1;
  --ink: #1c2122;
  --ink-soft: #586166;
  --line: #c7c0b4;
  --red: #8f0b12;
  --red-deep: #620509;
  --cream: #fbf8f1;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: #fff;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.wrap {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

/* A restrained wash gives the central site frame definition without darkening it. */
.site-frame {
  width: 100%;
  min-height: 100vh;
  margin-inline: auto;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(2, 19, 39, 0.16);
}

.site-frame .site-header,
.site-frame .hero,
.site-frame .section,
.site-frame .about-band,
.site-frame .contact,
.site-frame .site-footer {
  background: rgba(0, 0, 0, 0.2);
  color: #000;
}

.site-frame .statement {
  background: #021327;
  color: #fff;
}

.site-frame .site-header,
.site-frame .site-footer {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(0, 0, 0, 0.18);
}

.site-frame .section-heading,
.site-frame .service-grid,
.site-frame .service-grid article,
.site-frame .steps,
.site-frame .steps > div {
  border-color: rgba(0, 0, 0, 0.2);
}

.site-frame .lede,
.site-frame .hero-side p,
.site-frame .service-grid p,
.site-frame .steps p,
.site-frame .about-grid div p,
.site-frame .site-footer p {
  color: rgba(0, 0, 0, 0.68);
}

.site-frame .hero-side {
  background: linear-gradient(90deg, rgba(2, 19, 39, 0.12), transparent 76%);
}

.site-frame .service-grid article:hover {
  background: rgba(2, 19, 39, 0.12);
}

.site-frame .service-grid article,
.site-frame .steps > div {
  background: rgba(0, 0, 0, 0.045);
}

.site-frame .about-band::before {
  background: #021327;
}

.site-frame .contact .section-heading,
.site-frame .contact-note {
  border-color: rgba(0, 0, 0, 0.2);
}

.site-frame .contact .section-index,
.site-frame .contact-grid > div > p:not(.contact-note),
.site-frame .contact-note {
  color: rgba(0, 0, 0, 0.68);
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: -60px;
  left: 16px;
  padding: 10px 14px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}
.header-inner {
  width: min(var(--max), calc(100% - 64px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand img {
  width: 120px;
  height: auto;
  aspect-ratio: 3 / 2;
  display: block;
}
nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
}
nav a {
  position: relative;
  padding: 6px 0;
}
nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}
nav a:hover {
  color: var(--red);
}
nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.hero {
  width: 100%;
  min-height: 650px;
  padding: 106px max(32px, calc((100% - var(--max)) / 2)) 112px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(230px, 0.3fr);
  align-items: end;
  gap: 64px;
}
.overline {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1,
h2,
p {
  margin-top: 0;
}
h1,
h2 {
  color: #303030;
}
h1 {
  max-width: 930px;
  margin: 22px 0 30px;
  font:
    700 clamp(54px, 5.5vw, 82px) / 0.93 "Manrope",
    sans-serif;
  letter-spacing: -0.07em;
}
.hero h1 {
  color: #303030;
}
.lede {
  max-width: 530px;
  margin-bottom: 37px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  min-height: 51px;
  padding: 0 22px;
  border: 0;
  background: var(--red);
  color: #fff;
  box-shadow: 5px 5px 0 var(--red-deep);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.button span {
  font-size: 18px;
  font-weight: 400;
}
.button:hover {
  background: var(--red-deep);
  box-shadow: 2px 2px 0 var(--red-deep);
  transform: translate(3px, 3px);
}
.hero-side {
  align-self: end;
  margin-bottom: 10px;
  padding: 19px 0 10px 28px;
  border-left: 2px solid var(--red);
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--red) 10%, transparent),
    transparent 76%
  );
}
.hero-side p {
  max-width: 255px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.rule-mark {
  height: 66px;
  display: flex;
  align-items: end;
  gap: 7px;
}
.rule-mark span {
  width: 19px;
  background: var(--red);
}
.rule-mark span:nth-child(1) {
  height: 22px;
}
.rule-mark span:nth-child(2) {
  height: 42px;
}
.rule-mark span:nth-child(3) {
  height: 63px;
}
.rule-mark span:nth-child(4) {
  height: 40px;
}
.rule-mark span:nth-child(5) {
  height: 28px;
}

.statement {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
}
.statement::after {
  position: absolute;
  right: -5rem;
  bottom: -12rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}
.statement-inner {
  position: relative;
  z-index: 1;
  padding: 74px 0 79px;
}
.statement p:first-child {
  margin-bottom: 20px;
  color: #f4cbc7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.statement-large {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font:
    600 clamp(37px, 5vw, 64px) / 1.04 "Manrope",
    sans-serif;
  letter-spacing: -0.06em;
}

.section {
  padding: 104px 0;
}
.section.wrap {
  width: 100%;
  padding-inline: max(32px, calc((100% - var(--max)) / 2));
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.section-index {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 65px;
  border-top: 1px solid var(--line);
}
.service-grid article {
  min-height: 224px;
  padding: 24px 30px 26px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.035);
  transition:
    background 0.2s ease,
    padding 0.2s ease;
}
.service-grid article:nth-child(odd) {
  padding-right: 60px;
  border-right: 1px solid var(--line);
}
.service-grid article:nth-child(even) {
  padding-left: 32px;
}
.service-grid article:hover {
  background: color-mix(in srgb, var(--paper-deep) 75%, transparent);
}
.service-grid article:nth-child(odd):hover {
  padding-left: 12px;
  padding-right: 48px;
}
.service-grid article:nth-child(even):hover {
  padding-left: 44px;
}
.service-grid span,
.steps span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.service-grid h2 {
  margin: 43px 0 10px;
  font:
    700 33px "Manrope",
    sans-serif;
  letter-spacing: -0.05em;
}
.service-grid p {
  max-width: 320px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.process {
  padding-top: 24px;
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 64px;
}
.process-layout h2,
.contact-grid h2,
.about-grid h2 {
  max-width: 510px;
  margin: 0;
  font:
    700 clamp(36px, 4vw, 56px) / 1.02 "Manrope",
    sans-serif;
  letter-spacing: -0.065em;
}
.steps {
  border-top: 1px solid var(--line);
}
.steps > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.about-band {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}
.about-band::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(0px, calc((100% - var(--max)) / 2));
  width: 4px;
  content: "";
  background: var(--red);
}
.about-grid {
  padding: 88px 0;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 100px;
}
.about-grid h2 {
  margin-bottom: 24px;
}
.about-grid div p {
  max-width: 555px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.faq {
  padding-top: 96px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  margin-top: 60px;
}
.faq-intro h2 {
  max-width: 440px;
  margin: 0;
  font:
    700 clamp(36px, 4vw, 56px) / 1.02 "Manrope",
    sans-serif;
  letter-spacing: -0.065em;
}
.faq-intro p {
  max-width: 440px;
  margin: 26px 0 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 16px;
  line-height: 1.65;
}
.faq-list {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.faq-list details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.045);
}
.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 18px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "+";
  color: var(--red);
  font-size: 22px;
  font-weight: 500;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  max-width: 620px;
  margin: -4px 48px 0 18px;
  padding-bottom: 24px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  position: relative;
  padding: 112px 0 88px;
  overflow: visible;
  background: #e6e0d5;
  color: #202426;
}
.contact .section-heading {
  border-color: #beb5a7;
}
.contact .section-index {
  color: #69706e;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 100px;
  margin-top: 60px;
}
.contact-grid h2 {
  margin-bottom: 25px;
}
.contact-grid > div > p:not(.contact-note) {
  max-width: 390px;
  color: #5f6769;
  font-size: 16px;
  line-height: 1.65;
}
.contact-note {
  margin-top: 64px;
  padding-top: 16px;
  border-top: 1px solid #b8aea0;
  color: #5f6769;
  font-size: 12px;
  line-height: 1.65;
}
.contact form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 38px 40px 36px;
  transform: translate(-24px, -54px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.27);
  color: #000;
  box-shadow:
    12px 12px 0 rgba(2, 19, 39, 0.12),
    0 26px 60px rgba(0, 0, 0, 0.16);
}
.contact label {
  margin-top: 7px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  outline: none;
  resize: vertical;
  background: transparent;
  color: #000;
  font-size: 15px;
}
.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(0, 0, 0, 0.46);
}
.contact input:focus,
.contact textarea:focus {
  border-color: var(--red);
}
.contact .button {
  margin-top: 20px;
  justify-self: start;
}

.site-footer {
  border-top: 4px solid var(--red);
  background: var(--paper-deep);
}
.footer-inner {
  min-height: 158px;
  padding: 34px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.site-footer img {
  width: 112px;
  height: auto;
  aspect-ratio: 3 / 2;
  display: block;
}
.site-footer p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}
.footer-right {
  text-align: right;
}
.socials {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.socials a {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
}
.socials a:hover {
  border-color: var(--red);
  color: var(--red);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.motion-ready .site-header .brand,
.motion-ready .site-header nav,
.motion-ready .hero-copy > *,
.motion-ready .hero-side {
  opacity: 0;
  animation: enter-up 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.motion-ready .site-header nav {
  animation-delay: 80ms;
}

.motion-ready .hero-copy > :nth-child(1) {
  animation-delay: 120ms;
}

.motion-ready .hero-copy > :nth-child(2) {
  animation-delay: 190ms;
}

.motion-ready .hero-copy > :nth-child(3) {
  animation-delay: 270ms;
}

.motion-ready .hero-copy > :nth-child(4) {
  animation-delay: 350ms;
}

.motion-ready .hero-side {
  animation-delay: 420ms;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.motion-ready .reveal.is-visible {
  animation: reveal-in 720ms cubic-bezier(0.22, 1, 0.36, 1)
    var(--reveal-delay, 0ms) forwards;
}

@keyframes enter-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 720px) {
  .wrap,
  .header-inner {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 74px;
    gap: 16px;
  }
  .brand img {
    width: 98px;
  }
  nav {
    gap: 12px;
    font-size: 9px;
  }
  nav a:first-child {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 64px 20px 66px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-side {
    margin-bottom: 0;
    padding-left: 20px;
  }
  .hero-side p {
    margin-top: 25px;
  }
  h1 {
    font-size: clamp(42px, 12vw, 62px);
    line-height: 0.96;
  }
  .lede {
    font-size: 16px;
  }
  .statement-inner {
    padding: 56px 0 60px;
  }
  .statement-large {
    font-size: clamp(32px, 9vw, 46px);
  }
  .section {
    padding: 78px 0;
  }
  .section.wrap {
    width: 100%;
    padding-inline: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }
  .service-grid article,
  .service-grid article:nth-child(odd),
  .service-grid article:nth-child(even) {
    min-height: 0;
    padding: 22px 14px 26px 0;
    border-right: 0;
  }
  .service-grid article:hover {
    padding-left: 0;
  }
  .service-grid h2 {
    margin: 28px 0 9px;
    font-size: 30px;
  }
  .process {
    padding-top: 0;
  }
  .process-layout,
  .about-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 38px;
  }
  .process-layout h2,
  .contact-grid h2,
  .about-grid h2,
  .faq-intro h2 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .steps > div {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 21px 12px;
  }
  .about-grid {
    padding: 56px 0 56px 16px;
    gap: 34px;
  }
  .about-band::before {
    left: 0;
  }
  .faq {
    padding-top: 72px;
  }
  .faq-layout {
    gap: 32px;
  }
  .faq-list summary {
    padding: 20px 42px 20px 14px;
    font-size: 15px;
  }
  .faq-list details p {
    margin-right: 30px;
    margin-left: 14px;
    padding-bottom: 20px;
  }
  .contact {
    padding: 72px 0 64px;
  }
  .contact form {
    padding: 28px 20px;
    transform: none;
    box-shadow:
      9px 9px 0 rgba(173, 16, 21, 0.17),
      0 20px 40px rgba(0, 0, 0, 0.2);
  }
  .contact-note {
    margin-top: 42px;
  }
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }
  .footer-right {
    text-align: left;
  }
  .socials {
    justify-content: flex-start;
  }
}
