:root {
  --black: #050305;
  --ink: #10090c;
  --panel: rgba(255, 246, 232, 0.075);
  --panel-strong: rgba(255, 246, 232, 0.13);
  --cream: #fff3df;
  --muted: #cbb79d;
  --gold: #ffbd4a;
  --acid: #dfff00;
  --orange: #ff5b12;
  --red: #e11d1d;
  --line: rgba(255, 243, 223, 0.18);
  --shadow: rgba(0, 0, 0, 0.48);
  --space: clamp(18px, 5vw, 72px);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 91, 18, 0.22), transparent 26rem),
    radial-gradient(circle at 86% 20%, rgba(223, 255, 0, 0.13), transparent 24rem),
    radial-gradient(circle at 42% 80%, rgba(225, 29, 29, 0.15), transparent 28rem),
    var(--black);
  color: var(--cream);
  font-family: var(--body);
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

img {
  height: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--acid);
  color: var(--black);
  font-weight: 900;
}

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

.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px var(--space);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 3, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.header-actions,
.hero-actions,
.shop-tools,
.size-options,
.cart-summary {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  min-height: 34px;
  padding: 0 8px;
  background: var(--cream);
  color: var(--black);
  transform: rotate(-2deg);
}

.desktop-nav {
  gap: 26px;
  color: rgba(255, 243, 223, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.cart-button,
.menu-toggle,
.icon-close,
.primary-action,
.secondary-action,
.product-card button,
.qty-button {
  border: 1px solid var(--line);
  color: var(--cream);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-button,
.menu-toggle,
.icon-close {
  background: rgba(255, 246, 232, 0.08);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
}

.cart-button span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px var(--space) 82px;
}

.hero-video,
.hero-depth {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.2) contrast(1.14);
}

.hero-depth {
  background:
    linear-gradient(90deg, rgba(5, 3, 5, 0.94), rgba(5, 3, 5, 0.52) 48%, rgba(5, 3, 5, 0.1)),
    linear-gradient(0deg, rgba(5, 3, 5, 0.86), rgba(5, 3, 5, 0.05) 62%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.micro {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.82;
}

h1 span {
  display: block;
}

.hero-copy > p:not(.micro) {
  max-width: 620px;
  color: rgba(255, 243, 223, 0.82);
  font-size: clamp(1rem, 2vw, 1.26rem);
  line-height: 1.62;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.checkout-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
}

.primary-action,
.checkout-link {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.checkout-link {
  width: 100%;
}

.secondary-action {
  background: rgba(255, 246, 232, 0.06);
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  right: var(--space);
  bottom: 32px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--gold);
  color: var(--black);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 14px 26px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-pad {
  padding: clamp(72px, 10vw, 132px) var(--space);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
  margin-bottom: 30px;
}

.section-head h2,
.story-copy h2,
.suner-copy h2,
.insta-copy h2,
.newsletter h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6.5vw, 7rem);
  line-height: 0.9;
}

.section-head p,
.story-copy p,
.suner-copy p,
.insta-copy p,
.newsletter-card > p {
  color: var(--muted);
  line-height: 1.7;
}

.shop-tools {
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.shop-tools label {
  display: grid;
  gap: 7px;
}

.shop-tools span,
.newsletter-form label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-tools input,
.shop-tools select,
.newsletter-form input {
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 246, 232, 0.07);
  color: var(--cream);
  padding: 0 14px;
  border-radius: 0;
}

.shop-tools input {
  width: min(420px, calc(100vw - 36px));
}

.shop-tools select option {
  background: var(--black);
}

.load-error {
  border: 1px solid rgba(255, 91, 18, 0.5);
  background: rgba(255, 91, 18, 0.12);
  padding: 14px;
}

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

.product-card {
  position: relative;
  display: grid;
  min-height: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 246, 232, 0.09), rgba(255, 246, 232, 0.035));
  overflow: hidden;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 0.92;
  background: radial-gradient(circle, rgba(255, 189, 74, 0.18), transparent 56%);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: transform 280ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.055) rotate(-1deg);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  background: var(--cream);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-body h3 {
  margin: 0;
  font-size: 1.16rem;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.product-price {
  color: var(--gold);
  font-weight: 950;
}

.size-options {
  gap: 8px;
  flex-wrap: wrap;
}

.size-option {
  min-width: 42px;
  min-height: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 246, 232, 0.06);
  color: var(--cream);
  font-weight: 900;
}

.size-option.is-selected {
  background: var(--acid);
  color: var(--black);
  border-color: var(--acid);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.card-actions button {
  min-height: 44px;
  background: rgba(255, 246, 232, 0.07);
}

.add-button {
  border-color: var(--gold);
  background: var(--gold) !important;
  color: var(--black) !important;
}

.story-section,
.suner-section,
.instagram {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.story-section {
  background:
    linear-gradient(135deg, rgba(255, 91, 18, 0.12), rgba(223, 255, 0, 0.04)),
    rgba(255, 246, 232, 0.035);
}

.story-art {
  min-height: 580px;
  border: 1px solid var(--line);
  background: #12080a;
  overflow: hidden;
}

.story-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.72;
}

.suner-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.85fr);
}

