:root {
  --ink: #151713;
  --ink-soft: #343a32;
  --muted: #687164;
  --line: #ddd9cf;
  --line-strong: #c7b9a8;
  --paper: #fbfaf6;
  --paper-deep: #f3f0e8;
  --surface: #ffffff;
  --green: #073d34;
  --green-2: #0f5a4c;
  --copper: #b86f45;
  --copper-dark: #945231;
  --blue: #3a72d8;
  --shadow: 0 22px 70px rgba(21, 23, 19, 0.12);
  --radius: 8px;
  --max: 1180px;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  border: 0;
}

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

h1,
h2 {
  overflow-wrap: normal;
  hyphens: auto;
}

:focus-visible {
  outline: 3px solid rgba(184, 111, 69, 0.35);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(221, 217, 207, 0.84);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  box-shadow: 0 14px 42px rgba(21, 23, 19, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.brand-name,
.footer-brand span:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.7vw, 34px);
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.header-action {
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(7, 61, 52, 0.18);
}

.header-action:hover,
.button-primary:hover {
  background: var(--green-2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section-shell {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 92px)));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: clamp(580px, calc(100svh - var(--header-h) - 40px), 720px);
  padding: clamp(30px, 4.4vw, 62px) clamp(22px, 5.2vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0 42%, rgba(251, 250, 246, 0.88) 56%, rgba(251, 250, 246, 0.2) 100%),
    radial-gradient(circle at 12% 82%, rgba(184, 111, 69, 0.12), transparent 30%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: auto auto 28px clamp(22px, 5.2vw, 76px);
  width: min(450px, 38vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--copper), transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.hero-context {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.philosophy-copy h2,
.audience-copy h2,
.contact-copy h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(42px, 4.55vw, 66px);
  hyphens: none;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-width: 188px;
  padding: 0 22px;
}

.button svg,
.header-action svg {
  width: 20px;
  height: 20px;
}

.button path,
.header-action path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 40px rgba(7, 61, 52, 0.2);
}

.button-secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(7, 61, 52, 0.22);
}

.button-secondary:hover {
  background: #fff;
  border-color: rgba(7, 61, 52, 0.45);
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.4), transparent 28%),
    linear-gradient(180deg, transparent 62%, rgba(21, 23, 19, 0.46));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(7, 61, 52, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-panel span,
.hero-panel strong {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  color: #e0ad83;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.signal-bar article {
  min-height: 170px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.signal-bar span,
.section-index,
.step-number,
.moat-card span,
.principle-card span {
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-bar strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.signal-bar p,
.section-heading p,
.philosophy-copy p,
.principle-card p,
.flow-step p,
.tab-panel p,
.moat-card p,
.value-item p,
.audience-copy p,
.audience-card p,
.contact-copy p,
.form-status {
  color: var(--muted);
}

.model,
.markets,
.principles {
  padding: clamp(70px, 9vw, 122px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 82px minmax(0, 0.9fr);
  column-gap: clamp(24px, 4vw, 54px);
  row-gap: 16px;
  align-items: start;
  max-width: 960px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.7vw, 62px);
}

.section-heading p {
  grid-column: 2;
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
}

.build-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 28px 24px 32px;
  border-right: 1px solid var(--line);
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 74px;
  right: -12px;
  z-index: 2;
  width: 24px;
  height: 24px;
  content: "";
  background:
    linear-gradient(45deg, transparent 46%, var(--copper) 48% 52%, transparent 54%),
    var(--paper);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 28px 0 22px;
  color: var(--green);
  border: 1px solid rgba(184, 111, 69, 0.56);
  border-radius: 50%;
}

.step-icon svg {
  width: 26px;
  height: 26px;
}

.step-icon path,
.market-map path,
.market-map circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.flow-step h3,
.principle-card h3,
.tab-panel h3,
.moat-card h3,
.audience-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.22;
}

.flow-step p {
  margin-bottom: 0;
  font-size: 15px;
}

.philosophy {
  padding: clamp(72px, 9vw, 124px) 0;
  color: #f7f4ec;
  background:
    linear-gradient(135deg, rgba(184, 111, 69, 0.14), transparent 34%),
    linear-gradient(90deg, #062f29, #09241f 58%, #11140f);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 0.76fr) minmax(320px, 0.86fr);
  gap: clamp(24px, 4.5vw, 64px);
  align-items: center;
}

.philosophy-copy h2,
.contact-copy h2 {
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 58px);
}

.philosophy-copy p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.philosophy-cards {
  display: grid;
  gap: 14px;
}

.principle-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.principle-card h3 {
  margin-top: 12px;
  color: #fff;
}

.principle-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.system-diagram {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 48px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 64%);
}

