/* DUSYM — custom landing page
   No external frameworks or font dependencies.
*/

:root {
  --ink: #061738;
  --ink-2: #0b234f;
  --blue: #1648d8;
  --blue-2: #2e6cff;
  --violet: #6739e6;
  --paper: #f7f9fd;
  --white: #ffffff;
  --muted: #65718b;
  --line: rgba(8, 31, 72, .13);
  --soft: #edf2fb;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(7, 22, 56, .10);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(46, 108, 255, .22);
  color: var(--ink);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  background-image:
    radial-gradient(circle at 10% 20%, #001b5f 0 0.7px, transparent .8px),
    radial-gradient(circle at 80% 60%, #001b5f 0 0.55px, transparent .7px);
  background-size: 8px 8px, 11px 11px;
  mix-blend-mode: multiply;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  background: rgba(247, 249, 253, .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: .3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(7, 22, 56, .04);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 154px;
  position: relative;
  z-index: 102;
}

.brand img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .02em;
}

.nav > a:not(.nav-cta) {
  position: relative;
  color: #3c4862;
  transition: color .25s ease;
}

.nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--blue);
  transition: right .25s ease;
}

.nav > a:not(.nav-cta):hover {
  color: var(--ink);
}

.nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: .25s ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: white;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 102;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 42px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  top: -240px;
  right: -220px;
  background: radial-gradient(circle, rgba(75, 80, 245, .14), rgba(75, 80, 245, 0) 67%);
  pointer-events: none;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px 8px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #43506a;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(255,255,255,.48);
}

.eyebrow-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--paper) 0 3px, transparent 3.5px),
    linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 0 4px rgba(45, 91, 241, .08);
}

.hero h1 {
  max-width: 760px;
  margin: 28px 0 24px;
  font-size: clamp(58px, 6vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 720;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--blue) 0%, var(--violet) 63%, var(--ink-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #526078;
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn svg,
.contact-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}

.btn:hover svg,
.contact-link:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  color: white;
  background: linear-gradient(120deg, var(--blue), #344adf 55%, var(--violet));
  box-shadow: 0 12px 30px rgba(25, 75, 219, .22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(25, 75, 219, .30);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}

.btn-ghost:hover {
  border-color: rgba(8,31,72,.25);
  background: white;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 680px;
  margin-top: 66px;
}

.hero-proof > div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 11px;
  letter-spacing: .12em;
}

.hero-proof span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.visual-grid {
  position: absolute;
  inset: 6% 0 0 6%;
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(11, 49, 125, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 49, 125, .08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 0 42%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 0 42%, transparent 70%);
  opacity: .75;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(34, 75, 180, .15);
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 430px;
  top: 72px;
  left: 70px;
  animation: rotate 22s linear infinite;
}

.orbit-one::before,
.orbit-one::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 8px rgba(46, 108, 255, .08);
}

.orbit-one::before {
  top: 54px;
  left: 60px;
}

.orbit-one::after {
  right: 8px;
  bottom: 124px;
  background: var(--violet);
}

.orbit-two {
  width: 310px;
  height: 310px;
  top: 132px;
  left: 130px;
  border-style: dashed;
  animation: rotateReverse 28s linear infinite;
}

.core-mark {
  position: absolute;
  width: 235px;
  height: 235px;
  top: 169px;
  left: 169px;
  border: 1px solid rgba(26, 68, 170, .12);
  border-radius: 34% 44% 38% 48%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.94), rgba(255,255,255,.62)),
    linear-gradient(145deg, rgba(41,91,236,.08), rgba(102,57,230,.10));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 26px 65px rgba(8, 36, 98, .13);
  transform: rotate(-7deg);
  animation: breathe 7s ease-in-out infinite;
}

.core-mark::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1px solid rgba(46, 108, 255, .12);
}

.core-mark img {
  width: 68%;
  transform: rotate(7deg);
  filter: drop-shadow(0 12px 18px rgba(3, 27, 84, .14));
}

.signal-card {
  position: absolute;
  min-width: 132px;
  padding: 13px 15px;
  border: 1px solid rgba(10, 44, 116, .12);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(7, 22, 56, .08);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 11px;
}

.signal-card small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.signal-card span {
  font-size: 12px;
  font-weight: 720;
}

.card-a {
  left: 14px;
  top: 92px;
}

.card-b {
  right: 2px;
  top: 220px;
}

.card-c {
  left: 42px;
  bottom: 50px;
}

.circuit {
  position: absolute;
  fill: none;
  stroke: rgba(42, 80, 188, .42);
  stroke-width: 1.6;
  overflow: visible;
}

.circuit circle {
  fill: var(--paper);
  stroke: var(--blue);
  stroke-width: 2;
}

.circuit-a {
  width: 165px;
  right: 38px;
  bottom: 55px;
}

.circuit-b {
  width: 150px;
  right: 56px;
  top: 35px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  color: #73809a;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .16em;
}

.hero-line {
  height: 1px;
  background: var(--line);
}

.manifesto {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .38fr 1.62fr;
  gap: 70px;
}

.section-tag {
  color: #6d7890;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .15em;
}

.section-tag.light {
  color: rgba(255,255,255,.55);
}

.manifesto-copy {
  max-width: 870px;
}

.kicker {
  margin: 0 0 15px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
}

.manifesto h2,
.section-head h2,
.method h2,
.identity h2,
.contact h2 {
  margin: 0;
  letter-spacing: -.045em;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 690;
}

.manifesto-copy > p:last-child {
  max-width: 760px;
  margin: 30px 0 0;
  color: #5f6b82;
  font-size: 18px;
  line-height: 1.75;
}

