:root {
  --bg-1: #081726;
  --bg-2: #0e2740;
  --bg-3: #153a5d;
  --ink: #f3efe7;
  --ink-muted: #c8d3e1;
  --gold: #d3ab60;
  --gold-strong: #e7bc67;
  --accent: #bc2b24;
  --card-bg: rgba(6, 18, 32, 0.65);
  --line: rgba(224, 187, 120, 0.25);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Outfit", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(231, 188, 103, 0.08), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(188, 43, 36, 0.16), transparent 40%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 48%, var(--bg-3) 100%);
  overflow-x: hidden;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  z-index: -1;
}

.site-header {
  width: min(1150px, 92vw);
  margin: 0 auto;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 216, 150, 0.5);
  box-shadow: 0 0 0 2px rgba(10, 30, 50, 0.4);
}

.brand-name {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 180ms ease;
}

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

main {
  width: min(1150px, 92vw);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0 3.5rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-strong);
  font-size: 0.77rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  line-height: 1.15;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 16ch;
}

.lead {
  margin-top: 1.2rem;
  color: var(--ink-muted);
  max-width: 58ch;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.76rem 1.28rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #171e29;
  background: linear-gradient(140deg, #f0c988, #cc9446);
  box-shadow: 0 10px 30px rgba(196, 143, 66, 0.35);
}

.btn-ghost {
  border-color: rgba(239, 207, 147, 0.35);
  color: var(--ink);
  background: rgba(14, 35, 56, 0.32);
}

.hero-art-wrap {
  position: relative;
}

.hero-art-wrap::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  border-radius: 28px;
  background: linear-gradient(130deg, rgba(231, 188, 103, 0.14), rgba(188, 43, 36, 0.12));
  filter: blur(16px);
  z-index: -1;
}

.hero-art {
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  border: 1px solid rgba(255, 216, 150, 0.25);
  box-shadow: var(--shadow);
}

.products,
.vision,
.site-footer {
  margin-top: 4.5rem;
}

.section-heading h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

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

.product-card {
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}

.product-card h3 {
  font-size: 1.3rem;
}

.product-card p {
  margin: 0.8rem 0 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.inline-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold-strong);
  text-decoration: none;
  border-bottom: 1px solid rgba(231, 188, 103, 0.32);
  padding-bottom: 0.15rem;
  transition: opacity 160ms ease;
}

.inline-link:hover {
  opacity: 0.85;
}

.inline-link.disabled {
  color: rgba(204, 212, 225, 0.75);
  border-bottom-color: rgba(204, 212, 225, 0.24);
  pointer-events: none;
}

.vision p,
.site-footer p {
  color: var(--ink-muted);
  max-width: 70ch;
  line-height: 1.7;
}

.site-footer {
  padding: 2rem 1.2rem 1.3rem;
  border: 1px solid rgba(255, 215, 150, 0.22);
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(7, 22, 37, 0.74), rgba(11, 30, 48, 0.68));
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 216, 150, 0.48);
}

.footer-title {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.footer-tagline {
  margin: 0.15rem 0 0;
  line-height: 1.45;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.footer-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-strong);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
}

.footer-links a:hover {
  color: var(--gold-strong);
  border-bottom-color: rgba(231, 188, 103, 0.42);
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 215, 150, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-note {
  margin: 0;
  font-size: 0.95rem;
  max-width: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 1.8rem;
  }

  .hero-art {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 0.85rem;
    flex-wrap: wrap;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
