@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --bg: #07080b;
  --bg-soft: #0d1016;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.08);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --text: #f7f2ea;
  --text-muted: #b2aaa1;
  --line: rgba(247, 242, 234, 0.12);
  --gold: #d4b16a;
  --accent: #54c7b6;
  --danger: #ef5b5b;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.24);
  --radius: 20px;
  --container: min(1180px, calc(100% - 40px));
  color-scheme: dark;
}

html[data-theme='light'] {
  --bg: #f4f2ee;
  --bg-soft: #ffffff;
  --surface: rgba(17, 24, 39, 0.07);
  --surface-strong: rgba(17, 24, 39, 0.12);
  --panel: rgba(255, 255, 255, 0.82);
  --panel-soft: rgba(17, 24, 39, 0.04);
  --text: #111517;
  --text-muted: #5b6471;
  --line: rgba(17, 24, 39, 0.12);
  --gold: #a18247;
  --accent: #2b8a85;
  --danger: #bb3e3e;
  --shadow: 0 26px 70px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 14px 30px rgba(17, 24, 39, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: 'cv11' 1, 'ss01' 1;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 16%, rgba(212, 177, 106, 0.18), transparent 24%),
    radial-gradient(circle at 84% 8%, rgba(84, 199, 182, 0.12), transparent 28%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06), transparent 28%);
  pointer-events: none;
}

html[data-theme='light'] body::before {
  background:
    radial-gradient(circle at 16% 16%, rgba(161, 129, 73, 0.08), transparent 22%),
    radial-gradient(circle at 84% 8%, rgba(43, 138, 133, 0.08), transparent 25%),
    radial-gradient(circle at 40% 80%, rgba(17, 24, 39, 0.05), transparent 28%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section + .section {
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 860px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

p {
  color: var(--text-muted);
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 11, 0.82);
  backdrop-filter: blur(22px);
}

html[data-theme='light'] .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 24, 39, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand__logo {
  display: block;
  max-height: 42px;
  width: auto;
}

.brand__mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 177, 106, 0.7);
  background: linear-gradient(135deg, var(--gold), rgba(255, 255, 255, 0.1));
  box-shadow: 0 0 26px rgba(212, 177, 106, 0.2);
}

.brand__mark::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--bg);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav__menu a {
  position: relative;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  color: var(--text);
}

.nav__menu a:hover::after,
.nav__menu a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.theme-toggle,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

html[data-theme='light'] .theme-toggle {
  background: rgba(17, 24, 39, 0.08);
  border-color: rgba(17, 24, 39, 0.14);
}

.theme-toggle:hover,
.theme-toggle:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button {
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.button--primary {
  background: linear-gradient(135deg, #f2d274, var(--gold) 58%, #d4b16a);
  color: #12100a;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button--ghost {
  background: transparent;
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: transparent;
  color: var(--text);
}

.nav__toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 8%;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(212, 177, 106, 0.18), transparent 52%);
  transform: rotate(18deg);
}

.hero::after {
  content: 'ROVE';
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(9rem, 25vw, 24rem);
  font-weight: 900;
  line-height: 1;
}

html[data-theme='light'] .hero::after {
  color: rgba(17, 24, 39, 0.05);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__content h1 {
  margin-bottom: 24px;
}

.hero__slogan {
  margin-bottom: 32px;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  color: var(--text-muted);
}

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

.hero__visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  isolation: isolate;
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 5% -4% 8%;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 40%);
  filter: blur(18px);
}

.hero__visual img {
  position: relative;
  z-index: 2;
  width: min(460px, 92%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: #f7f7f7;
  filter: drop-shadow(0 54px 72px rgba(0, 0, 0, 0.46));
}

.smoke {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.smoke__wisp {
  position: absolute;
  bottom: 18%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.2), transparent 35%),
    radial-gradient(circle at 65% 35%, rgba(84, 199, 182, 0.12), transparent 34%),
    radial-gradient(circle at 35% 62%, rgba(212, 177, 106, 0.08), transparent 36%);
  filter: blur(24px);
  opacity: 0;
  transform: translate(-50%, 0) scale(0.58) rotate(0deg);
  animation: smokeRise 9s ease-in-out infinite;
  mix-blend-mode: screen;
}

.smoke__wisp--one {
  margin-left: -92px;
  animation-delay: 0s;
}

.smoke__wisp--two {
  width: 260px;
  height: 260px;
  margin-left: 22px;
  animation-duration: 10s;
  animation-delay: 2.7s;
}

.smoke__wisp--three {
  width: 180px;
  height: 180px;
  margin-left: 112px;
  animation-duration: 9.4s;
  animation-delay: 5.3s;
}

@keyframes smokeRise {
  0% {
    opacity: 0;
    transform: translate(-50%, 32px) scale(0.5) rotate(0deg);
  }

  18% {
    opacity: 0.4;
  }

  48% {
    opacity: 0.25;
    transform: translate(calc(-50% - 24px), -112px) scale(0.93) rotate(18deg);
  }

  78% {
    opacity: 0.14;
    transform: translate(calc(-50% + 28px), -220px) scale(1.25) rotate(34deg);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + 52px), -310px) scale(1.52) rotate(44deg);
  }
}