.section-head {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.section-head .section-tag {
  margin-bottom: 18px;
}

.section-head > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 370px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.36);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #75819a;
  font-size: 11px;
  font-weight: 780;
}

.service-top svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 62px 0 18px;
  font-size: 27px;
  letter-spacing: -.025em;
}

.service-card p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.chips span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #4e5b73;
  font-size: 11px;
  font-weight: 650;
}

.method {
  background: #071731;
  color: white;
}

.method-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.method-sticky {
  align-self: start;
  position: sticky;
  top: 125px;
}

.method-sticky .section-tag {
  color: rgba(255,255,255,.48);
  margin-bottom: 22px;
}

.method-sticky p {
  max-width: 460px;
  color: rgba(255,255,255,.60);
  line-height: 1.75;
  margin-top: 28px;
}

.steps {
  border-top: 1px solid rgba(255,255,255,.12);
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.step-number {
  color: #697b9f;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .12em;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 650;
}

.step p {
  max-width: 540px;
  margin: 0;
  color: rgba(255,255,255,.54);
  line-height: 1.7;
}

.identity {
  background: white;
}

.identity-panel {
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  background:
    radial-gradient(circle at 80% 10%, rgba(90, 77, 238, .24), transparent 37%),
    linear-gradient(135deg, #08183a 0%, #0b2f74 53%, #3a2aa9 100%);
  color: white;
  box-shadow: var(--shadow);
}

.identity-symbol {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.identity-symbol::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, black 10%, transparent 72%);
}

.identity-symbol img {
  width: 42%;
  filter: brightness(0) invert(1);
  opacity: .94;
  z-index: 2;
}

.hex {
  position: absolute;
  width: 310px;
  height: 268px;
  clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%);
  border: 1px solid rgba(255,255,255,.25);
}

.hex::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent 60%);
}

.hex-a {
  transform: rotate(10deg);
  opacity: .6;
}

.hex-b {
  width: 360px;
  height: 312px;
  transform: rotate(-11deg);
  opacity: .28;
}

.identity-copy {
  padding: 84px 75px 74px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.identity-copy .section-tag {
  margin-bottom: 24px;
}

.identity-copy p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.78;
  font-size: 17px;
}

.identity-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.identity-values span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 11px;
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
}

.contact {
  padding-bottom: 150px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
}

.contact-copy .section-tag {
  margin-bottom: 20px;
}

.contact-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 50px rgba(8, 30, 70, .06);
}

.contact-label {
  margin: 0 0 24px;
  color: #8290a9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 640;
  letter-spacing: -.03em;
  border-bottom: 1px solid var(--line);
}

.contact-note {
  margin: 16px 0 0;
  color: #8a94a8;
  font-size: 11px;
  line-height: 1.55;
}

.contact-separator {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.contact-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #6d7890;
  font-size: 11px;
}

.footer {
  background: white;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-row {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: #7d899e;
  font-size: 11px;
}

.footer-brand {
  width: 116px;
}

.footer-brand img {
  width: 100%;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.footer-row p {
  margin: 0;
  color: var(--ink);
  font-weight: 640;
}

.footer-row > span {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1),
              transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
  to { transform: rotate(-360deg); }
}

@keyframes breathe {
  0%,100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-9px); }
}

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

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 34px, 760px);
  }

  .section {
    padding: 94px 0;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-grid,
  .section-head,
  .manifesto-grid,
  .method-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    min-height: 500px;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .manifesto-grid,
  .section-head,
  .method-grid,
  .contact-grid {
    gap: 42px;
  }

  .method-sticky {
    position: static;
  }

  .identity-panel {
    grid-template-columns: 1fr;
  }

  .identity-symbol {
    min-height: 360px;
  }

  .identity-copy {
    padding: 54px;
  }

  .footer-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-row p {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .site-header {
    background: rgba(247, 249, 253, .92);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    width: 132px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    padding: 110px 28px 30px;
    background: #f7f9fd;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-105%);
    opacity: 0;
    pointer-events: none;
    transition: .35s cubic-bezier(.2,.7,.2,1);
  }

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

  .nav > a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
  }

  .nav-cta {
    margin-top: 18px;
    text-align: center;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 44px;
  }

  .hero-visual {
    min-height: 390px;
    transform: scale(.92);
    transform-origin: center top;
  }

  .orbit-one {
    width: 320px;
    height: 320px;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
  }

  .orbit-two {
    width: 230px;
    height: 230px;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
  }

  .core-mark {
    width: 170px;
    height: 170px;
    top: 120px;
    left: 50%;
    transform: translateX(-50%) rotate(-7deg);
    animation: none;
  }

  .signal-card {
    min-width: 112px;
    padding: 11px;
  }

  .card-a { left: 0; top: 40px; }
  .card-b { right: 0; top: 180px; }
  .card-c { left: 8px; bottom: 18px; }

  .circuit {
    display: none;
  }

  .hero-bottom {
    margin-top: 0;
  }

  .section {
    padding: 78px 0;
  }

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

  .service-card {
    min-height: 330px;
    padding: 28px 24px;
  }

  .service-card h3 {
    margin-top: 46px;
  }

  .step {
    grid-template-columns: 54px 1fr;
    padding: 32px 0;
  }

  .identity-panel {
    border-radius: 22px;
  }

  .identity-symbol {
    min-height: 300px;
  }

  .identity-copy {
    padding: 36px 26px 42px;
  }

  .identity-copy p {
    font-size: 15px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-link {
    font-size: 22px;
    overflow-wrap: anywhere;
  }

  .contact-meta {
    flex-direction: column;
  }

  .footer-row {
    min-height: auto;
  }
}
