/* Dheemi Studio — base styles */
:root {
  --navy: #2A3651;
  --navy-deep: #1F2940;
  --teal: #2A8C84;
  --teal-deep: #1F6E68;
  --copper: #B86E4B;
  --gold: #C6A15B;
  --sky: #D9E8EE;
  --paper: #F5F1EA;
  --paper-soft: #EFE9DE;
  --paper-glow: #FFFDF8;
  --ink: #14182A;
  --ink-mute: #6E6A60;
  --line: rgba(20, 24, 42, 0.12);

  --serif: "Lora", "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", "Avenir", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

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

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
  overflow-x: hidden;
}

html { scroll-behavior: auto; }

body {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }

::selection { background: var(--navy); color: var(--paper); }

/* Custom cursor */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
  mix-blend-mode: difference;
  filter: invert(1);
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
  filter: invert(1);
  opacity: 0.6;
}
.cursor-hover .cursor-dot { width: 4px; height: 4px; }
.cursor-hover .cursor-ring { width: 64px; height: 64px; opacity: 1; }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* Loader */
.loader {
  position: fixed; inset: 0;
  background: var(--navy);
  color: var(--paper);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader.done { transform: translateY(-100%); }
.loader-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.loader-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 24px;
}

/* Nav */
.nav {
  position: fixed;
  top: 14px; left: 18px; right: 18px;
  z-index: 100;
  padding: 10px 12px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  border: 1px solid rgba(20, 24, 42, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 16px 60px rgba(20, 24, 42, 0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-style: italic;
  font-size: 20px; letter-spacing: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 26px; height: 26px;
}
.nav-links {
  display: flex; gap: 8px;
  font-size: 12px;
  letter-spacing: 0;
  align-items: center;
}
.nav-link {
  position: relative;
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active { background: rgba(20, 24, 42, 0.08); }
.nav-link.active { font-weight: 600; }

/* Page transition mask */
.page-mask {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9000;
  transform: translateY(100%);
  pointer-events: none;
}

/* Page wrapper */
.page {
  min-height: 100vh;
  position: relative;
}

/* Reveal helpers */
.reveal-line {
  overflow: hidden;
  display: block;
}
.reveal-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-line.in > span { transform: translateY(0); }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}
.btn:hover { color: var(--paper); }
.btn:hover::before { transform: translateY(0); }
.btn .dot {
  width: 6px; height: 6px;
  background: currentColor; border-radius: 50%;
}
.btn-solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 16px 36px rgba(20, 24, 42, 0.18);
}
.btn-solid::before { background: var(--navy-deep); }
.btn-quiet {
  background: rgba(255, 253, 248, 0.55);
  color: var(--ink);
  border-color: rgba(20, 24, 42, 0.16);
}

/* Home */
.home-page {
  background: var(--paper);
}
.home-section-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 40px;
}
.home-section-inner.narrow {
  width: min(100%, 1180px);
}
.home-hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px 40px 72px;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 253, 248, 0.92), rgba(239, 233, 222, 0.2) 34%, transparent 56%),
    linear-gradient(135deg, var(--paper-glow) 0%, var(--paper) 42%, var(--paper-soft) 100%);
}
.hero-aura {
  position: absolute;
  inset: auto -12% -28% auto;
  width: 720px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.28), rgba(184, 110, 75, 0.08) 42%, transparent 68%);
  pointer-events: none;
}
.hero-logo-field {
  position: absolute;
  right: -150px;
  bottom: -115px;
  width: min(72vw, 940px);
  opacity: 0.16;
  filter: saturate(0.8) contrast(1.1);
  transform-origin: center;
  transition: transform 0.12s linear;
  pointer-events: none;
}
.hero-logo-field img {
  width: 100%;
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1440px);
  margin: 0 auto;
}
.hero-copy {
  max-width: 790px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 6px rgba(184, 110, 75, 0.12);
}
.hero-title {
  font-size: 68px;
  line-height: 0.98;
  max-width: 16ch;
}
.home-hero .reveal-line {
  overflow: visible;
}
.home-hero .reveal-line > span,
.home-hero .fade-up {
  transform: none;
  opacity: 1;
}
.hero-lede {
  max-width: 650px;
  margin-top: 30px;
  color: var(--ink-mute);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 360px;
  padding: 18px;
  border: 1px solid rgba(20, 24, 42, 0.12);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.66);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 70px rgba(20, 24, 42, 0.12);
}
.hero-panel-top,
.work-card-top,
.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.78;
}
.hero-device {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, #14182A, #26304A);
  color: var(--paper);
  min-height: 190px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.hero-device-bar {
  width: 78px;
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.22);
  margin-bottom: 42px;
}
.hero-device-row {
  height: 10px;
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.16);
  margin-bottom: 12px;
}
.hero-device-row.strong {
  width: 72%;
  height: 28px;
  background: rgba(245, 241, 234, 0.9);
}
.hero-device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 26px;
}
.hero-device-grid span {
  height: 42px;
  border-radius: 12px;
  background: rgba(217, 232, 238, 0.22);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.hero-metrics div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(20, 24, 42, 0.05);
}
.hero-metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}
.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--ink-mute);
  font-size: 11px;
  line-height: 1.35;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.scroll-hint i {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  transform-origin: left;
  animation: scroll-rule 1.9s ease-in-out infinite;
}
@keyframes scroll-rule {
  0%, 100% { transform: scaleX(0.25); opacity: 0.45; }
  50% { transform: scaleX(1); opacity: 1; }
}
.capability-ribbon {
  height: 145svh;
  background: var(--paper);
  position: relative;
}
.capability-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-glow) 50%, var(--paper-soft) 100%);
}
.capability-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}
.capability-track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  margin-right: 34px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 126px;
  line-height: 1;
}
.capability-track i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--copper);
}
.capability-caption {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 64px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
}
.capability-caption p {
  max-width: 470px;
  color: var(--ink-mute);
  font-size: 17px;
  line-height: 1.55;
}
.center-progress {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 34px;
  height: 1px;
  background: rgba(20, 24, 42, 0.12);
}
.center-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform-origin: left;
}
.home-manifesto,
.home-services,
.home-work,
.home-process {
  padding: 140px 0;
}
.home-manifesto {
  background: var(--paper-soft);
}
.manifesto-text {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1.18;
}
.manifesto-text span {
  display: inline-block;
  margin-right: 0.24em;
  transition: opacity 0.18s linear;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}