.system-core {
  display: grid;
  place-items: center;
  width: clamp(94px, 9vw, 132px);
  height: clamp(94px, 9vw, 132px);
  color: #fff;
  background: linear-gradient(145deg, #0f5a4c, #062b25);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.system-diagram span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 90px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  transform: rotate(var(--angle)) translateX(145px) rotate(calc(-1 * var(--angle))) translate(-50%, -50%);
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.55fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  margin-top: 46px;
}

.market-map {
  min-height: 410px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.market-map svg {
  width: 100%;
  height: 100%;
  color: var(--green);
}

.map-land {
  fill: rgba(7, 61, 52, 0.045);
  stroke: rgba(7, 61, 52, 0.18);
}

.route {
  stroke-width: 2;
}

.route-primary {
  stroke: var(--green);
}

.route-secondary {
  stroke: var(--blue);
  stroke-dasharray: 5 8;
}

.node circle {
  fill: var(--paper);
  stroke-width: 3;
}

.node.primary circle {
  stroke: var(--green);
}

.node.secondary circle {
  stroke: var(--blue);
}

.node text {
  fill: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.market-tabs {
  display: grid;
  align-content: start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(21, 23, 19, 0.06);
}

.tab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  margin-bottom: 24px;
  background: var(--paper-deep);
  border-radius: var(--radius);
}

.tab-button {
  min-height: 42px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.is-active {
  color: #fff;
  background: var(--green);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel p {
  margin-bottom: 0;
}

.moats {
  padding: clamp(70px, 9vw, 120px) 0;
  background:
    linear-gradient(90deg, rgba(7, 61, 52, 0.07), transparent 36%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.moat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.moat-card {
  min-height: 290px;
  padding: 30px;
  background: #fff;
}

.moat-card h3 {
  margin-top: 44px;
  font-size: 23px;
}

.moat-card p {
  margin-bottom: 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-item {
  min-height: 196px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.74);
}

.value-item span {
  display: block;
  min-height: 46px;
  color: var(--green);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.22;
}

.value-item p {
  margin: 0;
  font-size: 14px;
}

.audiences {
  padding: clamp(72px, 9vw, 124px) 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
}

.audience-copy h2 {
  margin: 14px 0 20px;
  font-size: clamp(34px, 4.2vw, 56px);
}

.audience-cards {
  display: grid;
  gap: 14px;
}

.audience-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.audience-card p {
  margin-bottom: 0;
}

.contact {
  padding: clamp(76px, 10vw, 132px) 0 52px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(184, 111, 69, 0.16), transparent 42%),
    radial-gradient(circle at 88% 20%, rgba(58, 114, 216, 0.16), transparent 31%),
    #062f29;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(224, 173, 131, 0.8);
  box-shadow: 0 0 0 3px rgba(184, 111, 69, 0.18);
}

.contact-form option {
  color: var(--ink);
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #062f29;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 700;
}

.site-footer .brand-mark {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer .footer-brand span:last-child {
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(251, 250, 246, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: var(--paper-deep);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

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

  .flow-step:nth-child(2n) {
    border-right: 0;
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .philosophy-grid,
  .market-layout,
  .audience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .system-diagram {
    max-width: 460px;
    margin-inline: auto;
  }

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

@media (max-width: 720px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    min-height: var(--header-h);
    padding-inline: 18px;
  }

  .brand-name,
  .footer-brand span:last-child {
    font-size: 21px;
  }

  .hero {
    padding: 22px 18px 44px;
  }

  .hero h1 {
    font-size: clamp(35px, 9.8vw, 46px);
    line-height: 1.03;
  }

  .hero-context {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 235px;
  }

  .hero-panel {
    right: 12px;
    bottom: 12px;
    padding: 11px 12px;
  }

  .signal-bar,
  .build-flow,
  .principles-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .signal-bar article {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading p {
    grid-column: auto;
    font-size: 16px;
  }

  .model,
  .markets,
  .principles,
  .philosophy,
  .audiences,
  .contact,
  .moats {
    padding-block: 62px;
  }

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

  .flow-step:last-child {
    border-bottom: 0;
  }

  .market-map {
    min-height: 300px;
    padding: 8px;
  }

  .node text {
    font-size: 22px;
  }

  .system-diagram span {
    width: 78px;
    font-size: 11px;
    transform: rotate(var(--angle)) translateX(112px) rotate(calc(-1 * var(--angle))) translate(-50%, -50%);
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
