/* ============ TOKENS ============ */
:root{
  --bg: #0b0a09;
  --bg-alt: #141210;
  --card: #17140f;
  --line: #3a322b;
  --gold: #c6a177;
  --gold-light: #e8cbaa;
  --text: #f3ece4;
  --text-muted: #a99a8c;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;

  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1,h2,h3{
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  color: var(--gold-light);
}

:focus-visible{
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* ============ HEADER ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,10,9,0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.wordmark{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
}

.monogram{ width: 34px; height: 34px; color: var(--gold); }

.wordmark-text{
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.06em;
}
.wordmark-text.small{ font-size: 22px; }

.main-nav{
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 15px;
  color: var(--text-muted);
}

.main-nav a:hover{ color: var(--gold-light); }

.nav-cta{
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 8px 18px;
  font-size: 14px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover{ background: var(--gold); color: #0b0a09; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span{
  display: block;
  height: 1px;
  background: var(--gold-light);
}

/* ============ HERO ============ */
.hero{
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 28px 100px;
}

.hero-inner{ max-width: 620px; }

.hero-eyebrow{
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 22px;
}

.hero-title{
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.05;
  color: var(--text);
}
.hero-title em{
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub{
  margin: 28px 0 40px;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 17px;
}

.hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn{
  padding: 14px 30px;
  font-size: 15px;
  border: 1px solid var(--gold);
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.btn-primary{
  background: var(--gold);
  color: #0b0a09;
}
.btn-primary:hover{ opacity: 0.85; }

.btn-ghost{
  color: var(--gold-light);
}
.btn-ghost:hover{ background: rgba(198,161,119,0.12); }

.hero-line{
  position: absolute;
  right: 28px;
  top: 60px;
  bottom: 60px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line), transparent);
  display: none;
}

@media (min-width: 900px){
  .hero-line{ display: block; }
}

/* ============ BRAND STRIP ============ */
.brand-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 28px;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-light);
}
.brand-strip .dot{
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  align-self: center;
}

/* ============ SECTION HEAD ============ */
.section-head{
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 28px 40px;
}
.section-head h2{
  font-size: clamp(30px, 4vw, 42px);
}
.section-head p{
  margin: 14px 0 0;
  color: var(--text-muted);
  max-width: 56ch;
  font-size: 15px;
}

/* ============ COLLECTION ============ */
.collection{ padding-bottom: 40px; }

.grid{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 100px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card{
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.card-media.placeholder{
  aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(135deg, transparent, transparent 11px, rgba(198,161,119,0.06) 11px, rgba(198,161,119,0.06) 12px),
    var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}

.card-body{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.card-body h3{
  font-size: 20px;
  color: var(--text);
}

.card-meta{
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.card-price{
  margin: 4px 0 14px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-light);
}

.card-link{
  margin-top: auto;
  font-size: 13px;
  color: var(--gold);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.card-link:hover{ color: var(--gold-light); }

/* ============ HOW TO ============ */
.how-to{ background: var(--bg-alt); }

.steps{
  list-style: none;
  margin: 0;
  padding: 0 28px 100px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

@media (min-width: 760px){
  .steps{ grid-template-columns: repeat(3, 1fr); gap: 48px; }
}

.steps li{
  display: flex;
  gap: 18px;
}

.step-num{
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  flex-shrink: 0;
}

.steps h3{
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--text);
}

.steps p{
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ============ FOOTER ============ */
.site-footer{
  border-top: 1px solid var(--line);
}

.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 28px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand p{
  margin: 6px 0 0;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--serif);
}

.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-contact a:hover{ color: var(--gold-light); }

.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 20px 28px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ============ RESPONSIVE NAV ============ */
@media (max-width: 760px){
  .main-nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 28px;
    gap: 18px;
    display: none;
  }
  .main-nav.open{ display: flex; }
  .nav-cta{ display: none; }
  .nav-toggle{ display: flex; }
}
