:root {
  --bg: #050505;
  --surface: #0f0f0f;
  --surface-2: #161616;
  --text: #f5f5f5;
  --muted: #b0b0b0;
  --gold: #e6e6e6;
  --gold-soft: #ffffff;
  --accent: #d9d9d9;
  --border: rgba(255, 255, 255, 0.2);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --max-width: 1180px;
  --photo-grade: grayscale(0.34) saturate(0.78) contrast(1.14) brightness(0.82);
  --photo-grade-hover: grayscale(0.42) saturate(0.72) contrast(1.18) brightness(0.76);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(980px 600px at 85% -15%, rgba(255, 255, 255, 0.1) 0, transparent 58%),
    radial-gradient(800px 520px at -20% 45%, rgba(255, 255, 255, 0.06) 0, transparent 62%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-loading main {
  opacity: 0;
  transform: translateY(8px);
}

main {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

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

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(var(--max-width), 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -100px;
  background: #fff;
  color: #000;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(110px);
  z-index: -1;
  pointer-events: none;
}

.glow-1 {
  left: -120px;
  top: 130px;
  background: rgba(255, 255, 255, 0.1);
}

.glow-2 {
  right: -90px;
  top: 440px;
  background: rgba(230, 230, 230, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(4, 4, 4, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: linear-gradient(140deg, #ffffff, #bcbcbc);
  color: #050505;
}

.site-nav {
  display: flex;
  gap: 6px;
}

.site-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:focus-visible,
.btn:focus-visible,
.menu-btn:focus-visible,
.cart-btn:focus-visible,
.chat-launcher:focus-visible,
.chip:focus-visible,
.close-btn:focus-visible,
.chat-form input:focus-visible,
.checkout-form input:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.checkout-form button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-soft);
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
}

.menu-btn span {
  width: 19px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 3px auto;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(130deg, #1b1b1b, #0f0f0f);
  color: var(--gold-soft);
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #080808;
  font-size: 0.82rem;
}

section {
  padding-block: 74px;
}

.hero {
  padding-top: 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.lead {
  margin-top: 14px;
  color: var(--muted);
  max-width: 58ch;
}

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

.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

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

.btn-primary {
  color: #080808;
  background: linear-gradient(125deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.18);
}

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

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 530px;
  filter: grayscale(0.04) saturate(1.02) contrast(1.22) brightness(1.04);
  object-position: center;
}

.floating-chip {
  position: absolute;
  right: -14px;
  bottom: 18px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.floating-chip strong {
  color: var(--gold-soft);
}

.floating-chip p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
}

.chip.is-active,
.chip:hover,
.chip:focus-visible {
  color: #090909;
  background: var(--gold);
}

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

.product-card {
  background: linear-gradient(155deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.56);
}

.product-card img {
  height: 280px;
  filter: var(--photo-grade);
  transform: scale(1.001);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
  filter: var(--photo-grade-hover);
}

.product-body {
  padding: 16px;
}

.product-type {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  margin: 8px 0 14px;
  font-weight: 700;
  color: var(--gold-soft);
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.signature-card {
  background: linear-gradient(140deg, #191919, #0e0e0e);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.signature-card p {
  color: var(--muted);
  margin-top: 12px;
}

.text-link {
  margin-top: 18px;
  display: inline-block;
  color: var(--gold-soft);
}

.signature-grid img {
  border-radius: var(--radius-lg);
  min-height: 360px;
  box-shadow: var(--shadow), inset 0 -90px 120px rgba(0, 0, 0, 0.38);
  filter: var(--photo-grade);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.lookbook-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  min-height: 260px;
}

.lookbook-card img {
  height: 100%;
  min-height: 260px;
  filter: var(--photo-grade);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.lookbook-card:hover img {
  transform: scale(1.04);
  filter: var(--photo-grade-hover);
}

.lookbook-card.tall {
  min-height: 540px;
}

.lookbook-card.tall img {
  min-height: 540px;
}

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

.feature {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: var(--radius-md);
  padding: 20px;
}

.feature p {
  color: var(--muted);
  margin-top: 10px;
}

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

.review-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  color: #f3f3f3;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.review-card footer {
  margin-top: 10px;
  color: var(--gold);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  background: linear-gradient(150deg, #131313, #090909);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 38px);
}

.contact-wrap p {
  color: var(--muted);
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-weight: 600;
  color: var(--gold-soft);
  margin-top: 2px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.contact-form textarea {
  min-height: 108px;
  resize: vertical;
}

.form-status {
  font-size: 0.95rem;
  color: var(--gold-soft);
}

.checkout-section {
  padding-top: 18px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #131313, #090909);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
}

.checkout-panel h2,
.checkout-summary h2 {
  margin-bottom: 12px;
}

.checkout-form {
  display: grid;
  gap: 11px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--gold-soft);
  font-size: 0.92rem;
}

.checkout-form input {
  border-radius: 11px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px 11px;
  font: inherit;
}

.checkout-form input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.checkout-grid {
  display: grid;
  gap: 10px;
}

.checkout-grid.two {
  grid-template-columns: 1fr 1fr;
}

.checkout-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 8px 0;
}

.checkout-submit {
  margin-top: 6px;
}

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

.order-item {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px;
}

.order-item p {
  color: #ececec;
}

.order-item small {
  color: var(--muted);
}

.summary-row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  color: #e6e6e6;
}

.summary-row.total {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  color: #ffffff;
}

.security-note {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.security-note p {
  color: var(--muted);
  font-size: 0.92rem;
}

.support-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
  background: linear-gradient(150deg, #121212, #090909);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 34px);
}

.support-wrap p {
  color: var(--muted);
  margin-top: 10px;
}

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

.support-list li {
  color: #e0e0e0;
  padding-left: 20px;
  position: relative;
}

.support-list li::before {
  content: "•";
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--gold-soft);
}

.support-actions {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.chat-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  color: #080808;
  background: linear-gradient(125deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 76px;
  width: min(360px, calc(100vw - 30px));
  max-height: 72vh;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 31;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-widget.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px;
}

.chat-title {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 700;
}

.chat-subtitle {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.chat-body {
  padding: 12px;
  display: grid;
  gap: 10px;
  overflow: auto;
}

.chat-message {
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.94rem;
}

.chat-message.bot {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ececec;
  justify-self: start;
}

.chat-message.user {
  background: rgba(255, 255, 255, 0.95);
  color: #090909;
  justify-self: end;
}

.chat-form {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.chat-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px;
  font: inherit;
}

.chat-form input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: #090909;
  border-left: 1px solid var(--border);
  z-index: 40;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 14px;
}

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

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}

.cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  display: grid;
  gap: 10px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 11px;
}

.cart-item strong {
  color: var(--gold-soft);
}

.cart-total {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
}

.checkout-btn {
  width: 100%;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 35;
}

.site-footer {
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-media::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 70% at 50% -8%, rgba(255, 255, 255, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.hero-media::after {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(130% 68% at 50% -12%, rgba(255, 255, 255, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.22) 100%);
}

.product-card {
  position: relative;
}

.product-card::after {
  border-radius: var(--radius-md);
}

.lookbook-card {
  position: relative;
}

.lookbook-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lookbook-card::after {
  background:
    radial-gradient(120% 70% at 50% -8%, rgba(255, 255, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s cubic-bezier(0.2, 1, 0.3, 1), transform 0.75s cubic-bezier(0.2, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .signature-grid,
  .contact-wrap,
  .support-wrap,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

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

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

  .lookbook-card.tall,
  .lookbook-card.tall img {
    min-height: 380px;
  }

  .checkout-grid.three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  section {
    padding-block: 56px;
  }

  .menu-btn {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 4%;
    width: min(320px, 92vw);
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #0f0f0f;
    display: grid;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

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

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

  .lookbook-card,
  .lookbook-card img,
  .lookbook-card.tall,
  .lookbook-card.tall img {
    min-height: 320px;
  }

  .checkout-grid.two,
  .checkout-grid.three {
    grid-template-columns: 1fr;
  }

  .floating-chip {
    position: static;
    margin-top: 10px;
    width: fit-content;
  }

  .hero-media img {
    min-height: 430px;
  }

  .chat-launcher {
    right: 12px;
    bottom: 12px;
  }

  .chat-widget {
    right: 10px;
    bottom: 64px;
    width: min(360px, calc(100vw - 20px));
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
