:root {
  --bg: #f7f7f4;
  --panel: #ffffff;
  --panel2: #f0f1ed;
  --text: #151815;
  --muted: #666c68;
  --line: rgba(21, 24, 21, 0.12);
  --green: #178f4d;
  --lime: #b7f019;
  --teal: #11c6af;
  --purple: #533098;
  --night: #171a18;
  --soft-purple: #f3eefb;
  --radius: 18px;
  --max: 1280px;
  --shadow: 0 24px 65px rgba(22, 30, 25, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(183, 240, 25, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, #fff 56%, var(--bg) 100%);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

body.locked {
  overflow: hidden;
}

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

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

.skip {
  position: fixed;
  top: -70px;
  left: 18px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}

.skip:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 252, 0.92);
  border-bottom: 1px solid rgba(21, 24, 21, 0.1);
  box-shadow: 0 10px 30px rgba(22, 30, 25, 0.035);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--max);
  height: 82px;
  margin: auto;
  padding: 0 24px;
}

.brand {
  margin-right: auto;
}

.brand img {
  width: 136px;
  max-height: 66px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #343936;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.sister-link,
.header-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(29, 145, 80, 0.5);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, #28b969 0%, var(--green) 62%, #0f6b3b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -2px 0 rgba(0, 0, 0, 0.16),
    0 4px 0 #0b5b32,
    0 8px 18px rgba(23, 143, 77, 0.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sister-link::before,
.header-action::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #d5ffe7;
  box-shadow: 0 0 10px rgba(213, 255, 231, 0.8);
}

.sister-link:hover,
.header-action:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.menu-button {
  display: none;
  padding: 9px 12px;
  border: 1px solid rgba(21, 24, 21, 0.18);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  font: 600 12px "Poppins";
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 82px);
  margin: auto;
  padding: 58px 24px 70px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #202420;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 0 9px 3px 0;
  background: var(--green);
}

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

h1 {
  margin-bottom: 22px;
  color: #111411;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: #151815;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero-promise {
  margin-bottom: 8px;
  color: #242824;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border: 0;
  border-radius: 10px;
  font: 700 13px "Poppins";
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button.primary {
  color: #fff;
  background: #171a18;
  box-shadow: 0 10px 25px rgba(17, 20, 18, 0.12);
}

.button.secondary {
  color: #171a18;
  background: #fff;
  border: 1px solid rgba(21, 24, 21, 0.28);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 42px;
  color: #454b47;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-row span {
  padding: 0 22px;
  border-right: 1px solid rgba(21, 24, 21, 0.14);
}

.trust-row span:first-child {
  padding-left: 0;
  color: var(--green);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 21, 0.1);
  border-radius: 4px 4px 110px 4px;
  background: #eeefeb;
  box-shadow: 0 32px 80px rgba(22, 30, 25, 0.1);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.72);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(246, 247, 243, 0.86)),
    linear-gradient(120deg, rgba(183, 240, 25, 0.2), rgba(83, 48, 152, 0.18));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2px 2px 90px 2px;
}

.logo-badge {
  position: absolute;
  top: 42px;
  left: 26px;
  right: 26px;
  z-index: 3;
  display: flex;
  justify-content: center;
  animation: jeazyFloat 5.5s ease-in-out infinite;
}

.logo-badge img {
  width: min(380px, 88%);
  filter: drop-shadow(0 0 28px rgba(183, 240, 25, 0.28));
}

.product-scene {
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
  width: min(340px, calc(100% - 56px));
  padding: 14px 16px;
  border-left: 2px solid var(--lime);
  color: #fff;
  text-align: right;
  background: linear-gradient(90deg, rgba(23, 26, 24, 0), rgba(23, 26, 24, 0.58));
  backdrop-filter: blur(8px);
}

.product-scene span,
.image-feature span,
.product-info span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-scene span {
  color: #fff;
  letter-spacing: 0.08em;
}

.ecosystem-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 26px;
  gap: 12px;
}

.ecosystem-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(22, 30, 25, 0.045);
}

.ecosystem-item span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecosystem-item strong {
  text-align: right;
}

.ecosystem-item.active {
  border-color: rgba(83, 48, 152, 0.25);
  background: linear-gradient(135deg, #fff, var(--soft-purple));
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: auto;
  padding: 26px 24px 0;
}

.trust-band div,
.trust-band .trust-link,
.product-card,
.contact-card,
.membership-card {
  border: 1px solid rgba(21, 24, 21, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(22, 30, 25, 0.045);
}

.trust-band div,
.trust-band .trust-link {
  min-height: 170px;
  padding: 28px;
}

.trust-band .trust-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.trust-band .trust-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(22, 30, 25, 0.08);
}

.trust-band div > span:first-child,
.trust-band .trust-link > span:first-child {
  display: block;
  margin-bottom: 48px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
  color: #151815;
  font-size: 1.12rem;
}

.trust-band span,
.product-info p,
.feature-band p,
.vibe-copy p,
.sister-section p,
.contact-copy p,
.site-footer p,
.site-footer a,
.site-footer span,
.section-heading > p {
  color: var(--muted);
}

.image-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 18px;
  max-width: var(--max);
  margin: auto;
  padding: 28px 24px 0;
}

