:root {
  --bg: #1e1d16;
  --shell: #08090d;
  --panel: #0a0b11;
  --line: #1f212d;
  --text: #f1eee4;
  --muted: #a3a6b4;
  --gold: #d8bf62;
  --gold-soft: #8f7a3d;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(60% 50% at 10% 10%, rgba(216, 191, 98, 0.08) 0%, transparent 70%),
    radial-gradient(45% 45% at 100% 0%, rgba(216, 191, 98, 0.06) 0%, transparent 78%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

.page-shell {
  width: min(100% - 2rem, 1420px);
  margin: 2rem auto;
  border: 1px solid rgba(216, 191, 98, 0.18);
  border-radius: 32px;
  background: linear-gradient(170deg, #06070d 0%, #070810 52%, #06070b 100%);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.panel {
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #090a10, #05060a);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(5, 6, 10, 0.85);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(216, 191, 98, 0.35);
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

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

.btn {
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(216, 191, 98, 0.4);
  color: var(--gold);
}

main {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 3.3fr 1fr;
  gap: 1rem;
}

.hero-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  padding: 1.2rem;
  min-height: 420px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2rem, 3.4vw, 4rem);
  margin: 0.7rem 0 0.9rem;
  max-width: 16ch;
}

.hero-copy p {
  color: var(--muted);
  margin: 0;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.btn-gold {
  color: #1d1608;
  background: linear-gradient(135deg, #9f843f, #ddc96f 55%, #f2e19d);
}

.btn-dark {
  color: var(--text);
  border: 1px solid #272a36;
  background: #121522;
}

.hero-inline-note {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.2rem;
}

.hero-inline-note strong {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.hero-inline-note span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-image {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #222533;
  min-height: 360px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-metrics {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  align-content: stretch;
}

.hero-metrics > div {
  border: 1px solid #252735;
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  background: #0c0e15;
}

.metric-value {
  margin: 0;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
}

.metric-label {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.products,
.gallery {
  padding: 0.2rem;
}

.section-head {
  padding: 0.7rem 0.35rem 0.1rem;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  margin-top: 0.45rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.85rem;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-bottom: 1px solid #232534;
}

.product-body {
  padding: 0.9rem;
}

.product-body h3 {
  font-size: 1.6rem;
}

.type {
  margin: 0.12rem 0 0.65rem;
  color: var(--gold);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.line {
  margin: 0.35rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.story-card {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.story-copy p {
  color: var(--muted);
  max-width: 60ch;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #242633;
  min-height: 300px;
}

.craft-card {
  padding: 1rem;
}

.craft-head {
  margin-bottom: 1rem;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.craft-grid > div {
  border: 1px solid #242735;
  border-radius: 12px;
  padding: 0.9rem;
  background: #0b0d14;
}

.craft-grid h3 {
  font-size: 1.35rem;
}

.craft-grid p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.gallery-grid {
  margin-top: 0.85rem;
  columns: 3 220px;
  column-gap: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  border: 1px solid #262938;
}

.footer {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.section-reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .craft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .page-shell {
    width: min(100% - 1rem, 1420px);
    margin: 0.5rem auto;
    border-radius: 18px;
  }

  .topbar {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.8rem;
  }

  .brand {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .story-card {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 20ch;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 0.75rem;
  }

  .nav a {
    font-size: 0.82rem;
  }

  .product-grid,
  .craft-grid {
    grid-template-columns: 1fr;
  }

  .hero-main {
    min-height: auto;
  }
}
