:root {
  --bg: #0e0d0b;
  --panel: #171512;
  --panel-2: #221f1a;
  --text: #f4efe6;
  --muted: #c9bda9;
  --gold: #b98b47;
  --gold-light: #d6ad6a;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top left, #2b2116 0, var(--bg) 34rem);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1rem, 4vw, 4rem);
  background: rgba(10, 9, 8, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav { display: flex; gap: 1.4rem; align-items: center; }
.site-nav a { color: var(--muted); font-size: 0.95rem; text-decoration: none; }
.site-nav a:hover { color: var(--gold-light); }
.nav-toggle { display: none; }
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 7vw, 6rem);
}
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-family: Cinzel, Georgia, serif; line-height: 1.1; }
h1 { 
	/* max-width: 12ch; */
	margin-bottom: 1.3rem; font-size: 4vmax }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { margin-bottom: 0.75rem; font-size: 1.35rem; }
.hero-text { max-width: 42rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button-primary { background: var(--gold); color: #14100b; }
.button-primary:hover { background: var(--gold-light); }
.button-secondary { border-color: var(--line); color: var(--text); }
.button-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.product-placeholder {
  min-height: 34rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2rem;
  background: linear-gradient(145deg, var(--panel-2), #111);
  border: 2px dashed rgba(214, 173, 106, 0.42);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  color: var(--muted);
  text-align: center;
}
.product-placeholder span { color: var(--text); font-family: Cinzel, Georgia, serif; font-size: 1.5rem; }
.product-placeholder small { color: #9f927e; }
.product-placeholder.small { min-height: 22rem; }
.product-placeholder img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}
section { padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 7vw, 6rem); }
.section-narrow { max-width: 980px; margin: 0 auto; text-align: center; }
.story p, .cta p, .section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-heading { max-width: 850px; margin-bottom: 2rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature-card {
  overflow: hidden;
  background: rgba(23, 21, 18, 0.9);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 0.8rem;
}
.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0a0908;
  border-bottom: 1px solid var(--line);
}
.feature-content { padding: 1.6rem 1.75rem 1.8rem; }
.feature-card p { margin-bottom: 0; color: var(--muted); }
.gallery-section { background: #0a0908; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid img {
  width: 100%;
/*  height: 22rem; */
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid var(--line);
}
.collection-cta { padding-top: 5rem; padding-bottom: 5rem; }
.collection-cta .button { margin-top: 1rem; }
.cta { padding-bottom: 7rem; }
.signup-form { margin-top: 2rem; text-align: left; }
.signup-form label { display: block; margin-bottom: 0.5rem; color: var(--muted); font-weight: 700; }
.form-row { display: flex; gap: 0.8rem; }
input[type="email"] {
  flex: 1;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  background: #070706;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  color: var(--text);
  font: inherit;
}
.site-footer { padding: 2rem; background: #080706; color: #8d8270; text-align: center; }
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .feature-grid, .gallery-grid { grid-template-columns: 1fr; }
/*  .gallery-grid img { height: 18rem; } */
}
@media (max-width: 700px) {
  .nav-toggle {
    display: inline-flex;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0.35rem;
    color: var(--text);
  }
  .site-header { align-items: flex-start; }
  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 4.6rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: #100f0d;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
  }
  .site-nav.open { display: flex; }
  .form-row { flex-direction: column; }
}

/* Product collection */
.collection-hero { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: 2rem; }
.collection-hero h1 { max-width: none; margin-bottom: 1rem; font-size: clamp(2.6rem, 6vw, 5rem); }
.collection-hero > p:last-child { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 1.1rem; }
.product-collection { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.25rem); padding-top: 2rem; }
.product-card { overflow: hidden; background: rgba(23, 21, 18, 0.96); border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow); }
.product-carousel { position: relative; aspect-ratio: 14 / 11; overflow: hidden; background: #0a0908; }
.product-image-button { width: 100%; height: 100%; padding: 0; background: none; border: 0; cursor: zoom-in; }
.product-image-button img { width: 100%; height: 100%; object-fit: cover; }
.carousel-control, .lightbox-control, .lightbox-close { display: grid; place-items: center; background: rgba(9, 8, 7, 0.78); border: 1px solid rgba(255, 255, 255, 0.18); color: var(--text); cursor: pointer; }
.carousel-control { position: absolute; z-index: 2; top: 50%; width: 2.8rem; height: 2.8rem; border-radius: 50%; transform: translateY(-50%); font-size: 1.3rem; }
.carousel-control.previous { left: 0.8rem; }
.carousel-control.next { right: 0.8rem; }
.carousel-control:hover, .lightbox-control:hover, .lightbox-close:hover { border-color: var(--gold-light); color: var(--gold-light); }
.carousel-counter { position: absolute; right: 0.8rem; bottom: 0.8rem; padding: 0.3rem 0.65rem; background: rgba(9, 8, 7, 0.82); border-radius: 99px; color: var(--muted); font-size: 0.78rem; }
.product-card-body { display: grid; grid-template-columns: 1fr auto; gap: 0.6rem 1rem; padding: 1.5rem; }
.product-card-body h2 { margin-bottom: 0; font-size: clamp(1.55rem, 3vw, 2rem); }
.product-kicker { margin: 0 0 0.35rem; color: var(--gold-light); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.product-price { margin: 0; color: var(--gold-light); font-family: Cinzel, Georgia, serif; font-size: 1.5rem; font-weight: 700; }
.product-description { grid-column: 1 / -1; margin: 0.4rem 0 0.8rem; color: var(--muted); }
.product-order { grid-column: 1 / -1; justify-self: start; }
.lightbox { position: fixed; z-index: 1000; inset: 0; display: none; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1rem; padding: clamp(1rem, 3vw, 2.5rem); background: rgba(2, 2, 2, 0.96); }
.lightbox.open { display: grid; }
.lightbox-figure { min-width: 0; margin: 0; text-align: center; }
.lightbox-image { max-width: 100%; max-height: calc(100vh - 7rem); margin: 0 auto; object-fit: contain; }
.lightbox-caption { display: flex; justify-content: space-between; gap: 1rem; max-width: 1100px; margin: 0.65rem auto 0; color: var(--muted); font-size: 0.9rem; }
.lightbox-control { width: 3.25rem; height: 3.25rem; border-radius: 50%; font-size: 1.6rem; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; width: 3rem; height: 3rem; border-radius: 50%; font-size: 2rem; line-height: 1; }
body.lightbox-open { overflow: hidden; }
@media (max-width: 850px) {
  .product-collection { grid-template-columns: 1fr; }
  .lightbox { grid-template-columns: 1fr; padding: 3.8rem 1rem 1rem; }
  .lightbox-control { position: absolute; z-index: 2; top: 50%; width: 2.8rem; height: 2.8rem; transform: translateY(-50%); }
  .lightbox-control.previous { left: 0.7rem; }
  .lightbox-control.next { right: 0.7rem; }
  .lightbox-caption { padding: 0 0.25rem; }
}
@media (max-width: 520px) {
  .product-card-body { grid-template-columns: 1fr; }
  .product-price { grid-row: 2; }
  .product-description, .product-order { grid-column: 1; }
}
