@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@300;500;700&family=Space+Grotesk:wght@300;500;700&display=swap');

:root {
  --bg: #f4f1ec;
  --bg-deep: #efe4d7;
  --ink: #1b1a19;
  --muted: #585048;
  --accent: #c87445;
  --accent-dark: #7f3f27;
  --mint: #8ab7a8;
  --sky: #b9c9e4;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(20, 16, 12, 0.12);
}

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

body {
  font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, var(--bg-deep), var(--bg));
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-orbit {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 116, 69, 0.2), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(138, 183, 168, 0.3), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(185, 201, 228, 0.3), transparent 45%);
  z-index: -1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8vw;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(244, 241, 236, 0.82);
  border-bottom: 1px solid rgba(27, 26, 25, 0.08);
  z-index: 10;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.solid-btn {
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solid-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.ghost-btn {
  background: transparent;
  border: 1px solid rgba(27, 26, 25, 0.2);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.text-btn {
  background: none;
  color: var(--accent-dark);
  font-weight: 600;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
}

main {
  padding: 0 8vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 80px 0 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.icon-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(27, 26, 25, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  font-size: 1.4rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  animation: floatIn 1.2s ease both;
}

.card.tall {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(200, 116, 69, 0.15), rgba(255, 255, 255, 0.9));
}

.card.accent {
  background: linear-gradient(140deg, rgba(138, 183, 168, 0.25), rgba(255, 255, 255, 0.95));
}

.tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-dark);
}

.thumb {
  height: 110px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200, 116, 69, 0.25), rgba(185, 201, 228, 0.35));
  border: 1px solid rgba(27, 26, 25, 0.08);
}

.thumb.small {
  height: 70px;
}

.thumb.wide {
  height: 120px;
}

.gradient.peach {
  background: linear-gradient(135deg, rgba(200, 116, 69, 0.35), rgba(255, 255, 255, 0.6));
}

.gradient.mint {
  background: linear-gradient(135deg, rgba(138, 183, 168, 0.35), rgba(255, 255, 255, 0.6));
}

.gradient.sky {
  background: linear-gradient(135deg, rgba(185, 201, 228, 0.45), rgba(255, 255, 255, 0.6));
}

.gradient.sunset {
  background: linear-gradient(135deg, rgba(239, 199, 150, 0.6), rgba(200, 116, 69, 0.3));
}

.floating-chip {
  position: absolute;
  bottom: -12px;
  right: 20px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  animation: float 3s ease-in-out infinite;
}

.section-title {
  margin: 80px 0 30px;
}

.section-title h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.collection-grid article {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(27, 26, 25, 0.08);
  display: grid;
  gap: 12px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 70px;
}

.benefit-card {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.benefit-card.dark {
  background: var(--ink);
  color: var(--white);
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-tags span {
  border: 1px solid rgba(27, 26, 25, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: rgba(27, 26, 25, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.benefit-card.dark .benefit-tags span {
  border-color: rgba(255, 255, 255, 0.3);
}

.app-preview {
  display: flex;
  gap: 12px;
}

.phone {
  flex: 1;
  height: 150px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.logo-pill {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 12px;
  border-radius: 999px;
  text-align: center;
  border: 1px solid rgba(27, 26, 25, 0.08);
  font-size: 0.85rem;
}

.store-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(27, 26, 25, 0.08);
  display: grid;
  gap: 12px;
}

.store-card span {
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.events {
  margin-top: 70px;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-item {
  background: var(--white);
  border-radius: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(27, 26, 25, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.newsletter {
  margin-top: 90px;
  background: linear-gradient(120deg, rgba(185, 201, 228, 0.4), rgba(200, 116, 69, 0.15));
  padding: 40px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: center;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(27, 26, 25, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.site-footer {
  padding: 40px 8vw 60px;
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(27, 26, 25, 0.12);
  background: rgba(244, 241, 236, 0.9);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.copyright {
  color: rgba(27, 26, 25, 0.6);
  font-size: 0.85rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes floatIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 8vw;
    right: 8vw;
    flex-direction: column;
    gap: 14px;
    background: var(--white);
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 20px 6vw;
  }

  main {
    padding: 0 6vw 70px;
  }

  .hero {
    padding-top: 60px;
  }

  .event-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