.suner-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 189, 74, 0.36);
  background: radial-gradient(circle, rgba(255, 189, 74, 0.28), rgba(255, 91, 18, 0.06) 42%, transparent 68%);
  overflow: hidden;
}

.suner-frame::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(223, 255, 0, 0.28);
  transform: rotate(7deg);
  pointer-events: none;
}

.suner-frame img {
  width: 100%;
  object-fit: contain;
  padding: clamp(12px, 4vw, 42px);
  filter: drop-shadow(0 22px 60px rgba(0, 0, 0, 0.62));
}

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

.values article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.values span {
  color: var(--gold);
  font-weight: 950;
}

.values h3 {
  margin: 44px 0 12px;
  font-size: 1.2rem;
}

.values p {
  color: var(--muted);
  line-height: 1.6;
}

.instagram {
  background: #080506;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--panel);
}

.newsletter {
  background:
    radial-gradient(circle at 20% 20%, rgba(223, 255, 0, 0.12), transparent 22rem),
    linear-gradient(135deg, rgba(255, 91, 18, 0.16), rgba(255, 189, 74, 0.05));
}

.newsletter-card {
  max-width: 880px;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  max-width: 660px;
  margin-top: 26px;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form small,
.newsletter-form p {
  color: var(--muted);
  line-height: 1.5;
}

.newsletter-form p {
  min-height: 1.4em;
  margin: 0;
  font-weight: 800;
}

.newsletter-form p.is-success {
  color: var(--acid);
}

.newsletter-form p.is-error {
  color: #ff8b62;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  padding: 54px var(--space) 28px;
  border-top: 1px solid var(--line);
  background: #030203;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  font-size: 0.86rem;
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 91, 18, 0.16), transparent 24rem),
    radial-gradient(circle at 84% 16%, rgba(255, 189, 74, 0.1), transparent 22rem),
    var(--black);
}

.legal-main {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 76px;
}

.legal-main h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
}

.legal-main h2 {
  margin: 42px 0 12px;
  font-family: var(--body);
  font-size: 1.24rem;
  letter-spacing: 0;
  text-transform: none;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-main a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-card,
.legal-warning {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(18px, 4vw, 28px);
}

.legal-warning {
  border-color: rgba(255, 91, 18, 0.5);
  background: rgba(255, 91, 18, 0.1);
}

.placeholder {
  display: inline-block;
  padding: 2px 7px;
  background: rgba(223, 255, 0, 0.16);
  color: var(--acid);
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 18px;
  padding: 24px;
  border-left: 1px solid var(--line);
  background: rgba(8, 5, 6, 0.97);
  box-shadow: -28px 0 90px var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
  backdrop-filter: blur(18px);
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.drawer-head h2 {
  margin: 0;
  font-size: 2rem;
}

.icon-close {
  min-height: 40px;
  padding: 0 12px;
}

.cart-lines {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
}

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-line-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.qty-button {
  width: 30px;
  height: 30px;
  background: rgba(255, 246, 232, 0.08);
}

.remove-button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #ff8b62;
  font-weight: 800;
}

.cart-summary {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.cart-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.page-scrim {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.cart-open .page-scrim,
body.menu-open .page-scrim {
  opacity: 1;
  pointer-events: auto;
}

.quick-view {
  width: min(920px, calc(100vw - 28px));
  border: 1px solid var(--line);
  background: #090506;
  color: var(--cream);
  padding: 0;
}

.quick-view::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.quick-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.85fr);
  gap: 26px;
  align-items: center;
  padding: clamp(20px, 4vw, 42px);
}

.quick-layout figure {
  margin: 0;
  background: radial-gradient(circle, rgba(255, 189, 74, 0.18), transparent 60%);
}

.quick-layout img {
  width: 100%;
  object-fit: contain;
}

.quick-price {
  display: block;
  margin: 18px 0;
  color: var(--gold);
  font-size: 1.4rem;
}

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

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

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 1024px) {
  .product-grid,
  .values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 70;
    top: 78px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(5, 3, 5, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .mobile-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 243, 223, 0.1);
    font-weight: 900;
    text-transform: uppercase;
  }

  .section-head,
  .story-section,
  .suner-section,
  .instagram,
  .site-footer,
  .quick-layout {
    grid-template-columns: 1fr;
  }

  .story-art {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 92svh;
    padding-bottom: 58px;
  }

  .cart-button {
    min-width: 42px;
    padding: 0 10px;
  }

  .cart-button strong {
    display: none;
  }

  .product-grid,
  .values,
  .insta-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form div,
  .card-actions {
    grid-template-columns: 1fr;
  }

  .scroll-cue {
    display: none;
  }
}
