* {
  box-sizing: border-box;
}

:root {
  --navy: #09031f;
  --navy-2: #120a35;
  --navy-3: #1d1647;
  --cream: #fffaf0;
  --paper: #ffffff;
  --muted: #b9b4c9;
  --text: #181227;
  --text-soft: #6e687b;
  --yellow: #ffb000;
  --yellow-2: #ffd166;
  --orange: #f58a07;
  --line: rgba(255, 255, 255, 0.14);
  --paper-line: #ece7df;
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-paper: 0 24px 60px rgba(13, 7, 37, 0.13);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 176, 0, 0.18), transparent 26%),
    radial-gradient(circle at 86% 0%, rgba(126, 93, 255, 0.18), transparent 28%),
    linear-gradient(180deg, var(--navy) 0%, #0c0629 58%, #fff7e8 58%, #fff7e8 100%);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.28) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,176,0,0.22) 1px, transparent 1px);
  background-size: 62px 62px, 104px 104px;
  background-position: 0 0, 24px 42px;
}

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

button,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.announcement {
  min-height: 36px;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 3, 31, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(255, 176, 0, 0.20);
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.16em;
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 900;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--yellow);
  transition: width 0.2s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 80px 0 84px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8.8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4.5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h3 {
  margin-bottom: 8px;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(255, 176, 0, 0.24);
}

.btn.secondary {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border: 1px solid var(--line);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--paper-line);
}

.btn.full {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 780px;
}

.hero-points div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
  font-size: 1.02rem;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.logo-card {
  position: relative;
  width: min(470px, 92%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 54px;
  overflow: hidden;
  background: #070119;
  box-shadow: var(--shadow-dark);
  transform: rotate(-2deg);
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 42px;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 176, 0, 0.32);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-color: rgba(255,255,255,0.16);
}

.floating-tag {
  position: absolute;
  z-index: 2;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  box-shadow: var(--shadow-dark);
  font-weight: 950;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.tag-one {
  top: 82px;
  right: 28px;
}

.tag-two {
  left: 8px;
  bottom: 86px;
  background: var(--yellow);
}

.section {
  position: relative;
  padding: 72px 0;
}

.collection-intro {
  padding-top: 72px;
  color: var(--cream);
  background: transparent;
  border-top: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: end;
}

.collection-intro .eyebrow,
.section .eyebrow,
.size-section .eyebrow {
  color: var(--orange);
}

.collection-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.collection-intro h2,
#produk .section-heading h2 {
  color: var(--cream);
}

.collection-intro .eyebrow,
#produk .section-heading .eyebrow {
  color: var(--yellow);
}

.section-heading {
  color: var(--cream);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 950;
}

select {
  border: 1px solid var(--paper-line);
  background: var(--paper);
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--text);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(13, 7, 37, 0.08);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--paper);
  color: var(--text);
  box-shadow: var(--shadow-paper);
  border: 1px solid rgba(10, 6, 28, 0.08);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1.02;
  background: #efe9dd;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(9, 3, 31, 0.88);
  color: var(--cream);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.16rem;
  line-height: 1.2;
}

.product-info p {
  color: var(--text-soft);
  min-height: 48px;
  font-size: 0.94rem;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 950;
}

.size-select {
  width: 96px;
  padding: 9px 10px;
}

.story {
  background: var(--navy);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.story-card {
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-dark);
}

.story-card.dark {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 176, 0, 0.19), transparent 34%),
    var(--navy-2);
}

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

.story-card.light {
  background: var(--cream);
  color: var(--text);
  border: 1px solid rgba(255, 176, 0, 0.22);
}

.story-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.story-card li + li {
  margin-top: 10px;
}

.size-section {
  color: var(--text);
}

.table-wrap {
  overflow: auto;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-paper);
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
  min-width: 640px;
}

th,
td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--paper-line);
}

th {
  background: #f8f3ea;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

tr:last-child td {
  border-bottom: 0;
}

.contact {
  padding-bottom: 98px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,176,0,0.2), transparent 28%),
    var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-paper);
}

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

code {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 2px 7px;
  background: rgba(255,255,255,0.1);
  color: var(--yellow-2);
}

.cart-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-dark);
  font-weight: 950;
  cursor: pointer;
}

.cart-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(440px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  background: var(--paper);
  color: var(--text);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.22);
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--paper-line);
}

.cart-header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.cart-header button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f2ecdf;
  color: var(--text);
  cursor: pointer;
  font-size: 1.6rem;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-line);
}

.cart-thumb {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  background: #f2ecdf;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item h3 {
  font-size: 0.96rem;
  margin-bottom: 3px;
}

.cart-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  background: white;
  color: var(--text);
  cursor: pointer;
  font-weight: 950;
}

.cart-footer {
  padding: 20px;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--paper-line);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.empty-state {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-soft);
}

.footer {
  position: relative;
  color: var(--text-soft);
  background: #fff7e8;
  padding: 28px 0 90px;
  border-top: 1px solid var(--paper-line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 950;
  letter-spacing: 0.16em;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .announcement {
    gap: 12px;
    padding: 8px 10px;
    flex-wrap: wrap;
    font-size: 0.68rem;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    background: rgba(9, 3, 31, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-dark);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 54px 0 68px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

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

  .logo-card {
    border-radius: 34px;
  }

  .orbit-one,
  .orbit-two {
    display: none;
  }

  .floating-tag {
    font-size: 0.68rem;
  }

  .tag-one {
    top: 28px;
    right: 0;
  }

  .tag-two {
    bottom: 30px;
  }

  .section {
    padding: 58px 0;
  }

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

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

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card .btn {
    width: 100%;
  }

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


/* V4: restore dark V1 visual mood for top collection area, keep lower sections readable */
#produk {
  background: transparent;
}

.size-section,
.contact,
.footer {
  background: #fff7e8;
}

.size-section .section-heading {
  color: var(--text);
}

.size-section .section-heading h2 {
  color: var(--text);
}

.size-section .section-heading .eyebrow {
  color: var(--orange);
}


/* V5: remove visual divider line in the dark collection intro */
.collection-intro,
.collection-intro::before,
.collection-intro::after {
  border-top: 0 !important;
  box-shadow: none;
}


/* V8: Brand tag editorial section */
.brand-tag-section {
  color: var(--text);
  background: #fff7e8;
  padding-top: 16px;
}

.brand-tag-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 26px;
  align-items: stretch;
}

.brand-tag-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-paper);
  border: 1px solid rgba(10, 6, 28, 0.08);
}

.brand-tag-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.brand-tag-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 176, 0, 0.18), transparent 30%),
    var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-paper);
}

.brand-tag-copy .eyebrow {
  color: var(--yellow);
}

.brand-tag-copy h2 {
  color: var(--cream);
}

.brand-tag-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

@media (max-width: 980px) {
  .brand-tag-grid {
    grid-template-columns: 1fr;
  }

  .brand-tag-image img {
    min-height: 320px;
  }
}


/* V9: Hero logo video */
.video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  background: #070119;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 176, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(9, 3, 31, 0), rgba(9, 3, 31, 0.08));
}

.video-card::after {
  z-index: 3;
}

/* Kalau browser mematikan autoplay, poster logo tetap tampil dari atribut poster. */
