:root {
  --ink: #101114;
  --ink-2: #272a30;
  --muted: #68707d;
  --soft: #8b93a1;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f4f0e8;
  --line: #e7e2d8;
  --line-strong: #d8d1c5;
  --charcoal: #15171c;
  --amber: #b7791f;
  --amber-soft: #f5dfb9;
  --amber-line: rgba(183, 121, 31, 0.24);
  --sage: #6f7d6b;
  --blue: #5267a7;
  --shadow: 0 24px 70px rgba(16, 17, 20, 0.09);
  --shadow-soft: 0 14px 34px rgba(16, 17, 20, 0.06);
  --shadow-card: 0 28px 70px rgba(16, 17, 20, 0.1), 0 1px 0 rgba(255, 255, 255, 0.88) inset;
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Inter", "Satoshi", "General Sans", "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(245, 223, 185, 0.72), transparent 34rem),
    radial-gradient(circle at 82% 8%, rgba(82, 103, 167, 0.08), transparent 30rem),
    linear-gradient(180deg, var(--paper) 0%, #f6f3ed 46%, var(--paper) 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 62%);
}

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 28px));
  min-height: 76px;
  padding: 0 10px 0 12px;
  margin: 0 auto;
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(216, 209, 197, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 7px 10px 7px 4px;
  font-size: 1.16rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff7ea;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 223, 185, 0.24), transparent 42%),
    linear-gradient(145deg, #111317, #2a2d34);
  border: 1px solid var(--amber-line);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 0.94rem;
  font-weight: 760;
}

.wordmark {
  position: relative;
  top: -1px;
  letter-spacing: -0.02em;
}

.site-nav {
  position: absolute;
  top: 76px;
  right: 0;
  left: 0;
  display: none;
  align-items: stretch;
  gap: 13px;
  padding: 16px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  font-weight: 680;
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.site-nav a:hover {
  color: var(--amber);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--surface) !important;
  background: var(--charcoal);
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.14);
}

.nav-cta:hover {
  background: #000000;
}

.nav-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.section-pad {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  display: grid;
  gap: 34px;
  padding-top: 58px;
  padding-bottom: 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3.15rem, 13vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.05rem, 9vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-subhead {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: clamp(1.08rem, 4.3vw, 1.3rem);
}

.hero-trust {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: 0.96rem;
  font-weight: 680;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.button-primary {
  color: var(--surface);
  background: var(--charcoal);
  box-shadow: 0 18px 34px rgba(16, 17, 20, 0.16);
}

.button-primary:hover {
  background: #000000;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: var(--surface);
}

.hero-insight {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 12%, rgba(245, 223, 185, 0.34), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 240, 232, 0.82)),
    var(--surface);
  border: 1px solid rgba(216, 209, 197, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-insight::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.028) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.insight-header,
.insight-grid {
  position: relative;
  z-index: 1;
}

.insight-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.insight-header span {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-header strong {
  color: var(--soft);
  font-size: 0.86rem;
}

.insight-grid {
  display: grid;
  gap: 12px;
}

.insight-grid article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 209, 197, 0.84);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(16, 17, 20, 0.05);
}

.insight-grid article > span {
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--amber), rgba(183, 121, 31, 0.12));
  border-radius: 999px;
}

.insight-grid h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.insight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.credibility-band {
  padding-top: 0;
  padding-bottom: 54px;
}

.credibility-band p {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1rem;
}

.credibility-band ul {
  display: grid;
  gap: 10px;
  padding: 16px;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(216, 209, 197, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.credibility-band li {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 780;
}

.credibility-band li::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  content: "";
  background: var(--amber);
  border-radius: 999px;
  opacity: 0.72;
}

.before-after {
  padding-top: 34px;
}

.before-after-grid {
  display: grid;
  gap: 16px;
}

.state-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 209, 197, 0.9);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.state-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 90% 12%, rgba(183, 121, 31, 0.13), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
}

.state-heading,
.state-card ol {
  position: relative;
  z-index: 1;
}

.state-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.state-heading span {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.state-heading strong {
  color: var(--soft);
  font-size: 0.9rem;
}

.state-card ol {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.state-card li {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 209, 197, 0.82);
  border-radius: 10px;
  font-weight: 730;
}

.state-card li::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 11px;
  content: "";
  background: var(--amber);
  border-radius: 999px;
  opacity: 0.78;
}

.before-card li::before {
  background: #9a7a42;
}

