/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #0d1f14;
  --green-mid: #1a3d28;
  --green-light: #2d6a4f;
  --green-glow: #40916c;
  --gold: #d4a843;
  --gold-bright: #f0c850;
  --gold-dim: #a07830;
  --brown: #3d2b1f;
  --brown-light: #5c4033;
  --cream: #f5e6c8;
  --cream-dim: #c4b59a;
  --red-accent: #c0392b;
  --black: #080c0a;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 72px;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

.section__text {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 56ch;
}

.section__text--center {
  margin-inline: auto;
  text-align: center;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ===== FALLING PARTICLES ===== */
.falling-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.falling-particle {
  position: absolute;
  top: -10%;
  opacity: 0;
  animation: particleFall linear infinite;
  will-change: transform, opacity;
}

@keyframes particleFall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
    opacity: 0;
  }
  8% { opacity: var(--particle-opacity, .18); }
  92% { opacity: var(--particle-opacity, .18); }
  100% {
    transform: translate3d(var(--drift, 30px), 110vh, 0) rotate(var(--spin, 180deg));
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .falling-particles { display: none; }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}

.nav--scrolled {
  background: rgba(8, 12, 10, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(212, 168, 67, .15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav__logo-full {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--cream-dim);
  transition: color .2s;
  letter-spacing: .03em;
}

.nav__links a:hover { color: var(--gold-bright); }

.nav__cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--green-dark) !important;
  padding: .55rem 1.25rem;
  border-radius: 999px;
  font-weight: 700 !important;
  transition: transform .2s, box-shadow .2s !important;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, .4);
  color: var(--green-dark) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s;
}

.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: var(--green-dark);
  box-shadow: 0 4px 24px rgba(212, 168, 67, .35);
}

.btn--gold:hover { box-shadow: 0 6px 32px rgba(212, 168, 67, .5); }

.btn--outline {
  border: 2px solid rgba(245, 230, 200, .3);
  color: var(--cream);
}

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

.hero .btn--outline {
  border: 2px solid rgba(26, 61, 40, .45);
  color: var(--green-dark);
  background: rgba(255, 255, 255, .45);
  backdrop-filter: blur(4px);
}

.hero .btn--outline:hover {
  border-color: var(--gold-dim);
  color: var(--gold-dim);
  background: rgba(255, 255, 255, .7);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 0 6rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 10, .55) 0%, rgba(8, 12, 10, .1) 35%, rgba(8, 12, 10, .1) 65%, rgba(8, 12, 10, .7) 100%),
    radial-gradient(ellipse 55% 50% at 50% 45%, rgba(245, 230, 200, .15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(720px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.hero__content {
  text-align: center;
  width: 100%;
  padding-bottom: 2.5rem;
  transition: opacity .2s ease;
}

.hero__logo {
  width: min(580px, 94vw);
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, .45));
}

.hero__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green-dark);
  border: 1px solid rgba(26, 61, 40, .35);
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
  text-shadow: 0 2px 12px rgba(255, 255, 255, .4);
}

.hero__title-line { display: block; }

.hero__title-line--accent {
  color: #6b1a1a;
  background: none;
  -webkit-text-fill-color: #6b1a1a;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .85),
    0 2px 12px rgba(255, 255, 255, .6);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--green-dark);
  max-width: 46ch;
  margin: 0 auto 2rem;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .75),
    0 2px 10px rgba(255, 255, 255, .5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.hero__ca {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  padding: 1rem 1.1rem 1.1rem;
  background:
    linear-gradient(160deg, rgba(20, 45, 30, .94) 0%, rgba(10, 24, 16, .96) 100%);
  border: 2px solid rgba(212, 168, 67, .4);
  border-radius: 14px;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(212, 168, 67, .18);
}

.hero__ca-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: .65rem;
  text-align: left;
}

.hero__ca-field {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  padding: .55rem .55rem .55rem .85rem;
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(212, 168, 67, .22);
  border-radius: 10px;
}

.hero__ca-text {
  font-family: 'Courier New', monospace;
  font-size: .92rem;
  color: var(--cream);
  background: transparent;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.hero__ca-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  border: none;
  border-radius: 8px;
  color: var(--green-dark);
  transition: transform .2s, box-shadow .2s, filter .2s;
  flex-shrink: 0;
}

.hero__ca-copy:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 168, 67, .45);
  filter: brightness(1.05);
}

.hero__ca-copy:active {
  transform: translateY(0);
}

.hero__ca-copy svg {
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  z-index: 3;
  pointer-events: none;
}

.hero__scroll-line {
  width: 2px;
  height: 40px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold-bright), rgba(240, 200, 80, .2));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50% { transform: scaleY(.6); opacity: 1; }
}

/* ===== DIVIDER ===== */
.divider {
  position: relative;
  line-height: 0;
  margin-top: -2px;
}

.divider--flip .divider__img { transform: scaleY(-1); }

.divider__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, var(--black) 0%, var(--green-dark) 50%, var(--black) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__img {
  border-radius: var(--radius);
}

.about__quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(212, 168, 67, .06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
}

/* ===== TOKENOMICS ===== */
.tokenomics {
  position: relative;
  overflow: hidden;
}

.tokenomics__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tokenomics__bg-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.tokenomics__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 10, .65) 0%, rgba(8, 12, 10, .25) 40%, rgba(8, 12, 10, .25) 60%, rgba(8, 12, 10, .65) 100%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(8, 12, 10, .2) 0%, transparent 70%);
  pointer-events: none;
}

