:root {
  --black: #10100f;
  --black-2: #171716;
  --black-3: #22211f;
  --white: #f6f5f2;
  --paper: #eeeeea;
  --paper-2: #e5e3de;
  --text: #191918;
  --muted: #6f6b63;
  --line: #d8d5cf;
  --line-dark: rgba(246, 245, 242, 0.12);
  --gold: #c89542;
  --gold-2: #e0b866;
  --shell: 1280px;
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 72px;
  color: var(--white);
  background: rgba(16, 16, 15, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
}

.wordmark {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.wordmark span,
.wordmark strong {
  font-size: 29px;
  font-weight: 900;
}

.wordmark span {
  color: #f0eee8;
}

.wordmark strong {
  color: var(--gold);
}

.wordmark small {
  grid-column: 1 / -1;
  margin-top: 7px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 30px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav a {
  color: #f3f0e9;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold-2);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.icon-link,
.cart-link {
  position: relative;
  display: inline-flex;
  min-width: 26px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 19px;
  line-height: 1;
}

.cart-link span {
  position: absolute;
  top: 3px;
  right: -7px;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.buy-now,
.button,
.small-button,
.all-products {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.buy-now {
  min-height: 42px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(180deg, #d4a85e, #b98534);
  font-size: 12px;
}

.buy-now:hover,
.button-primary:hover {
  background: linear-gradient(180deg, #e5bf75, #c89441);
  transform: translateY(-2px);
}

.button:active,
.buy-now:active,
.small-button:active,
.all-products:active {
  transform: translateY(1px) scale(0.985);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 260ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

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

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(760px, 100dvh);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(16, 16, 15, 0.7) 34%, rgba(16, 16, 15, 0.1) 64%, rgba(16, 16, 15, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 34%);
}

.hero-content {
  position: relative;
  display: grid;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 30px;
}

.hero-copy {
  width: min(570px, 48vw);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 4.8vw, 5.1rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
.about-copy h2 span {
  color: var(--gold);
}

.hero-copy > p {
  max-width: 440px;
  margin-bottom: 28px;
  color: #ece9e2;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

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

.button {
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 12px;
  gap: 10px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #d4a85e, #b98534);
}

.button-ghost {
  color: var(--white);
  background: rgba(8, 8, 8, 0.32);
  border-color: rgba(246, 245, 242, 0.46);
}

.button-ghost:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 22px;
  max-width: 610px;
  margin-top: 46px;
}

.hero-proof span {
  display: grid;
  gap: 3px;
  color: #d9d5cc;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.35;
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow-left {
  left: 28px;
}

.hero-arrow-right {
  right: 28px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 999px;
  opacity: 0.9;
}

.hero-dots .is-active {
  width: 28px;
  background: var(--gold);
}

.numbers {
  background: linear-gradient(180deg, #fbfaf8, #efeee9);
  border-bottom: 1px solid var(--line);
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 34px;
  align-items: center;
  padding-block: 32px;
}

.numbers h2 {
  max-width: 260px;
  margin-bottom: 0;
  font-size: 29px;
  line-height: 1.08;
  font-weight: 950;
  text-transform: uppercase;
}

.numbers article {
  min-height: 62px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.numbers span {
  display: block;
  color: var(--black);
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.numbers p {
  margin: 8px 0 0;
  max-width: 150px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.32;
  text-transform: uppercase;
}

.section {
  padding-block: 54px;
}

.section-title {
  margin: 0 auto 38px;
  text-align: center;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--gold);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 26px;
}

.category-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  text-align: center;
}

.category-card img {
  width: 92px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.category-card strong {
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.category-card span {
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
}

.about-band {
  padding-top: 28px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.86fr;
  gap: 36px;
  align-items: center;
  padding: 34px 40px;
  background: #f5f4f1;
  border: 1px solid #dedbd4;
  border-radius: var(--radius);
}

.about-logo {
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border-radius: var(--radius);
}

.about-logo img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: contain;
}

.kicker {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 3.35vw, 3.8rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.about-copy p:not(.kicker),
.mission-list p,
.newsletter p,
.site-footer p {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.about-copy p:not(.kicker) {
  max-width: 560px;
  margin-bottom: 26px;
  color: #45423d;
  line-height: 1.7;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark:hover {
  color: var(--black);
  background: var(--gold-2);
  transform: translateY(-2px);
}

.mission-list {
  display: grid;
  gap: 28px;
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.mission-list article {
  position: relative;
  padding-left: 42px;
}

.mission-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border: 2px solid var(--black);
  border-radius: 50%;
}

.mission-list strong {
  display: block;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.mission-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.products {
  padding-top: 18px;
  background: linear-gradient(180deg, #f8f7f5, #f0efeb);
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  outline: 0;
}

.product-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.product-card a:first-child {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #eeece8;
  border: 1px solid #e1ded7;
  border-radius: var(--radius);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms var(--ease);
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card h3 {
  min-height: 34px;
  margin: 18px 0 8px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 950;
}

.small-button {
  min-height: 34px;
  padding: 0 18px;
  color: var(--white);
  background: var(--black);
  font-size: 11px;
}

.small-button:hover {
  color: var(--black);
  background: var(--gold-2);
}

.all-products {
  width: fit-content;
  min-height: 48px;
  margin: 42px auto 0;
  padding: 0 32px;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  font-size: 12px;
  gap: 16px;
}

.all-products:hover {
  color: var(--white);
  background: var(--black);
}

.how-it-works {
  padding-block: 42px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.92), rgba(16, 16, 15, 0.96)),
    url("/assets/images/give90-store-hero.webp") center / cover;
}

.section-title-dark {
  color: var(--white);
  margin-bottom: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.steps article {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 18px;
  align-items: center;
}

.steps span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 950;
}

.steps strong {
  display: block;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.steps p {
  grid-column: 2;
  margin: 4px 0 0;
  color: #d6d2c9;
  font-size: 13px;
}

.newsletter {
  padding-block: 32px;
  background: #f6f5f2;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 520px);
  gap: 48px;
  align-items: center;
}

.newsletter h2 {
  margin-bottom: 6px;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.newsletter p {
  margin: 0;
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.newsletter-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-form input {
  min-height: 48px;
  width: 100%;
  padding: 0 18px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
}

.newsletter-form input::placeholder {
  color: #77736b;
}

.newsletter-form button {
  min-height: 48px;
  padding: 0 24px;
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  color: #d9d5cd;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-block: 58px 38px;
}

.footer-wordmark {
  margin-bottom: 22px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 9px;
  color: #d9d5cd;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.payment-badges {
  padding: 10px;
  color: var(--black) !important;
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  margin: 0;
  color: #aaa59c;
  font-size: 13px;
}

.noscript {
  margin: 0;
  padding: 12px;
  color: var(--black);
  background: var(--gold-2);
  text-align: center;
}

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

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

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

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

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

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    grid-column: 2;
    justify-self: end;
  }

  .nav-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .main-nav.is-open,
  .nav-actions.is-open {
    position: fixed;
    left: 24px;
    right: 24px;
    display: grid;
    justify-content: stretch;
    padding: 22px;
    background: rgba(16, 16, 15, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
  }

  .main-nav.is-open {
    top: 86px;
    gap: 16px;
  }

  .nav-actions.is-open {
    top: 346px;
    grid-template-columns: repeat(4, auto);
    align-items: center;
  }

  .hero-copy {
    width: min(600px, 58vw);
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .numbers h2 {
    grid-column: 1 / -1;
    max-width: none;
  }

  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr 1fr;
  }

  .mission-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 26px;
  }

  .product-rail {
    display: flex;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header,
  .nav-shell {
    min-height: 68px;
    height: 68px;
  }

  .wordmark span,
  .wordmark strong {
    font-size: 24px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(16, 16, 15, 0.36)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.7));
  }

  .hero-content {
    align-items: end;
    padding-bottom: 60px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-copy > p {
    max-width: 330px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .hero-proof,
  .hero-arrow {
    display: none;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .numbers h2 {
    font-size: 25px;
  }

  .numbers article {
    padding-left: 0;
    border-left: 0;
  }

  .section {
    padding-block: 42px;
  }

  .section-title {
    font-size: 28px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .about-copy h2 {
    font-size: 2.35rem;
  }

  .mission-list {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex-basis: 76vw;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .newsletter-layout,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }

  .newsletter-form button {
    margin-top: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
