﻿:root {
  --black: #050505;
  --charcoal: #101010;
  --carbon: #171717;
  --ivory: #f4efe6;
  --bone: #d8cfc0;
  --muted: #8d8578;
  --gold: #c6a15b;
  --gold-soft: #e0c98e;
  --line: rgba(244,239,230,.14);
  --line-dark: rgba(5,5,5,.12);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
body.drawer-open,
body.menu-open,
body.search-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--black);
}

.topbar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(16px, 3vw, 44px);
  background: var(--black);
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.navbar {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 30;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 44px);
  color: white;
  background: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.08));
  transition: background .25s, border-color .25s;
}
.navbar.is-solid,
.navbar.is-scrolled {
  background: rgba(5,5,5,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .18em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.35);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-dropdown { position: relative; }
.nav-dropdown button,
.nav-icon {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.dropdown-panel {
  position: absolute;
  top: 28px;
  left: 50%;
  min-width: 210px;
  padding: 16px;
  display: grid;
  gap: 12px;
  background: rgba(5,5,5,.92);
  border: 1px solid var(--line);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}
.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  width: 28px;
  padding: 0;
}
.mobile-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(226,198,143,.22), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(185,144,82,.14) 58%, rgba(0,0,0,.42));
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 clamp(16px, 4vw, 70px) 13vh;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1,
.statement h2,
.section-heading h2,
.story-copy h2,
.product-buy h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -.055em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(72px, 11vw, 178px);
  line-height: .78;
}
.hero-content p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--bone);
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.primary-button,
.ghost-button,
.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.primary-button {
  background: var(--ivory);
  color: var(--black);
}
.ghost-button {
  border: 1px solid rgba(255,255,255,.35);
  color: var(--ivory);
}
.text-link {
  padding: 0;
  min-height: auto;
  color: var(--gold-soft);
}
.hero-footer {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 4vw, 70px);
  bottom: 34px;
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(72px, 9vw, 140px) clamp(16px, 3vw, 44px);
}
.statement {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) clamp(16px, 5vw, 90px);
}
.statement p {
  margin: 0 0 20px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.statement h2 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .92;
}
.section-heading {
  max-width: var(--max);
  margin: 0 auto 36px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 84px);
  line-height: .9;
}

.collection-grid,
.product-grid,
.review-grid,
.social-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.collection-grid { grid-template-columns: repeat(3, 1fr); }
.collection-card {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #171717, #080808);
  border: 1px solid var(--line);
  transition: transform .25s, border-color .25s;
}
.collection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198,161,91,.65);
}
.collection-card span,
.product-type,
.price-block span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.collection-card h3 {
  margin: auto 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 68px);
  line-height: .9;
}
.collection-card p {
  margin: 0;
  color: var(--bone);
  line-height: 1.7;
}

