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

:root {
  --night: #100b08;
  --umber: #23160f;
  --wine: #6b1c24;
  --gold: #c4a05a;
  --candle: #e6c98a;
  --parchment: #ead9b8;
  --ivory: #f4ead8;
  --muted: #b8a88a;
  --display: "Cinzel", "Times New Roman", serif;
  --serif: "Cormorant Garamond", Palatino, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--night);
  color: var(--parchment);
  font-family: var(--serif);
  min-height: 100svh;
}
img { max-width: 100%; display: block; outline: 1px solid rgba(196,160,90,0.18); outline-offset: -1px; }
a { color: inherit; text-decoration: none; }
button, [role="button"] { cursor: pointer; font: inherit; }
h1, h2, h3 { font-family: var(--display); text-wrap: balance; letter-spacing: 0.04em; margin: 0; }
p { text-wrap: pretty; }
::selection { background: var(--wine); color: var(--ivory); }

.grain::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }
.kicker {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.rule {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 16rem;
  margin: 1.6rem 0;
  color: var(--gold);
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(196,160,90,0.55), transparent);
}
.rule i {
  width: 8px; height: 8px; display: block;
  background: currentColor;
  clip-path: polygon(35% 0, 65% 0, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0 65%, 0 35%, 35% 35%);
}

.gold-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.6rem;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 0;
  transition: background-color 180ms ease, color 180ms ease, transform 150ms ease;
}
.gold-btn { background: var(--gold); color: var(--night); }
.gold-btn:hover { background: var(--candle); }
.ghost-btn { background: transparent; color: var(--gold); box-shadow: inset 0 0 0 1px rgba(196,160,90,0.45); }
.ghost-btn:hover { background: rgba(196,160,90,0.12); }
.gold-btn:active, .ghost-btn:active { transform: scale(0.96); }

header.top {
  position: fixed; inset: 0 0 auto; z-index: 50;
  background: linear-gradient(to bottom, rgba(16,11,8,0.92), rgba(16,11,8,0.4), transparent);
}
header.top.solid {
  background: rgba(16,11,8,0.94);
  box-shadow: 0 1px 0 rgba(196,160,90,0.28);
  backdrop-filter: blur(10px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { width: 40px; height: 40px; object-fit: cover; }
.brand small {
  display: block; font-family: var(--display);
  font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold);
}
.brand strong {
  display: block; font-family: var(--display); font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory);
}
.links { display: flex; gap: 1.7rem; align-items: center; }
.links a {
  font-family: var(--display); font-size: 0.62rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: rgba(244,234,216,0.9);
}
.links a:hover { color: var(--gold); }
.burger {
  display: none; width: 44px; height: 44px; background: none; border: 0; color: var(--gold); font-size: 1.4rem;
}

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero img.bg, .band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--night), rgba(16,11,8,0.55), rgba(16,11,8,0.25));
  box-shadow: inset 0 0 180px 40px rgba(16,11,8,0.72);
}
.hero .copy { position: relative; z-index: 2; padding: 8rem 0 5rem; max-width: 42rem; }
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.05; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ivory);
  margin: 0.6rem 0 0;
}
.hero h1 span { display: block; color: var(--gold); }
.hero .latin { font-size: 1.35rem; font-style: italic; color: var(--candle); margin: 1.1rem 0 0; }
.hero .lead { font-size: 1.35rem; line-height: 1.55; max-width: 36rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

section { padding: 5.5rem 0; }
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ivory); }
h2 span { display: block; color: var(--gold); }
.prose { font-size: 1.25rem; line-height: 1.6; }
.prose p + p { margin-top: 1.15rem; }
.muted { color: var(--muted); }
.caption { font-family: var(--display); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-top: 0.7rem; }

.band { position: relative; isolation: isolate; overflow: hidden; }
.band .shade { position: absolute; inset: 0; background: rgba(16,11,8,0.72); }
.band .inner { position: relative; z-index: 1; }
.cards { display: grid; gap: 1.4rem; margin-top: 3rem; }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { border: 1px solid rgba(196,160,90,0.2); background: rgba(16,11,8,0.5); padding: 1.5rem; }
.card h3 { font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.card p { font-size: 1.1rem; line-height: 1.55; }

.umber { background: var(--umber); }
.night { background: var(--night); }
.products { display: grid; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 800px) { .products { grid-template-columns: 1fr 1fr; } }
.product img { aspect-ratio: 3/4; width: 100%; object-fit: cover; }
.product .meta { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-end; margin-top: 1.1rem; }
.product h3 { font-size: 1.25rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ivory); }
.price { font-family: var(--display); color: var(--gold); font-size: 1.15rem; }

.panel { border: 1px solid rgba(196,160,90,0.25); background: rgba(16,11,8,0.7); padding: 1.6rem; }
label { display: block; margin-bottom: 1.1rem; }
.field {
  width: 100%; min-height: 44px; margin-top: 0.45rem;
  background: rgba(16,11,8,0.55); color: var(--parchment);
  border: 0; box-shadow: inset 0 0 0 1px rgba(196,160,90,0.28);
  padding: 0.7rem 0.9rem; font-family: var(--serif); font-size: 1.05rem;
}
.field:focus { outline: none; box-shadow: inset 0 0 0 1px var(--gold); }
.sizes { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.size {
  min-width: 44px; min-height: 44px;
  background: transparent; color: var(--parchment);
  box-shadow: inset 0 0 0 1px rgba(196,160,90,0.35);
  font-family: var(--display); font-size: 0.75rem; letter-spacing: 0.16em;
}
.size.on { background: var(--gold); color: var(--night); box-shadow: none; }

footer {
  background: var(--umber);
  border-top: 1px solid rgba(196,160,90,0.2);
  padding: 4rem 0 2.5rem;
}
.foot { display: grid; gap: 2rem; }
@media (min-width: 800px) { .foot { grid-template-columns: 1.2fr 1fr 1fr; } }
.legal { font-family: var(--display); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-top: 3rem; }

.mobile { display: none; }
@media (max-width: 800px) {
  .links { display: none; }
  .burger { display: grid; place-items: center; }
  .mobile.open {
    display: flex; flex-direction: column; gap: 0.2rem;
    padding: 0.5rem 1rem 1.2rem;
    background: rgba(16,11,8,0.96);
    border-top: 1px solid rgba(196,160,90,0.2);
  }
  .mobile a {
    min-height: 44px; display: flex; align-items: center;
    font-family: var(--display); letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.85rem;
  }
}

.hidden { display: none !important; }
.toast {
  position: fixed; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  z-index: 80; background: #1a120c; color: var(--parchment);
  border: 1px solid rgba(196,160,90,0.35);
  padding: 0.8rem 1.2rem; font-size: 1.05rem;
}