.section-heading.compact {
  margin-bottom: 48px;
}
.section-heading h2,
.numbers-intro h2 {
  margin-top: 18px;
  font-size: 66px;
  line-height: 1;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 54px 54px minmax(260px, 0.8fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 128px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-row.in {
  opacity: 1;
  transform: translateY(0);
}
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
}
.service-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 24, 42, 0.06);
  color: var(--navy);
}
.service-row h3 {
  font-size: 34px;
  line-height: 1.06;
}
.service-row p {
  max-width: 520px;
  color: var(--ink-mute);
  line-height: 1.6;
}
.home-numbers {
  padding: 132px 0;
  background: var(--navy-deep);
  color: var(--paper);
}
.home-numbers .eyebrow {
  color: rgba(245, 241, 234, 0.62);
}
.numbers-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.numbers-intro h2 {
  margin-top: 0;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.number-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 22px;
  background: rgba(245, 241, 234, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.number-card strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 92px;
  line-height: 0.9;
}
.number-card span {
  max-width: 260px;
  color: rgba(245, 241, 234, 0.68);
  line-height: 1.55;
}
.work-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}
.work-card {
  min-height: 520px;
  border-radius: 28px;
  color: var(--paper);
  overflow: hidden;
  position: relative;
  padding: 24px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-card.in {
  opacity: 1;
  transform: translateY(0);
}
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}
.work-card > * {
  position: relative;
  z-index: 1;
}
.work-preview {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 28%;
  bottom: 24%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  padding: 14px;
}
.work-preview span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.22);
}
.work-preview span:first-child {
  grid-row: span 2;
}
.work-card-bottom {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.work-card h3 {
  font-size: 44px;
  line-height: 1;
}
.work-card-bottom span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.78;
}
.home-process {
  background: var(--paper-soft);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.48);
  display: flex;
  flex-direction: column;
}
.process-card h3 {
  margin-top: 42px;
  font-size: 28px;
  line-height: 1.08;
}
.process-card p {
  margin-top: auto;
  color: var(--ink-mute);
  line-height: 1.58;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--paper);
  padding: 120px 40px 40px;
  position: relative;
  overflow: hidden;
}
.footer-big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 132px;
  line-height: 0.85;
  letter-spacing: 0;
  margin-bottom: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 241, 234, 0.2);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col a { display: block; padding: 6px 0; opacity: 0.85; transition: opacity 0.2s, transform 0.3s; }