.products { background: #0a0a0a; }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.product-card {
  background: #111;
  border: 1px solid var(--line);
  transition: transform .25s, border-color .25s;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198,161,91,.58);
}
.product-link {
  display: block;
  background: #191919;
  overflow: hidden;
}
.product-link img {
  width: 100%;
  aspect-ratio: .82;
  object-fit: cover;
  transition: transform .5s;
}
.product-card:hover .product-link img { transform: scale(1.035); }
.product-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}
.product-info h3 {
  margin: 6px 0 0;
  font-size: 16px;
}
.price-block {
  text-align: right;
  font-weight: 800;
}
.price-block span {
  display: block;
  margin-top: 6px;
}
.swatches {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}
.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
}
.swatch-black { background: #050505; }
.swatch-cream { background: #eee4cf; }
.swatch-maroon { background: #4b0712; }
.swatch-green { background: #10291f; }
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.product-actions a,
.product-actions button {
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.product-actions button {
  background: var(--ivory);
  color: var(--black);
}
.muted-card {
  min-height: 100%;
  display: grid;
  place-items: center;
}
.coming-soon-card {
  min-height: 460px;
  padding: 28px;
  display: grid;
  align-content: end;
  width: 100%;
  background:
    linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.15)),
    url("../svarn-logo.png") center 28% / 180px no-repeat;
}
.coming-soon-card span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.coming-soon-card h3 {
  margin: 10px 0 0;
  font-family: "Playfair Display", serif;
  font-size: 34px;
}

.story {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}
.story-image {
  min-height: 720px;
  background: radial-gradient(circle at 35% 25%, rgba(226,198,143,.2), transparent 28%), linear-gradient(135deg, rgba(20,18,15,.95), rgba(185,144,82,.18));
}
.story-copy {
  padding: clamp(34px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--ivory);
  color: var(--black);
}
.story-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .9;
}
.story-copy p:not(.eyebrow) {
  color: #4c4740;
  line-height: 1.8;
}

.arrival-banner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 0;
  background: var(--ivory);
  color: var(--black);
}
.arrival-banner img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.arrival-banner div {
  padding: clamp(28px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.arrival-banner h3 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 84px);
  line-height: .9;
}
.arrival-banner .primary-button {
  align-self: start;
  margin-top: 20px;
  background: var(--black);
  color: var(--ivory);
}

.reviews { background: #0a0a0a; }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-card {
  padding: 28px;
  border: 1px solid var(--line);
}
.review-card span { color: var(--gold-soft); font-weight: 800; }
.review-card p {
  margin: 24px 0;
  color: var(--bone);
  line-height: 1.8;
}

.social-grid { grid-template-columns: repeat(3, 1fr); }
.social-tile {
  overflow: hidden;
  background: #111;
}
.social-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .5s;
}
.social-tile:hover img { transform: scale(1.04); }