.after-card {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 223, 0.7)),
    var(--surface);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro p:not(.eyebrow),
.operations-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.narrow {
  max-width: 690px;
}

.review-grid,
.service-grid {
  display: grid;
  gap: 14px;
}

.review-grid article,
.service-grid article,
.contact-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 209, 197, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.review-grid article {
  min-height: 200px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82)),
    var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.review-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 121, 31, 0.3);
  box-shadow: 0 20px 50px rgba(16, 17, 20, 0.08);
}

.review-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--charcoal);
  background: linear-gradient(180deg, #fff6e7, #f4e6cb);
  border: 1px solid var(--amber-line);
  border-radius: 8px;
}

.review-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.review-grid p,
.service-grid p {
  color: var(--muted);
  font-size: 0.96rem;
}

.problems {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-top: 98px;
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  padding-bottom: 104px;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  overflow: hidden;
  color: var(--surface);
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 223, 185, 0.18), transparent 28rem),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(132deg, #0f1117 0%, #191d24 48%, #24262c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.problems::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.problems .section-intro,
.problem-list {
  position: relative;
  z-index: 1;
}

.problems h2 {
  color: var(--surface);
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.048));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  font-weight: 710;
}

.problem-list span::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  content: "";
  background: var(--amber-soft);
  border-radius: 999px;
}

.service-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
}

.service-grid article::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--amber));
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 820;
}

.operations {
  display: grid;
  gap: 30px;
  align-items: center;
}

.journey-card {
  padding: 20px;
  background:
    radial-gradient(circle at 86% 18%, rgba(245, 223, 185, 0.12), transparent 16rem),
    var(--charcoal);
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.journey-card ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-card li {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 66px;
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  font-size: clamp(0.92rem, 2.8vw, 1rem);
  font-weight: 740;
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: normal;
}

.journey-card li strong {
  display: block;
  min-width: 0;
  max-width: 100%;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  overflow-wrap: anywhere;
}

.journey-card li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--amber-soft);
  background: rgba(245, 223, 185, 0.08);
  border: 1px solid rgba(245, 223, 185, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 820;
}

.journey-card li:not(:last-child)::after {
  display: none;
}

.contact {
  display: grid;
  gap: 30px;
  align-items: start;
  padding-bottom: 90px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 780;
}

.why-hero {
  padding-top: 78px;
  padding-bottom: 48px;
}

.why-hero h1 {
  max-width: 920px;
}

.why-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.why-copy {
  display: grid;
  gap: 22px;
}

.why-copy p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.6vw, 1.18rem);
}

.why-card {
  position: sticky;
  top: 100px;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 14%, rgba(245, 223, 185, 0.16), transparent 15rem),
    var(--charcoal);
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.why-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-card li {
  padding: 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-weight: 720;
}

.why-card li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  content: "";
  background: var(--amber-soft);
  border-radius: 999px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 15px;
  padding: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form span {
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 740;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-form input {
  min-height: 46px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 138px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(82, 103, 167, 0.72);
  box-shadow: 0 0 0 4px rgba(82, 103, 167, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--sage);
}

.form-status.is-error {
  color: var(--amber);
}

.contact-form .button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.full-span {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  gap: 8px;
  width: min(var(--max), calc(100% - 28px));
  min-height: 78px;
  margin: 0 auto;
  padding: 20px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span {
  color: var(--ink);
  font-weight: 820;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 680px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .review-grid,
  .service-grid,
  .problem-list,
  .before-after-grid,
  .credibility-band ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px;
  }

  .site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .site-header {
    width: min(var(--max), calc(100% - 40px));
    min-height: 82px;
    padding: 0 12px 0 14px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 0.86rem;
  }

  .section-pad {
    width: min(var(--max), calc(100% - 40px));
    padding: 96px 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.78fr);
    gap: 58px;
    align-items: center;
    min-height: calc(100vh - 82px);
    padding-top: 48px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(4rem, 5.6vw, 5.55rem);
  }

  .hero-subhead {
    font-size: 1.24rem;
  }

  .hero-insight {
    padding: 26px;
  }

  .review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .problem-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credibility-band {
    padding-bottom: 64px;
  }

  .credibility-band ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 18px 20px;
  }

  .operations,
  .contact {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 56px;
  }

  .why-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 58px;
  }

  .journey-card {
    padding: 24px;
  }

  .journey-card ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .journey-card li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 78px;
    padding: 16px;
  }

}

.problems.section-pad {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-top: 98px;
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  padding-bottom: 104px;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
}
