@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --sand: #f5f7f1;
  --ink: #0b0b0b;
  --ember: #25e08b;
  --sage: #8bd3a7;
  --night: #050505;
  --paper: #141414;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at 20% 10%, rgba(37, 224, 139, 0.12), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(37, 224, 139, 0.08), transparent 45%),
    #050505;
  color: var(--sand);
}

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

.hero {
  position: relative;
  padding: 48px 7vw 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: auto -10% -30% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(37, 224, 139, 0.3), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-content {
  margin-top: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--sage);
  margin-bottom: 16px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid rgba(245, 247, 241, 0.4);
  background: transparent;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}

.btn.primary {
  background: var(--ember);
  color: var(--ink);
  border-color: transparent;
}

.btn.ghost {
  background: transparent;
}

.btn.circle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.hero-cards {
  display: grid;
  gap: 18px;
}

.stat {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat span {
  font-size: 28px;
  font-weight: 600;
  color: var(--ember);
}

.stat p {
  margin-top: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 247, 241, 0.6);
}

main {
  padding: 0 7vw 80px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-header p {
  max-width: 420px;
  color: rgba(245, 247, 241, 0.65);
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.brands {
  padding: 40px 0 60px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}

.brand-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 140px;
}

.brand-card.active {
  border: 1px solid rgba(37, 224, 139, 0.7);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.brand-card:hover {
  transform: scale(1.05);
}

.brand-logo {
  height: 48px;
  border-radius: 12px;
  background: #0f0f0f;
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--sand);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  padding: 6px 10px;
}

.brand-reels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brand-reel {
  border-radius: 16px;
  overflow: hidden;
  background: #0b0b0b;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.brand-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  padding: 40px 7vw;
  background: var(--night);
  color: var(--sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-reels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .brand-card {
    min-width: 120px;
  }
}