.footer-col a:hover { opacity: 1; transform: translateX(4px); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.5;
  text-transform: uppercase;
}

/* Layout helpers */
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section { padding: 140px 0; position: relative; }

@media (max-width: 1180px) {
  .hero-title { font-size: 58px; }
  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 430px);
    margin-top: 34px;
  }
  .section-heading h2,
  .numbers-intro h2 { font-size: 56px; }
  .capability-track span { font-size: 104px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .work-stack { grid-template-columns: 1fr; }
  .work-card { min-height: 420px; }
  .footer-big { font-size: 104px; }
}

@media (max-width: 900px) {
  .nav {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 10px;
    border-radius: 24px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .nav-logo { font-size: 18px; }
  .nav-logo-mark { width: 24px; height: 24px; }
  .nav-links {
    width: 100%;
    gap: 4px;
    overflow-x: auto;
    padding-top: 6px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link {
    padding: 7px 10px;
    flex: 0 0 auto;
    font-size: 11px;
  }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .home-section-inner { padding: 0 20px; }
  .home-hero {
    min-height: auto;
    padding: 140px 20px 56px;
    align-items: flex-start;
  }
  .hero-logo-field {
    width: 620px;
    right: -300px;
    bottom: -120px;
    opacity: 0.12;
  }
  .hero-title {
    max-width: 11ch;
    font-size: 36px;
    line-height: 1.02;
  }
  .hero-lede {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.62;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
    border-radius: 20px;
  }
  .scroll-hint { display: none; }
  .capability-ribbon { height: 122svh; }
  .capability-sticky {
    height: 92svh;
    align-items: flex-start;
    padding-top: 28svh;
  }
  .capability-track span {
    gap: 18px;
    margin-right: 18px;
    font-size: 64px;
  }
  .capability-track i {
    width: 8px;
    height: 8px;
  }
  .capability-caption {
    left: 20px;
    right: 20px;
    bottom: 46px;
    display: block;
  }
  .capability-caption p {
    margin-top: 14px;
    font-size: 15px;
  }
  .center-progress {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }
  .home-manifesto,
  .home-services,
  .home-work,
  .home-process {
    padding: 92px 0;
  }
  .manifesto-text {
    margin-top: 24px;
    font-size: 32px;
    line-height: 1.22;
  }
  .section-heading,
  .numbers-intro {
    display: block;
    margin-bottom: 38px;
  }
  .section-heading h2,
  .numbers-intro h2 {
    font-size: 40px;
    line-height: 1.05;
  }
  .section-heading .btn {
    margin-top: 22px;
  }
  .service-row {
    grid-template-columns: 38px 44px 1fr;
    gap: 14px;
    min-height: auto;
    padding: 24px 0;
  }
  .service-row h3 {
    font-size: 25px;
  }
  .service-row p {
    grid-column: 3;
    font-size: 14px;
  }
  .home-numbers {
    padding: 92px 0;
  }
  .number-grid {
    grid-template-columns: 1fr;
  }
  .number-card {
    min-height: 190px;
  }
  .number-card strong {
    font-size: 68px;
  }
  .work-card {
    min-height: 360px;
    border-radius: 22px;
  }
  .work-card h3 {
    font-size: 34px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    min-height: 240px;
  }
  .footer {
    padding: 72px 20px 30px;
  }
  .footer-big {
    font-size: 58px;
    line-height: 0.95;
    margin-bottom: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
  }
}