.image-feature {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
  box-shadow: var(--shadow);
}

.image-feature.wide {
  min-height: 420px;
}

.image-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
}

.image-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(17, 20, 18, 0.86));
}

.image-feature figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}

.image-feature strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.section {
  max-width: var(--max);
  margin: auto;
  padding: 110px 24px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading > p {
  max-width: 390px;
  margin-bottom: 0;
  font-size: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: #fff;
  font: 700 12px "Poppins";
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.filter-button.active {
  color: #fff;
  background: var(--purple);
  border-color: var(--purple);
}

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

.product-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(22, 30, 25, 0.08);
}

.product-card.hidden {
  display: none;
}

.product-art {
  position: relative;
  min-height: 230px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 30%, rgba(183, 240, 25, 0.18), transparent 42%),
    #f0f1ed;
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-svg {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card:hover .product-art img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.product-card:hover .product-svg {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  display: block;
}

.art-papers::before {
  width: 58%;
  height: 84px;
  left: 22%;
  top: 70px;
  border-radius: 12px;
  background: linear-gradient(100deg, #fff 0 76%, var(--lime) 76% 100%);
  box-shadow: 0 18px 24px rgba(36, 21, 58, 0.16);
  transform: rotate(-13deg);
}

.art-papers::after {
  width: 44%;
  height: 14px;
  left: 28%;
  top: 120px;
  border-radius: 999px;
  background: var(--teal);
  transform: rotate(-13deg);
}

.art-grinders::before {
  width: 142px;
  height: 142px;
  left: calc(50% - 71px);
  top: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--purple), var(--teal));
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.18), 0 20px 30px rgba(36, 21, 58, 0.18);
}

.art-grinders::after {
  width: 94px;
  height: 20px;
  left: calc(50% - 47px);
  top: 102px;
  border-radius: 999px;
  background: var(--lime);
}

.art-trays::before {
  width: 70%;
  height: 110px;
  left: 15%;
  top: 64px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--teal), var(--purple));
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.2), 0 22px 34px rgba(36, 21, 58, 0.2);
  transform: perspective(360px) rotateX(20deg);
}

.art-trays::after {
  width: 44px;
  height: 44px;
  right: 22%;
  top: 96px;
  border-radius: 50%;
  background: var(--lime);
}

.art-lighters::before {
  width: 70px;
  height: 126px;
  left: calc(50% - 35px);
  top: 62px;
  border-radius: 8px 8px 16px 16px;
  background: linear-gradient(180deg, var(--lime), var(--teal));
  box-shadow: 0 22px 30px rgba(36, 21, 58, 0.2);
}

.art-lighters::after {
  width: 42px;
  height: 36px;
  left: calc(50% - 21px);
  top: 42px;
  border-radius: 12px 12px 4px 4px;
  background: var(--purple);
}

.art-filters::before {
  width: 64%;
  height: 34px;
  left: 18%;
  top: 98px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #fff 0 24px, var(--lime) 24px 34px);
  box-shadow: 0 18px 26px rgba(36, 21, 58, 0.14);
  transform: rotate(8deg);
}

.art-filters::after {
  width: 50%;
  height: 34px;
  left: 26%;
  top: 126px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 18px, #fff 18px 28px);
  transform: rotate(-8deg);
}

.art-glass::before {
  width: 92px;
  height: 132px;
  left: calc(50% - 46px);
  top: 50px;
  border: 14px solid var(--teal);
  border-top-width: 24px;
  border-radius: 46px 46px 20px 20px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 20px 28px rgba(36, 21, 58, 0.16);
}

.art-glass::after {
  width: 72px;
  height: 16px;
  left: calc(50% - 36px);
  top: 176px;
  border-radius: 999px;
  background: var(--purple);
}

.product-info {
  padding: 24px;
}

.product-info span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--purple);
}

.product-info p {
  margin-bottom: 0;
  font-size: 13px;
}

.cbd-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding-top: 40px;
}

.cbd-visual {
  overflow: hidden;
  border: 1px solid rgba(21, 24, 21, 0.1);
  border-radius: 24px;
  background: #f0f1ed;
  box-shadow: var(--shadow);
}

.cbd-visual svg {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
}