.tokenomics .container {
  position: relative;
  z-index: 2;
}

.tokenomics__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.tokenomics__coin-wrap {
  display: flex;
  justify-content: center;
}

.tokenomics__coin {
  width: min(320px, 80%);
  filter: drop-shadow(0 12px 40px rgba(212, 168, 67, .3));
  animation: coinSpin 12s ease-in-out infinite;
}

@keyframes coinSpin {
  0%, 100% { transform: rotateY(0deg) scale(1); }
  50% { transform: rotateY(15deg) scale(1.04); }
}

.tokenomics__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: linear-gradient(145deg, rgba(26, 61, 40, .6), rgba(13, 31, 20, .8));
  border: 1px solid rgba(212, 168, 67, .15);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, .4);
  box-shadow: 0 8px 32px rgba(212, 168, 67, .1);
}

.stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-bright);
  margin-bottom: .35rem;
}

.stat-card__label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ===== ROADMAP ===== */
.roadmap {
  background: linear-gradient(180deg, var(--black) 0%, var(--green-dark) 30%, var(--black) 100%);
}

.roadmap__visual {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.roadmap__img { width: 100%; }

.roadmap__phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.phase-card {
  background: rgba(26, 61, 40, .4);
  border: 1px solid rgba(212, 168, 67, .12);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: transform .3s, border-color .3s;
}

.phase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, .35);
}

.phase-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--green-dark);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .85rem;
  border-radius: 50%;
  margin-bottom: .75rem;
}

.phase-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: .5rem;
}

.phase-card p {
  font-size: .82rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ===== COMMUNITY ===== */
.community {
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(212, 168, 67, .08) 0%, transparent 60%),
    var(--black);
}

.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community__img {
  border-radius: var(--radius);
  filter: drop-shadow(0 16px 48px rgba(0,0,0,.5));
}

.community__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  background: rgba(26, 61, 40, .5);
  border: 1px solid rgba(212, 168, 67, .2);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--cream);
  transition: background .2s, border-color .2s, transform .2s;
}

.social-btn:hover {
  background: rgba(212, 168, 67, .15);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold-bright);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  padding: 4.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(45, 106, 79, .22) 0%, transparent 55%),
    linear-gradient(180deg, var(--black) 0%, var(--green-dark) 45%, #071009 100%);
  border-top: 1px solid rgba(212, 168, 67, .2);
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90vw);
  height: 240px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, .12) 0%, transparent 70%);
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer__brand {
  text-align: left;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  transition: transform .3s, filter .3s;
}

.footer__logo-link:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 12px 28px rgba(212, 168, 67, .25));
}

.footer__logo {
  width: min(280px, 100%);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .4));
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: .5rem;
}

.footer__motto {
  font-size: .9rem;
  color: var(--cream-dim);
  font-style: italic;
}

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

.footer__heading {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer__nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--cream-dim);
  transition: color .2s, transform .2s;
}

.footer__nav a:hover {
  color: var(--gold-bright);
  transform: translateX(4px);
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: .6rem 1rem;
  background: rgba(26, 61, 40, .55);
  border: 1px solid rgba(212, 168, 67, .22);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--cream);
  transition: background .2s, border-color .2s, transform .2s, color .2s;
}

.footer__social:hover {
  background: rgba(212, 168, 67, .14);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.footer__col--cta {
  text-align: left;
}

.footer__buy {
  width: 100%;
  max-width: 220px;
}

.footer__chain {
  margin-top: .85rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-glow);
}

.footer__divider {
  height: 1px;
  margin-bottom: 1.75rem;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, .35), transparent);
}

.footer__bottom {
  text-align: center;
}

.footer__disclaimer {
  font-size: .75rem;
  color: var(--cream-dim);
  max-width: 56ch;
  margin: 0 auto 1rem;
  opacity: .7;
  line-height: 1.5;
}

.footer__copy {
  font-size: .7rem;
  color: var(--cream-dim);
  opacity: .5;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--green-light);
  color: var(--cream);
  padding: .75rem 1.5rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 200;
  opacity: 0;
  transition: transform .3s, opacity .3s;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ===== SCROLL PARALLAX ===== */
[data-parallax] {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] {
    transform: none !important;
  }

  .hero__content {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about__grid,
  .tokenomics__layout,
  .community__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section__text { margin-inline: auto; }

  .community__links { justify-content: center; }

  .about__visual { order: -1; }

  .community__visual { order: -1; }

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

  .tokenomics__stats { max-width: 480px; margin-inline: auto; }

  .nav__logo-full { height: 42px; }

  .hero__logo { width: min(400px, 92vw); }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__brand { text-align: center; }

  .footer__logo { margin-inline: auto; }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 12, 10, .97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .3s, opacity .3s;
    border-bottom: 1px solid rgba(212, 168, 67, .15);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
  }

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

  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .tokenomics__stats { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; align-items: center; }

  .hero__actions .btn { width: 100%; max-width: 280px; }

  .nav__logo-full { height: 36px; }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand {
    text-align: center;
  }

  .footer__logo {
    margin-inline: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer__col--cta {
    text-align: center;
  }

  .footer__buy {
    margin-inline: auto;
  }

  .footer__socials {
    justify-content: center;
  }
}
