/* Extracted styles from index.html for easier maintenance */
/* ================= DESIGN TOKENS (from brand logo) ================= */
:root {
  --onyx: #0f1c33; /* brand navy, sampled from logo background */
  --charcoal: #142542; /* lighter navy panel */
  --charcoal-2: #1b2d4d; /* navy gradient partner */
  --velvet: #0b0b0d; /* near-black, matches velvet packaging */
  --gold: #c9a24d;
  --gold-light: #e8d9b0;
  --gold-dim: #a9884a;
  --ivory: #f8f4ea;
  --ivory-dim: #e9e2d2;
  --burgundy: #5c1a2e;
  --line: rgba(201, 162, 77, 0.28);

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  --max-w: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ivory);
  color: var(--onyx);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
section {
  position: relative;
}
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

/* ================= SIGNATURE FACET MARK ================= */
.facet-mark {
  display: block;
  margin: 0 auto;
}

.facet-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px 0;
}
.facet-divider .rule {
  height: 1px;
  width: 90px;
  background: linear-gradient(90deg, transparent, var(--line));
}
.facet-divider .rule.right {
  background: linear-gradient(90deg, var(--line), transparent);
}

/* ================= HEADER ================= */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
header.site-header .nav-row {
  padding: 22px 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}
header.site-header .nav-row .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.site-header.scrolled .nav-row {
  background: rgba(15, 28, 51, 0.94);
  backdrop-filter: blur(6px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.05em;
  color: var(--ivory);
  flex-shrink: 0;
}
.logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}
.logo .logo-text small {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  margin-top: 2px;
}
header.site-header:not(.scrolled) .logo,
header.site-header:not(.scrolled) nav a,
header.site-header:not(.scrolled) .nav-toggle span {
  color: var(--ivory);
}
.logo strong {
  color: var(--gold);
  font-weight: 500;
}
nav.main-nav {
  display: flex;
  gap: 40px;
}
nav.main-nav a {
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
nav.main-nav a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  margin: 6px 0;
}

@media (max-width: 820px) {
  nav.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--onyx);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.45s ease;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.3);
  }
  nav.main-nav.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: block;
  }
}

/* ================= HERO / CAROUSEL ================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: var(--onyx);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide .slide-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 30%,
    var(--slide-c1, #1b2d4d) 0%,
    var(--onyx) 62%
  );
}
.hero-slide .slide-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      100deg,
      var(--onyx) 0%,
      rgba(15, 28, 51, 0.88) 32%,
      rgba(15, 28, 51, 0.35) 60%,
      rgba(15, 28, 51, 0.15) 100%
    ),
    var(--photo-url);
  background-size: cover;
  background-position: var(--photo-pos, center);
}
.hero-slide .facet-art {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(56vw, 640px);
  opacity: 0.9;
}
@media (max-width: 820px) {
  .hero-slide .facet-art {
    right: -18%;
    opacity: 0.35;
    width: 80vw;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-content .eyebrow {
  color: var(--gold-light);
}
.hero-content h1 {
  color: var(--ivory);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.04;
  margin: 18px 0 22px;
  max-width: 780px;
}
.hero-content h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-content p.sub {
  color: var(--ivory-dim);
  font-size: 17px;
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 34px;
}
.btn {
  display: inline-block;
  padding: 15px 34px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    background 0.35s ease,
    color 0.35s ease;
  background: transparent;
}
.btn:hover {
  background: var(--gold);
  color: var(--onyx);
}
.btn-solid {
  background: var(--gold);
  color: var(--onyx);
}
.btn-solid:hover {
  background: var(--gold-light);
}

.hero-nav {
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero-dot.active {
  background: var(--gold);
}

.hero-arrows {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 20px;
}
.hero-arrow {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(12, 12, 14, 0.4);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.hero-arrow:hover {
  border-color: var(--gold);
  background: rgba(12, 12, 14, 0.7);
}

/* ================= COLLECTION ================= */
.collection {
  padding: 100px 0 60px;
  background: var(--ivory);
}
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 14px 0 16px;
}
.section-head p {
  color: #5b564a;
  font-size: 15px;
  line-height: 1.7;
}

.product-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 32px;
  max-width: 760px;
}