.cbd-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 15px;
}

.cbd-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.cbd-benefits article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(21, 24, 21, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(22, 30, 25, 0.045);
}

.cbd-benefits span {
  display: block;
  margin-bottom: 48px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cbd-benefits strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.08rem;
}

.cbd-benefits p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.cbd-note {
  margin-top: 18px;
  color: var(--green) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  max-width: none;
  padding: clamp(76px, 9vw, 120px) max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: #fff;
  background:
    radial-gradient(circle at 85% 50%, rgba(183, 240, 25, 0.16), transparent 30%),
    radial-gradient(circle at 72% 50%, rgba(17, 198, 175, 0.12), transparent 20%),
    linear-gradient(110deg, #24153a, #171a18);
}

.feature-band h2 {
  color: #fff;
}

.feature-band .eyebrow,
.feature-band p {
  color: var(--lime);
}

.feature-band p {
  margin-bottom: 0;
  font-size: 1rem;
}

.sister-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.sister-section p {
  max-width: 640px;
  margin-top: 18px;
}

.sister-card {
  display: grid;
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(21, 24, 21, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0, rgba(23, 143, 77, 0.13), transparent 42%),
    #fff;
  box-shadow: var(--shadow);
}

.sister-card span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sister-card strong {
  align-self: center;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.sister-card em {
  align-self: end;
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

.vibe-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.vibe-copy p {
  max-width: 620px;
  margin-top: 20px;
  font-size: 15px;
}

.vibe-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}

.vibe-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(36, 21, 58, 0.12);
}

.vibe-gallery img:first-child {
  grid-row: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.contact-copy p {
  max-width: 640px;
  font-size: 15px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
}

.contact-link::after {
  content: "->";
}

.whatsapp {
  background: var(--green);
}

.instagram {
  background: var(--purple);
}

.map {
  background: var(--night);
}

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 45px;
  max-width: var(--max);
  margin: auto;
  padding: 65px 24px 25px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 135px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 8px 0;
  font-size: 12px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(245, 246, 242, 0.9);
  backdrop-filter: blur(14px);
}

.age-gate.show {
  display: grid;
}

.age-card {
  width: min(470px, 100%);
  padding: 42px;
  text-align: center;
  border: 1px solid rgba(21, 24, 21, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(20, 28, 23, 0.16);
}

.age-card img {
  width: 190px;
  margin: 0 auto 22px;
}

.age-card h2 {
  font-size: 32px;
}

.age-card p:not(.eyebrow) {
  color: var(--muted);
}

.age-card .button {
  width: 100%;
  margin-top: 15px;
}

.age-no {
  margin-top: 14px;
  border: 0;
  color: var(--muted);
  background: none;
  text-decoration: underline;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes jeazyFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px) scale(1.012);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-badge,
  .reveal {
    animation: none;
    transition: none;
  }
}

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

  .nav-links.open {
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(21, 24, 21, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 252, 0.98);
    box-shadow: 0 20px 50px rgba(22, 30, 25, 0.14);
    backdrop-filter: blur(18px);
  }

  .nav-links.open a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 9px;
    color: #272c28;
  }

  .nav-links.open .sister-link {
    justify-content: flex-start;
    color: #fff;
  }

  .menu-button {
    display: block;
  }

  .header-action {
    display: none;
  }

  .hero,
  .feature-band,
  .cbd-section,
  .sister-section,
  .vibe-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 530px;
  }

  .trust-band,
  .cbd-benefits,
  .product-grid,
  .image-strip {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 16px;
  }
}

@media (max-width: 680px) {
  .nav-inner {
    height: 74px;
    padding: 0 18px;
  }

  .brand img {
    width: 118px;
  }

  .hero,
  .section,
  .trust-band,
  .image-strip,
  .ecosystem-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-visual {
    min-height: 520px;
    border-radius: 4px 4px 76px 4px;
  }

  .product-scene {
    right: 18px;
    bottom: 24px;
    width: min(300px, calc(100% - 36px));
    padding: 12px 14px;
    gap: 7px 10px;
  }

  .ecosystem-band,
  .trust-band,
  .cbd-benefits,
  .product-grid,
  .image-strip,
  .vibe-gallery,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .ecosystem-item strong {
    text-align: left;
  }

  .trust-row {
    gap: 12px;
  }

  .trust-row span {
    padding: 0;
    border: 0;
  }

  .image-feature,
  .image-feature.wide {
    min-height: 330px;
  }

  .cbd-visual svg {
    min-height: 340px;
  }

  .vibe-gallery {
    grid-template-rows: repeat(3, 230px);
  }

  .vibe-gallery img:first-child {
    grid-row: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .age-card {
    padding: 30px 22px;
  }
}