.site-footer {
  padding: clamp(64px, 8vw, 120px) clamp(16px, 3vw, 44px) 26px;
  background: #050505;
  border-top: 1px solid var(--line);
}
.site-footer > div {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.footer-brand {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(72px, 13vw, 190px);
  line-height: .78;
  letter-spacing: -.055em;
}
.site-footer p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.8;
}
.footer-columns {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 160px);
  justify-content: end;
  gap: 24px;
}
.footer-columns div {
  display: grid;
  gap: 12px;
}
.footer-columns span {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-columns a {
  color: var(--bone);
  font-size: 13px;
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.cart-drawer,
.search-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(430px, 100%);
  height: 100%;
  padding: 24px;
  background: var(--ivory);
  color: var(--black);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.6,0,.2,1);
}
.drawer-open .cart-drawer,
.search-open .search-drawer { transform: translateX(0); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.drawer-open .drawer-backdrop,
.search-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}
.drawer-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 34px;
}
.drawer-head button {
  border: 0;
  background: none;
  font-size: 30px;
  cursor: pointer;
}
.search-drawer input {
  width: 100%;
  margin-top: 26px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  outline: 0;
}
.search-results {
  display: grid;
  margin-top: 22px;
  gap: 12px;
}
.cart-items {
  height: calc(100% - 190px);
  overflow-y: auto;
  padding: 16px 0;
}
.empty-cart {
  color: #6f6a61;
}
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.cart-product {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-product-image {
  width: 64px;
  height: 78px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  background: #eee7da;
}
.cart-line h3 {
  margin: 0 0 6px;
  font-size: 14px;
}
.cart-line p {
  margin: 0;
  color: #6f6a61;
  font-size: 12px;
}
.cart-line button {
  margin-top: 8px;
  border: 0;
  background: none;
  padding: 0;
  color: #6f6a61;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
}
.cart-footer {
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}
.cart-footer div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 800;
}
.cart-footer button {
  width: 100%;
  height: 50px;
  border: 0;
  background: var(--black);
  color: var(--ivory);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cart-footer small {
  display: block;
  margin-top: 10px;
  color: #6f6a61;
  text-align: center;
}

.mobile-menu {
  position: fixed;
  inset: 34px 0 0;
  z-index: 25;
  display: none;
  padding: 110px 20px 30px;
  background: var(--black);
  color: var(--ivory);
}
.menu-open .mobile-menu {
  display: grid;
  align-content: start;
  gap: 16px;
}
.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product page */
.product-main {
  padding-top: 140px;
}
.product-detail {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 44px) clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 24px;
  align-items: start;
}
.product-gallery {
  display: grid;
  gap: 12px;
}
.zoom-frame {
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}
.main-product-image {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  transform-origin: center;
  transition: transform .2s ease;
}
.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.thumb,
.selector {
  min-height: 48px;
  border: 1px solid var(--line);
  background: #111;
  color: var(--ivory);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.thumb.is-selected,
.selector.is-selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.product-buy {
  position: sticky;
  top: 126px;
  padding: clamp(26px, 4vw, 56px);
  background: #111;
  border: 1px solid var(--line);
}
.product-buy h1 {
  margin: 0 0 18px;
  font-size: clamp(54px, 6vw, 94px);
  line-height: .82;
}
.product-price {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 800;
}
.product-price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-copy {
  color: var(--bone);
  line-height: 1.8;
}
.selector-group {
  margin-top: 28px;
}
.selector-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.selector-head strong { color: var(--gold-soft); }
.color-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.size-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.buy-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  margin-top: 30px;
}
.quantity-control {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  border: 1px solid var(--line);
}
.quantity-control button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.qty-value {
  display: grid;
  place-items: center;
  font-weight: 800;
}
.add-to-bag {
  min-height: 54px;
  border: 0;
  background: var(--ivory);
  color: var(--black);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.detail-accordion {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.detail-accordion details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.detail-accordion summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
}
.detail-accordion p {
  color: var(--bone);
  line-height: 1.7;
}
.related-grid { grid-template-columns: repeat(2, 1fr); }
.mobile-sticky-atc {
  display: none;
}

@media (max-width: 900px) {
  .topbar span:nth-child(2) { display: none; }
  .navbar {
    height: 68px;
    grid-template-columns: 1fr auto;
  }
  .nav-links,
  .account-link,
  .search-toggle { display: none; }
  .mobile-toggle { display: block; }
  .brand span { font-size: 15px; }
  .hero-content { padding-bottom: 110px; }
  .hero h1 { font-size: 20vw; }
  .hero-footer { left: 16px; right: 16px; justify-content: space-between; }
  .section-heading { display: block; }
  .collection-grid,
  .product-grid,
  .review-grid,
  .social-grid,
  .story,
  .arrival-banner,
  .product-detail,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .collection-card { min-height: 260px; }
  .story-image { min-height: 520px; }
  .arrival-banner img { min-height: 360px; }
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    justify-content: start;
  }
  .product-main { padding-top: 112px; }
  .product-buy {
    position: static;
    padding: 24px;
  }
  .main-product-image { aspect-ratio: .78; }
  .thumb-row,
  .color-options { grid-template-columns: repeat(2, 1fr); }
  .buy-row { grid-template-columns: 1fr; }
  .mobile-sticky-atc {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(5,5,5,.92);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }
  .mobile-sticky-atc span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
  }
  .sticky-add-to-bag {
    min-height: 44px;
    padding: 0 22px;
  }
}

@media (max-width: 560px) {
  .topbar {
    justify-content: center;
  }
  .topbar span:nth-child(3) { display: none; }
  .nav-actions { gap: 12px; }
  .cart-button { font-size: 0; }
  .cart-button .cart-count { font-size: 11px; }
  .hero-footer { display: none; }
  .statement h2 { font-size: 15vw; }
  .product-actions { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom {
    display: grid;
    gap: 10px;
  }
}

/* S.V.A.R.N professional dark glass theme */
:root {
  --black: #050505;
  --charcoal: #0e0e0f;
  --carbon: #181716;
  --ivory: #f5efe5;
  --bone: #d8cdbc;
  --muted: #91897c;
  --gold: #b99052;
  --gold-soft: #e2c68f;
  --line: rgba(226,198,143,.18);
  --line-dark: rgba(5,5,5,.2);
  --glass-light: rgba(255,255,255,.075);
  --glass-mid: rgba(255,255,255,.105);
  --glass-dark: rgba(10,10,10,.72);
  --smoke: rgba(210,210,210,.08);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(185,144,82,.16), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(255,255,255,.075), transparent 24%),
    radial-gradient(circle at 55% 88%, rgba(185,144,82,.1), transparent 28%),
    linear-gradient(135deg, #050505 0%, #11100f 45%, #070707 100%);
  background-attachment: fixed;
  color: var(--ivory);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255,255,255,.035) 18% 19%, transparent 19% 44%, rgba(185,144,82,.045) 44% 45%, transparent 45%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.035), transparent 18%);
  filter: blur(.2px);
}

