:root {
  --bg: #060606;
  --bg-soft: #0f0f10;
  --panel: rgba(19, 19, 21, 0.88);
  --panel-strong: rgba(26, 26, 29, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f5f5;
  --muted: #b6b8bc;
  --silver: #c8ccd2;
  --silver-strong: #f1f4f8;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(214, 221, 232, 0.14), transparent 24%),
    linear-gradient(140deg, #020202 0%, #0a0a0b 45%, #111215 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 90%);
}

body::after {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.16), transparent 35%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 25%);
  z-index: -3;
}

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

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

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

.page-shell {
  position: relative;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-one {
  top: 80px;
  left: -100px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.08);
}

.orb-two {
  top: 620px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(186, 198, 214, 0.08);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 8, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.brand-lockup img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.pill-button,
.outline-button,
.ghost-button,
.wa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.77rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.pill-button,
.ghost-button,
.wa-button {
  border: 1px solid transparent;
  padding: 15px 22px;
}

.pill-button {
  background: linear-gradient(135deg, #f3f4f6 0%, #bfc5cc 100%);
  color: #111;
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.16);
}

.outline-button {
  padding: 15px 22px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.wa-button {
  width: 100%;
  background: linear-gradient(135deg, #f8fbff 0%, #c0c8d1 100%);
  color: #0c0d10;
  box-shadow: 0 18px 32px rgba(255, 255, 255, 0.12);
}

.pill-button:hover,
.outline-button:hover,
.ghost-button:hover,
.wa-button:hover {
  transform: translateY(-2px);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0;
  position: relative;
}

.hero {
  padding-top: 64px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.story-card,
.collection-header,
.detail-panel,
.order-panel,
.footer-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 36px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "WORLDWIDE MOVEMENT";
  position: absolute;
  right: -28px;
  top: 34px;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  margin-bottom: 22px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55));
}

h1,
h2,
h3,
.section-kicker,
.stat-value,
.price-tag {
  font-family: "Arial Narrow", Inter, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.92;
  max-width: 10ch;
}

.hero-subheadline {
  margin: 26px 0 10px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-strong);
}

.hero-tagline,
.story-text,
.section-intro,
.detail-copy p,
.order-copy p,
.footer-card p,
.product-description,
.meta-note,
.lookbook-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.stat-label {
  color: rgba(255, 255, 255, 0.46);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
}

.hero-media {
  border-radius: 36px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  overflow: hidden;
}

.hero-main-visual,
.hero-side-stack {
  min-height: 100%;
}

.hero-main-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 600px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    #0b0b0c;
}

.hero-main-visual img {
  height: 100%;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(7, 7, 8, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.visual-tag {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.74);
}

.visual-tag strong {
  font-size: 0.94rem;
  color: var(--silver-strong);
  letter-spacing: 0.1em;
}

.hero-side-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.side-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0c;
}

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

.side-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
}

.side-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}

.side-caption strong,
.lookbook-caption strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
}

.side-caption span,
.lookbook-caption span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

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

.section-heading.section-heading-tight {
  margin-bottom: 0;
}

.section-kicker {
  color: var(--silver);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  margin-bottom: 12px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  max-width: 12ch;
}

.section-intro {
  max-width: 520px;
  margin: 0;
}

.story-card {
  border-radius: 32px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.story-media {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: #0a0a0c;
}

.story-media img {
  height: 100%;
  object-fit: cover;
}

.story-copy {
  padding-right: 8px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.story-point {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.story-point strong {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.88rem;
}

.story-point span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.collection-header {
  border-radius: 28px;
  padding: 30px;
  margin-bottom: 24px;
}

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

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.product-card:hover,
.lookbook-card:hover,
.detail-card:hover,
.story-point:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.24);
}

.product-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #efefef, #d9dadd);
  min-height: 320px;
}

.product-image-wrap.dark {
  background: linear-gradient(180deg, #1a1a1c, #0b0b0d);
}

.product-image-wrap img {
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0b0c0d;
  background: rgba(241, 244, 248, 0.92);
}

.product-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.product-title-wrap h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: 0.12em;
  line-height: 1.12;
}

.product-category {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.56);
}

.price-tag {
  font-size: 1.28rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.product-description {
  margin: 16px 0 18px;
  font-size: 0.96rem;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.product-highlights span,
.detail-chip,
.lookbook-chip,
.summary-row {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
}

.control-group {
  margin-bottom: 16px;
}

.control-group.control-group-tight {
  margin-bottom: 0;
}

.premium-select,
.premium-input,
.premium-textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.premium-select:focus,
.premium-input:focus,
.premium-textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.05);
}

.premium-select option {
  color: #111;
}

.qty-price {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: end;
  margin-top: auto;
}

.inline-price-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.inline-price-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 6px;
  font-size: 0.66rem;
}

.inline-price-card strong {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.lookbook-tall,
.lookbook-split {
  display: grid;
  gap: 22px;
}

.lookbook-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0b0b0d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.lookbook-card.lookbook-card-featured {
  min-height: 680px;
}

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

.lookbook-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78) 100%);
}

.lookbook-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
}

.lookbook-copy {
  max-width: 340px;
}

.lookbook-copy p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.lookbook-chip {
  align-self: start;
  backdrop-filter: blur(8px);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 22px;
  align-items: stretch;
}

.detail-panel,
.order-panel,
.footer-card {
  border-radius: 32px;
  padding: 28px;
}

.detail-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 100%;
  background: #0a0a0c;
  border: 1px solid var(--line);
}

.detail-image img {
  height: 100%;
  object-fit: cover;
}

.detail-copy h3,
.order-copy h3 {
  margin: 0 0 14px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.detail-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

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

.detail-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 220ms ease, border-color 220ms ease;
}

.detail-card strong {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}

.detail-card span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.order-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.order-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.order-highlights {
  display: grid;
  gap: 12px;
}

.summary-box {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.summary-box h4 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--silver);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.summary-line:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.summary-line strong {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  font-size: 1.12rem;
}

.summary-total strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.order-form {
  display: grid;
  gap: 16px;
}

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

.premium-textarea {
  min-height: 140px;
  resize: vertical;
}

.meta-note {
  margin: 0;
  font-size: 0.92rem;
}

footer {
  padding-bottom: 42px;
}

.section.footer-section {
  padding-top: 0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-card,
  .lookbook-grid,
  .detail-grid,
  .order-layout,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .hero-main-visual {
    min-height: 540px;
  }

  .product-card {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (max-width: 840px) {
  .nav {
    min-height: 72px;
  }

  .nav-links {
    display: none;
  }

  .hero-copy,
  .hero-media,
  .story-card,
  .detail-panel,
  .order-panel,
  .footer-card,
  .collection-header {
    padding: 24px;
  }

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

  .hero-side-stack,
  .form-grid,
  .detail-features,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

  .product-card,
  .qty-price {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-top: 38px;
  }

  .hero-copy {
    border-radius: 28px;
    padding-top: 34px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-main-visual {
    min-height: 420px;
  }

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

  .story-media {
    min-height: 320px;
  }
}
