@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --black: #0c0a08;
  --black-2: #16120e;
  --panel: #1c1712;
  --gold: #c9a24b;
  --gold-bright: #e6c672;
  --copper: #b5652d;
  --bronze: #8c5a2b;
  --cream: #ede1c8;
  --cream-dim: #b8ab90;
  --line: rgba(201, 162, 75, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.03em;
  color: var(--gold-bright);
  font-weight: 600;
}

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--copper); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--gold-bright);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
nav.main-nav a {
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
nav.main-nav a:hover { color: var(--gold-bright); }

.btn-etsy {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #201404 !important;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.btn-etsy:hover { color: #201404 !important; filter: brightness(1.08); }

/* Hero */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,10,8,0.55) 0%, rgba(12,10,8,0.85) 75%, var(--black) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 780px;
}
.hero-inner .kicker {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--copper);
}
.hero-inner h1 {
  font-size: 48px;
  margin: 14px 0 10px;
}
.hero-inner p.tagline {
  font-size: 22px;
  font-style: italic;
  color: var(--cream-dim);
  margin: 0 0 26px;
}

/* Sections */
section { padding: 70px 0; }
section.alt { background: var(--black-2); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.section-head .kicker {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--copper);
}
.section-head h2 { font-size: 34px; margin: 10px 0 14px; }
.section-head p { color: var(--cream-dim); font-size: 19px; }

/* Collections grid on homepage */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.collection-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.collection-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.collection-card .thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.collection-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover .thumb img { transform: scale(1.06); }
.collection-card .info { padding: 18px 20px 22px; }
.collection-card h3 { font-size: 21px; margin: 0 0 6px; }
.collection-card p { font-size: 16px; color: var(--cream-dim); margin: 0 0 12px; }
.collection-card .count {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--copper);
  text-transform: uppercase;
}

/* Gallery grid (collection pages) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.piece {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 4px;
  overflow: hidden;
}
.piece .thumb { aspect-ratio: 3 / 4; overflow: hidden; cursor: pointer; }
.piece .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.piece:hover .thumb img { transform: scale(1.05); }
.piece .info { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.piece h3 { font-size: 18px; margin: 0; color: var(--cream); font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.piece .buy {
  align-self: flex-start;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 3px;
}
.piece .buy:hover { border-color: var(--gold); background: rgba(201,162,75,0.08); }

/* About / story */
.story {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.story img { border-radius: 4px; border: 1px solid var(--line); }
.story h2 { font-size: 30px; }
.story p { color: var(--cream-dim); font-size: 19px; }
@media (max-width: 760px) {
  .story { grid-template-columns: 1fr; }
}

/* Breadcrumb / page hero small */
.page-hero {
  padding: 50px 0 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero .kicker {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--copper);
}
.page-hero h1 { font-size: 38px; margin: 10px 0 8px; }
.page-hero p { color: var(--cream-dim); font-size: 18px; max-width: 640px; margin: 0 auto; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,5,4,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 90vw; border: 1px solid var(--line); border-radius: 4px; }
.lightbox .close {
  position: absolute;
  top: 24px; right: 32px;
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--cream);
  cursor: pointer;
}
.lightbox .close:hover { color: var(--gold-bright); }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 46px 0 60px;
  text-align: center;
  color: var(--cream-dim);
  font-size: 15px;
}
footer .brand-name { display: inline-block; margin-bottom: 8px; }
footer a { color: var(--gold-bright); }
footer .foot-links { margin: 14px 0; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Divider ornament */
.ornament {
  text-align: center;
  color: var(--copper);
  font-size: 22px;
  margin: 6px 0 30px;
  letter-spacing: 0.3em;
}

@media (max-width: 640px) {
  .hero-inner h1 { font-size: 32px; }
  .story { gap: 30px; }

  .nav-inner { padding: 12px 16px; gap: 10px; justify-content: center; text-align: center; }
  .brand-link { order: 1; width: 100%; justify-content: center; }
  nav.main-nav { order: 3; width: 100%; justify-content: center; gap: 18px; }
  .btn-etsy { order: 2; }
  .brand-link img { height: 36px; width: 36px; }
  .brand-name { font-size: 15px; }
  .brand-name small { font-size: 9px; }
  .btn-etsy { padding: 8px 12px; font-size: 11px; white-space: nowrap; }
}