@media (max-width: 680px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 14px;
  }

  .product-card {
    max-width: 100%;
    min-width: auto;
  }

  .filter-button {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

.filter-button {
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.filter-button:hover,
.filter-button.active {
  background: #f6f2e9;
  color: #0d1d34;
  transform: translateY(-1px);
  border-color: rgba(120, 100, 70, 0.18);
}

.product-grid {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 0 12px;
}
.empty-state {
  grid-column: 1 / -1;
  padding: 56px 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  color: #1d2432;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}
.empty-state p:first-child {
  font-weight: 700;
  margin-bottom: 10px;
}
.product-card {
  display: block;
  width: 100%;
  max-width: 420px;
  min-width: 250px;
  margin: 0 auto;
  background: var(--velvet);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(12, 12, 14, 0.28);
}
.product-card.style-1 {
  background: linear-gradient(
    180deg,
    rgba(8, 18, 48, 0.96),
    rgba(6, 12, 30, 0.98)
  );
  border-color: rgba(84, 138, 255, 0.22);
  box-shadow: 0 28px 70px rgba(12, 28, 70, 0.35);
}
.product-card.style-1 .product-media {
  background:
    linear-gradient(180deg, rgba(8, 20, 52, 0.8), rgba(4, 9, 26, 0.86)),
    radial-gradient(
      circle at 20% 12%,
      rgba(126, 189, 255, 0.24),
      transparent 22%
    ),
    radial-gradient(
      circle at 72% 48%,
      rgba(75, 148, 245, 0.14),
      transparent 28%
    );
  background-size: cover;
  background-position: center;
}
.product-card.style-1 .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    transparent 45%
  );
  pointer-events: none;
}
.product-card.style-1 .product-tag {
  color: #d7e9ff;
  background: rgba(12, 24, 54, 0.9);
  border-color: rgba(106, 170, 255, 0.24);
}
.product-card.style-1 .product-info h3 {
  color: #f4f8ff;
}
.product-card.style-1 .product-info .price {
  color: #9bbcff;
}
.product-card.style-1 .view-etsy {
  color: #bfd8ff;
  border-color: rgba(191, 216, 255, 0.35);
}

.product-card.style-6 {
  background: rgba(18, 18, 20, 0.96);
  border-color: rgba(201, 162, 77, 0.18);
}
.product-card.style-6 .product-media {
  background: linear-gradient(
    180deg,
    rgba(12, 12, 16, 0.96),
    rgba(18, 18, 24, 0.92)
  );
}
.product-card.style-6 .product-tag {
  color: #f0e5c6;
  background: rgba(15, 15, 20, 0.88);
  border-color: rgba(201, 162, 77, 0.22);
}
.product-card.style-6 .product-info h3,
.product-card.style-6 .product-info .price,
.product-card.style-6 .view-etsy {
  color: #e5d8b3;
}
.product-media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, #14141a, var(--velvet));
  position: relative;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-media svg {
  width: 46%;
  height: 46%;
}
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--line);
  padding: 5px 10px;
  background: rgba(12, 12, 14, 0.5);
}
.product-info {
  padding: 22px 22px 26px;
}
.product-info h3 {
  color: var(--ivory);
  font-size: 21px;
  margin-bottom: 10px;
}
.product-info .price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.product-info .price {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.product-info .price-old {
  color: var(--ivory-dim);
  text-decoration: line-through;
}
.product-info .price-new {
  color: var(--gold);
  font-weight: 700;
}
.product-info .discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 77, 0.12);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 10px;
}
.view-etsy {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 4px;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    gap 0.3s ease;
}
.view-etsy svg {
  width: 12px;
  height: 12px;
}
.product-card:hover .view-etsy {
  color: var(--gold-light);
  border-color: var(--gold);
  gap: 12px;
}

.collection-note {
  text-align: center;
  margin-top: 46px;
  font-size: 13px;
  color: #918a76;
  letter-spacing: 0.02em;
}

.collection-etsy-link {
  display: block;
  width: fit-content;
  margin: 1.4rem auto 0;
  text-align: center;
}

/* ================= ABOUT ================= */
.about {
  background: var(--onyx);
  color: var(--ivory);
  padding: 100px 0;
}
.about .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 820px) {
  .about .grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.about .eyebrow {
  color: var(--gold-light);
}
.about h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 14px 0 20px;
}
.about p {
  color: var(--ivory-dim);
  line-height: 1.85;
  font-size: 15.5px;
  margin-bottom: 16px;
  max-width: 480px;
}
.about-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.about-art .art-photo {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
  object-fit: cover;
}
.about-art .art-photo.p1 {
  width: 62%;
  aspect-ratio: 3/4;
  top: 0;
  left: 0%;
  transform: rotate(-4deg);
  z-index: 2;
}
.about-art .art-photo.p2 {
  width: 48%;
  aspect-ratio: 3/4;
  bottom: 0;
  right: -2%;
  transform: rotate(5deg);
  z-index: 1;
}
@media (max-width: 480px) {
  .about-art {
    min-height: 300px;
  }
}

.stat-row {
  display: flex;
  gap: 44px;
  margin-top: 30px;
}
.stat {
}
.stat .num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
}
.stat .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 4px;
}

/* ================= CONTACT ================= */
.contact {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 100px 0 90px;
}
.contact .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
}
@media (max-width: 820px) {
  .contact .grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.contact .eyebrow {
  color: var(--gold-light);
}
.contact h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 14px 0 18px;
}
.contact > .wrap > p.lead {
  color: var(--ivory-dim);
  max-width: 640px;
  margin-bottom: 50px;
  line-height: 1.7;
}

.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 9px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 2px;
  transition: border-color 0.3s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field ::placeholder {
  color: #7a7568;
}

.form-status {
  margin-top: 16px;
  font-size: 13px;
  min-height: 18px;
}
.form-status.ok {
  color: #9fd6a3;
}
.form-status.err {
  color: #e08a8a;
}

.contact-info {
}
.contact-info .info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}
.contact-info .info-row svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info .info-row div {
  font-size: 14.5px;
  color: var(--ivory-dim);
  line-height: 1.6;
}
.contact-info .info-row strong {
  display: block;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-row {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
  color: var(--ivory-dim);
}
.social-row a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.social-row svg {
  width: 16px;
  height: 16px;
}

/* ================= FOOTER ================= */
footer {
  background: var(--onyx);
  color: var(--ivory-dim);
  padding: 34px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}
footer .logo {
  justify-content: center;
  margin-bottom: 14px;
  font-size: 17px;
}
footer .logo .logo-text small {
  color: var(--ivory-dim);
}

/* placeholder note banner (sits inside the fixed header, scrolls away with it) */
.setup-note {
  background: var(--gold-light);
  color: var(--onyx);
  font-size: 12.5px;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}
.setup-note code {
  background: rgba(12, 12, 14, 0.08);
  padding: 1px 5px;
  border-radius: 3px;
}
