/* ============================================================
   Astra Marketing LLC | celestial editorial theme
   ============================================================ */

:root {
  --ink: #070b14;
  --ink-2: #0b1120;
  --ink-3: #101830;
  --paper: #f4f1ea;
  --muted: #98a2b8;
  --gold: #e8b64c;
  --gold-soft: #f3d48a;
  --teal: #5fd3c0;
  --line: rgba(244, 241, 234, 0.1);
  --line-strong: rgba(244, 241, 234, 0.18);
  --maxw: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }

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

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

/* ---------- atmosphere layers ---------- */

#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(40rem 30rem at 60% 110%, rgba(232, 182, 76, 0.05), transparent 60%);
}

.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.aurora::before {
  width: 58vw;
  height: 58vw;
  top: -24%;
  right: -14%;
  background: radial-gradient(circle, rgba(232, 182, 76, 0.14), transparent 62%);
  animation: aurora-drift-a 16s ease-in-out infinite alternate;
}

.aurora::after {
  width: 64vw;
  height: 64vw;
  top: 8%;
  left: -22%;
  background: radial-gradient(circle, rgba(95, 211, 192, 0.09), transparent 62%);
  animation: aurora-drift-b 21s ease-in-out infinite alternate;
}

@keyframes aurora-drift-a {
  from { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50%  { opacity: 1; }
  to   { transform: translate(-9vw, 8vh) scale(1.22); opacity: 0.85; }
}

@keyframes aurora-drift-b {
  from { transform: translate(0, 0) scale(1.1); opacity: 0.7; }
  50%  { opacity: 1; }
  to   { transform: translate(8vw, -7vh) scale(0.94); opacity: 0.8; }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 11, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand .mark { color: var(--gold); font-size: 1.1rem; }

.brand small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}

.nav-links a:hover { color: var(--paper); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--line-strong) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  color: var(--paper) !important;
}

.nav-cta:hover { border-color: var(--gold) !important; color: var(--gold) !important; }
.nav-cta::after { display: none; }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--paper);
  width: 42px; height: 38px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ---------- hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  height: 1px; width: 2.4rem;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  font-weight: 470;
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 18ch;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}

.hero-sub {
  margin-top: 1.8rem;
  max-width: 54ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
}

.hero-actions { margin-top: 2.6rem; display: flex; gap: 1.1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-gold {
  background: var(--gold);
  color: #171204;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(232, 182, 76, 0.28);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--paper);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-constellation {
  position: absolute;
  right: clamp(-4rem, 2vw, 4rem);
  top: 50%;
  width: clamp(260px, 34vw, 460px);
  opacity: 0.85;
  pointer-events: none;
  animation: constellation-float 11s ease-in-out infinite alternate;
}

@keyframes constellation-float {
  from { transform: translateY(-53%) rotate(-0.6deg); }
  to   { transform: translateY(-48%) rotate(0.8deg); }
}

.hero-constellation circle {
  animation: node-pulse 3.4s ease-in-out infinite;
  transform-origin: center;
}

.hero-constellation circle:nth-child(2n) { animation-delay: 0.9s; }
.hero-constellation circle:nth-child(3n) { animation-delay: 1.7s; }
.hero-constellation circle:nth-child(5n) { animation-delay: 2.4s; }

@keyframes node-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero-scroll::after {
  content: "";
  width: 1px; height: 2.6rem;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: drip 2.2s ease-in-out infinite;
}

@keyframes drip {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- section scaffolding ---------- */

section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.section-eyebrow::before { content: "✦"; font-size: 0.8rem; }

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 480;
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 22ch;
}

.section-head h2 em { font-style: italic; font-weight: 400; color: var(--gold-soft); }

.section-head p { margin-top: 1.2rem; color: var(--muted); max-width: 58ch; }

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.1rem 0;
  background: rgba(244, 241, 234, 0.02);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 34s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.marquee-track span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.8rem; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.4rem 2rem 2.2rem;
  background: linear-gradient(160deg, rgba(244, 241, 234, 0.035), rgba(244, 241, 234, 0.008));
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 182, 76, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.service-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 520;
  margin: 1rem 0 0.8rem;
}

.service-card > p { color: var(--muted); font-size: 0.95rem; }