.topbar {
  background: rgba(5,5,5,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar,
.navbar.is-solid,
.navbar.is-scrolled {
  background: rgba(8,8,8,.64);
  border-bottom: 1px solid rgba(226,198,143,.16);
  backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}

.brand img {
  border: 1px solid rgba(226,198,143,.45);
  box-shadow: 0 0 0 4px rgba(255,255,255,.025), 0 18px 40px rgba(0,0,0,.28);
}

.dropdown-panel,
.search-panel,
.cart-drawer,
.mobile-menu {
  background: rgba(8,8,8,.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(24px) saturate(1.15);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.hero-media {
  filter: saturate(.78) contrast(1.08) brightness(.78);
  background:
    radial-gradient(circle at 78% 24%, rgba(226,198,143,.18), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.28) 56%, rgba(185,144,82,.16));
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 24%, rgba(226,198,143,.16), transparent 28%),
    linear-gradient(to top, rgba(0,0,0,.9), transparent 48%);
}

.hero-content,
.section-heading,
.arrival-banner,
.story-copy,
.product-buy,
.product-gallery,
.review-card,
.newsletter,
.coming-soon-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  backdrop-filter: blur(22px) saturate(1.12);
  box-shadow: 0 28px 90px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-content {
  padding: clamp(24px, 4vw, 48px);
  margin: 0 0 9vh clamp(16px, 4vw, 70px);
  max-width: 780px;
}

.hero h1,
.statement h2,
.section-heading h2,
.story-copy h2,
.product-buy h1 {
  color: var(--ivory);
  text-shadow: 0 18px 60px rgba(0,0,0,.34);
}

.eyebrow,
.selector-head strong,
.product-price span {
  color: var(--gold-soft);
}

.primary-button,
.add-to-bag,
.sticky-add-to-bag {
  background: linear-gradient(135deg, #f2dfb8, #b99052);
  color: #080808;
  border: 0;
  box-shadow: 0 18px 48px rgba(185,144,82,.24);
}

.primary-button:hover,
.add-to-bag:hover,
.sticky-add-to-bag:hover {
  background: linear-gradient(135deg, #fff0c7, #c69b5c);
  transform: translateY(-2px);
}

.ghost-button,
.secondary-button,
.product-actions a,
.product-actions button,
.thumb,
.selector,
.quantity-control {
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  color: var(--ivory);
  backdrop-filter: blur(14px);
}

.ghost-button:hover,
.secondary-button:hover,
.product-actions a:hover,
.product-actions button:hover,
.thumb:hover,
.selector:hover {
  background: rgba(226,198,143,.12);
  border-color: rgba(226,198,143,.38);
}

.thumb.is-selected,
.selector.is-selected {
  background: linear-gradient(135deg, rgba(242,223,184,.95), rgba(185,144,82,.95));
  color: #090909;
  border-color: transparent;
}

.statement,
.collections,
.products,
.reviews,
.social-proof {
  background: transparent;
}

.statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-card {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(226,198,143,.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226,198,143,.38);
}

.product-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
}

.product-card:hover {
  border-color: rgba(226,198,143,.34);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}

.product-link img,
.main-product-image,
.arrival-banner img,
.story-image {
  filter: saturate(.78) contrast(1.04) brightness(.92);
}

.product-type,
.product-info p,
.product-copy,
.detail-accordion p,
.review-card p {
  color: var(--bone);
}

/* Brand art panels used after removing old hardcoded product mockups. */
.hero-media::before,
.hero-media::after,
.story-image::before,
.story-image::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-media::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 54%, rgba(255,255,255,.045) 54.2% 55.2%, transparent 55.4%),
    linear-gradient(115deg, transparent 0 69%, rgba(213,176,107,.08) 69.2% 70.2%, transparent 70.4%);
}

.hero-media::after {
  top: 22%;
  right: clamp(40px, 8vw, 150px);
  width: clamp(230px, 28vw, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(226,198,143,.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0,0,0,.08), rgba(0,0,0,.42)),
    url("../svarn-logo.png") center / 58% no-repeat;
  box-shadow: 0 40px 120px rgba(0,0,0,.42), inset 0 0 70px rgba(226,198,143,.08);
  opacity: .72;
}

.story-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.story-image::before {
  inset: 42px;
  border: 1px solid rgba(226,198,143,.24);
  background:
    url("../svarn-logo.png") center 32% / min(260px, 46%) no-repeat,
    linear-gradient(145deg, rgba(255,255,255,.055), transparent);
}

.story-image::after {
  left: clamp(28px, 5vw, 80px);
  right: clamp(28px, 5vw, 80px);
  bottom: clamp(38px, 6vw, 90px);
  content: "Comfort Meets Aura";
  color: var(--ivory);
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 78px);
  line-height: .9;
  letter-spacing: -.055em;
}

