/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #050509;
  color: #f5f5f5;
  line-height: 1.6;
}

/* ===== THEME ===== */
:root {
  --bg-main: #050509;
  --bg-elevated: #111119;
  --bg-elevated-soft: #181822;
  --gold: #f5c56c;
  --gold-soft: #c89b47;
  --accent-red: #ff4b4b;
  --text-main: #f5f5f5;
  --text-muted: #b0b0c0;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
  --radius-lg: 18px;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: radial-gradient(circle at top, #12121c, #050509);
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.section p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.section-heading-center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.section-heading-center p {
  margin-top: 0.6rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 9, 0.96),
    rgba(5, 5, 9, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 197, 108, 0.7);
  box-shadow: 0 0 0 2px rgba(245, 197, 108, 0.45);
  background: #000;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 99px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  background:
    radial-gradient(circle at top left, rgba(245, 197, 108, 0.1), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255, 75, 75, 0.12), transparent 55%),
    radial-gradient(circle at center, #050509, #050509);
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.45), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
  gap: 2.8rem;
  padding: 3.5rem 1.5rem 4.5rem;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.hero-text p {
  max-width: 500px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.accent {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.hero-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* HERO CARD */
.hero-card {
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-elevated-soft));
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(245, 197, 108, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: center;
}

.hero-card-with-logo {
  align-items: center;
}

.hero-logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, #f7d27f, var(--gold-soft));
  color: #111119;
  box-shadow: 0 12px 25px rgba(245, 197, 108, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(245, 197, 108, 0.55);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(245, 197, 108, 0.5);
  color: var(--gold);
}

.btn.ghost:hover {
  background: rgba(245, 197, 108, 0.08);
}

.btn.small {
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
}

.btn.full-width {
  width: 100%;
}

/* ===== STORY HIGHLIGHT ===== */
.story-highlight {
  background: var(--bg-elevated-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.story-highlight h3 {
  margin-bottom: 0.5rem;
}

.story-highlight ul {
  list-style: none;
  font-size: 0.93rem;
}

.story-highlight li {
  margin-bottom: 0.4rem;
}

/* ===== EXPERIENCE CARD ===== */
.experience-card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 197, 108, 0.18);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.experience-card h3 {
  margin-bottom: 0.5rem;
}

.experience-card ul {
  list-style: none;
  font-size: 0.93rem;
  margin-bottom: 0.6rem;
}

.experience-card li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1rem;
}

.experience-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.6rem;
  color: var(--gold);
}

.experience-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== MERCH CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.product-image {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-logo img {
  max-height: 130px;
  max-width: 90%;
  object-fit: contain;
}

.product-body {
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

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

.product-body p {
  font-size: 0.9rem;
}

.product-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== COMMUNITY CARD ===== */
.community-card {
  background: var(--bg-elevated-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.community-card h3 {
  margin-bottom: 0.5rem;
}

.community-card ul {
  list-style: none;
  font-size: 0.93rem;
}

.community-card li {
  margin-bottom: 0.4rem;
}

/* ===== FORM ===== */
.contact-form {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  border: 1px solid rgba(245, 197, 108, 0.2);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(245, 197, 108, 0.45);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem 0 2rem;
  background: #050509;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-subtext {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 360px;
    margin: 0 auto;
  }

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

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

  .nav-links {
    position: absolute;
    top: 60px;
    right: 1.5rem;
    flex-direction: column;
    gap: 0.7rem;
    background: rgba(5, 5, 9, 0.98);
    padding: 0.9rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(245, 197, 108, 0.18);
    box-shadow: var(--shadow-soft);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-top: 3rem;
  }

  .nav-container {
    padding-inline: 1rem;
  }

  .container {
    padding-inline: 1.25rem;
  }
}