.service-card ul {
  list-style: none;
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.service-card li {
  font-size: 0.86rem;
  color: var(--paper);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.service-card li::before { content: "✦"; color: var(--gold); font-size: 0.6rem; }

.service-card .glow {
  position: absolute;
  top: -40%; right: -30%;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 182, 76, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .glow { opacity: 1; }

/* ---------- process strip ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(244, 241, 234, 0.02);
}

.process-step {
  padding: 1.9rem 1.6rem;
  border-left: 1px solid var(--line);
}

.process-step:first-child { border-left: none; }

.process-step .p-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
}

.process-step h4 { font-size: 1rem; margin: 0.7rem 0 0.4rem; letter-spacing: 0.02em; }

.process-step p { font-size: 0.84rem; color: var(--muted); }

/* ---------- about / why ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.about-copy p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.02rem; }

.about-copy p strong { color: var(--paper); font-weight: 600; }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 420;
  color: var(--gold-soft);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin: 2rem 0;
  line-height: 1.4;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  background: rgba(244, 241, 234, 0.02);
}

.stat .n {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 480;
  color: var(--gold);
  line-height: 1;
}

.stat .l {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- testimonials ---------- */

.testimonials { position: relative; }

.t-viewport { overflow: hidden; }

.t-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.t-slide { min-width: 100%; padding: 0 1px; }

.t-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(244, 241, 234, 0.04), rgba(244, 241, 234, 0.01));
  padding: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.t-card::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.t-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 420;
  line-height: 1.5;
  color: var(--paper);
}

.t-card figcaption { margin-top: 1.8rem; }

.t-card .t-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.t-card .t-role {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.t-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.t-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }

.t-arrow {
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.3s, color 0.3s;
}

.t-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info { display: grid; gap: 1.6rem; }

.info-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  background: rgba(244, 241, 234, 0.02);
  transition: border-color 0.3s;
}

.info-item:hover { border-color: rgba(232, 182, 76, 0.4); }

.info-item .k {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.info-item .v { font-size: 1rem; color: var(--paper); line-height: 1.5; }

.info-item a:hover { color: var(--gold); }

.contact-form {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  background: linear-gradient(160deg, rgba(244, 241, 234, 0.035), rgba(244, 241, 234, 0.008));
  display: grid;
  gap: 1.2rem;
}

.field { display: grid; gap: 0.45rem; }

.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--paper);
  background: rgba(7, 11, 20, 0.5);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 182, 76, 0.15);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-note { font-size: 0.8rem; color: var(--muted); }

.form-status {
  display: none;
  font-size: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
}

.form-status.ok {
  display: block;
  color: var(--teal);
  border: 1px solid rgba(95, 211, 192, 0.4);
  background: rgba(95, 211, 192, 0.07);
}

.form-status.err {
  display: block;
  color: #f0938a;
  border: 1px solid rgba(240, 147, 138, 0.4);
  background: rgba(240, 147, 138, 0.07);
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  background: rgba(7, 11, 20, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 3rem;
}

.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; max-width: 32ch; }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: grid; gap: 0.65rem; }

.footer-col a, .footer-col li {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom .star { color: var(--gold); }

/* ---------- policy pages ---------- */

.policy-hero {
  padding: 10rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 480;
  letter-spacing: -0.01em;
}

.policy-hero p { color: var(--muted); margin-top: 1rem; max-width: 60ch; }

.policy-body { padding: 4rem 0 6rem; }

.prose { max-width: 76ch; }

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 520;
  margin: 2.6rem 0 0.9rem;
  color: var(--paper);
}

.prose h2::before { content: "✦ "; color: var(--gold); font-size: 1rem; }

.prose p { color: var(--muted); margin-bottom: 1rem; }

.prose ul, .prose ol { color: var(--muted); margin: 0 0 1rem 1.3rem; display: grid; gap: 0.4rem; }

.prose a { color: var(--gold); }

.prose a:hover { text-decoration: underline; }

.prose strong { color: var(--paper); }

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-scroll::after { animation: none; }
  .aurora::before, .aurora::after { animation: none; }
  .hero-constellation { animation: none; transform: translateY(-52%); }
  .hero-constellation circle { animation: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(3) { border-left: none; }
  .process-step:nth-child(n+3) { border-top: 1px solid var(--line); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-constellation { display: none; }
}

@media (max-width: 720px) {
  .nav-links {
    /* absolute (not fixed): the header's backdrop-filter makes it the
       containing block anyway, so anchor to it and span the viewport */
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    background: rgba(7, 11, 20, 0.96);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    gap: 2.4rem;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 40;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.05rem; }
  .menu-btn { display: block; position: relative; z-index: 45; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-step { border-left: none; border-top: 1px solid var(--line); }
  .process-step:first-child { border-top: none; }
}