.social-tile {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 22%, rgba(226,198,143,.18), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.social-tile span {
  padding: 28px;
  color: var(--ivory);
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3vw, 54px);
  line-height: .92;
  text-align: center;
  letter-spacing: -.045em;
}

@media (max-width: 900px) {
  .hero-media::after {
    top: 12%;
    right: 18px;
    width: 190px;
    opacity: .36;
  }

  .story-image::before { inset: 22px; }
  .story-image::after { font-size: 42px; }
}

.swatch {
  border: 1px solid rgba(226,198,143,.38);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.12), 0 8px 20px rgba(0,0,0,.18);
}

.story {
  background: transparent;
}

.story-copy,
.newsletter {
  color: var(--ivory);
}

.newsletter {
  background:
    radial-gradient(circle at 16% 18%, rgba(226,198,143,.18), transparent 26%),
    radial-gradient(circle at 85% 82%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
}

.newsletter-form {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(16px);
}

.newsletter-form input {
  color: var(--ivory);
}

.newsletter-form input::placeholder {
  color: rgba(245,239,230,.54);
}

footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(185,144,82,.16), transparent 28%),
    #050505;
  border-top: 1px solid var(--line);
}

.footer-logo,
.footer-brand span {
  color: var(--ivory);
}

.zoom-frame {
  background: #090909;
  border: 1px solid var(--line);
}

.mobile-sticky-atc {
  background: rgba(8,8,8,.82);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.listing-main,
.content-page {
  padding-top: 132px;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 120px) clamp(16px, 4vw, 70px);
}

.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-family: "Playfair Display", serif;
  font-size: clamp(58px, 8vw, 132px);
  line-height: .86;
  letter-spacing: -.055em;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--bone);
  font-size: 16px;
  line-height: 1.8;
}

.content-block,
.checkout-layout,
.checkout-summary,
.checkout-form {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 7vw, 90px);
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 90px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.08);
}

.content-block h2,
.checkout-form h2,
.checkout-summary h2 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.content-block p,
.content-block li {
  color: var(--bone);
  line-height: 1.8;
}

.contact-grid,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 24px;
}

.contact-form,
.checkout-form {
  display: grid;
  gap: 16px;
}

.contact-form label,
.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.checkout-form input,
.checkout-form textarea,
.newsletter-form input,
.search-drawer input {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--ivory);
  padding: 14px 16px;
  outline: none;
}

.checkout-summary {
  position: sticky;
  top: 130px;
}

.checkout-summary > div,
.cart-page-total {
  font-size: 18px;
}

.checkout-link {
  display: grid;
  place-items: center;
  min-height: 48px;
  background: linear-gradient(135deg, #f2dfb8, #b99052);
  color: #080808;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.wishlist-toggle.is-saved {
  background: rgba(226,198,143,.18);
  border-color: rgba(226,198,143,.48);
  color: var(--gold-soft);
}

.search-results a {
  display: grid;
  gap: 4px;
}

.search-results a span {
  color: var(--muted);
  font-size: 11px;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-product-image {
  width: 64px;
  height: 78px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
}

.cart-line h3 {
  margin: 0 0 6px;
}

.cart-line p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.cart-line button {
  border: 0;
  padding: 0;
  background: none;
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .contact-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .listing-main,
  .content-page {
    padding-top: 106px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    margin: 0 14px 110px;
    padding: 24px;
  }
}