.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
}

html[data-theme='light'] .brand-strip {
  background: rgba(17, 24, 39, 0.03);
}

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

.brand-strip__grid div {
  min-height: 110px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.brand-strip__grid div:first-child {
  border-left: 1px solid var(--line);
}

.brand-strip strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.45rem, 2.25vw, 2.2rem);
  font-weight: 800;
}

.brand-strip span {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.section__intro {
  max-width: 760px;
}

.section__intro--wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 34px;
  align-items: end;
}

.section__intro--wide > p {
  margin-bottom: 24px;
}

.collection-grid,
.card-grid,
.feature-grid {
  display: grid;
  gap: 22px;
}

.collection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.collection-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.collection-card::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 234, 0.12);
  background: radial-gradient(circle, rgba(212, 177, 106, 0.2) 0 28%, transparent 30%);
}

.collection-card:hover,
.collection-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(212, 177, 106, 0.34);
}

.collection-card span {
  width: fit-content;
  margin-bottom: auto;
  padding: 10px 12px;
  border: 1px solid rgba(212, 177, 106, 0.24);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.collection-card h3 {
  margin: 32px 0 10px;
  font-size: 1.25rem;
}

.collection-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.bundle {
  position: relative;
}

.bundle::before {
  content: '';
  position: absolute;
  inset: 10% 0 auto;
  height: 52%;
  background: radial-gradient(circle at 70% 10%, rgba(212, 177, 106, 0.08), transparent 42%);
  pointer-events: none;
}

.bundle__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.bundle__media,
.bundle__content,
.safety__panel,
.feature,
.flavor-card,
.contact__details,
.age-gate__panel,
.site-blocked > div {
  border-radius: var(--radius);
}

.bundle__media {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.bundle__media img {
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  background: #f3f3f3;
}

.bundle__content {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.bundle__content > p {
  max-width: 720px;
}

.bundle-points {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.bundle-points article {
  padding: 22px;
  border: 1px solid rgba(247, 242, 234, 0.1);
  background: var(--surface);
}

.bundle-points h3 {
  margin-bottom: 8px;
  color: var(--text);
}

.bundle-points p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.catalog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.catalog-search {
  flex: 1 1 320px;
}

.catalog-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(247, 242, 234, 0.13);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.catalog-search input::placeholder {
  color: var(--text-muted);
}

.catalog-search input:focus {
  border-color: rgba(212, 177, 106, 0.55);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(247, 242, 234, 0.12);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: rgba(212, 177, 106, 0.42);
  background: rgba(212, 177, 106, 0.14);
  color: var(--text);
}

.about__copy {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.card-grid,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.flavor-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.flavor-card.is-hidden {
  display: none;
}

.flavor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 177, 106, 0.34);
  box-shadow: var(--shadow);
}

.flavor-card img {
  width: 100%;
  aspect-ratio: 100 / 82;
  object-fit: contain;
  padding: 20px;
  background: #f7f7f7;
}

.flavor-card div {
  padding: 26px;
  border-top: 1px solid var(--line);
}

.flavor-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.flavor-card p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.flavor-card span {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(84, 199, 182, 0.3);
  border-radius: 999px;
  background: rgba(84, 199, 182, 0.1);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature {
  min-height: 240px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 177, 106, 0.42);
  border-radius: 16px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
}

.safety__panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 48px;
  border: 1px solid rgba(239, 91, 91, 0.28);
  background: linear-gradient(135deg, rgba(239, 91, 91, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.notice-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}

.notice-list li::before {
  content: '';
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--danger);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: start;
}

.contact__details {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact__details a {
  color: var(--text);
  font-weight: 700;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
}

.socials a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: rgba(0, 0, 0, 0.14);
}

html[data-theme='light'] .site-footer {
  background: rgba(255, 255, 255, 0.82);
}

.footer__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.footer__grid p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}



.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .section {
    padding: 74px 0;
  }

  .hero__grid,
  .split,
  .contact__grid,
  .bundle__grid,
  .safety__panel,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .bundle__content {
    padding: 32px;
  }

  .section__intro--wide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section__intro--wide > p {
    margin-bottom: 0;
  }

  .catalog-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .about__copy {
    padding-left: 0;
    border-left: 0;
  }

  .hero__visual {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: absolute;
    top: 78px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 8, 11, 0.94);
    box-shadow: var(--shadow);
  }

  html[data-theme='light'] .nav__menu {
    background: rgba(255, 255, 255, 0.96);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__menu a {
    padding: 14px 0;
  }

  .hero {
    padding-top: 60px;
    min-height: auto;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__visual img {
    width: min(360px, 92%);
  }

  .brand-strip__grid,
  .collection-grid,
  .card-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 220px;
  }

  .bundle__content,
  .safety__panel,
  .age-gate__panel,
  .site-blocked > div,
  .contact__details {
    padding: 28px;
  }

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

  .button,
  .theme-toggle {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
