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

:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-surface-alt: #1a1a1a;
  --color-accent: #c8102e;
  --color-accent-dark: #9b0d23;
  --color-gold: #d4a853;
  --color-text: #f0ece4;
  --color-text-muted: #a09a90;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-accent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--color-text);
}

.section-title.center {
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: 0.3s;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/product-hot.jpg') center/cover no-repeat;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.3);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-accent);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: var(--color-accent-dark);
  color: white;
  transform: translateY(-2px);
}

/* === Story === */
.story {
  background: var(--color-surface);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.story-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.story-text em {
  color: var(--color-text);
  font-style: italic;
}

/* === Mission === */
.mission {
  background: linear-gradient(135deg, var(--color-accent-dark), #2a0a10);
  text-align: center;
  padding: 80px 0;
}

.mission blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 16px;
  font-style: italic;
}

.mission cite {
  color: var(--color-gold);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}

/* === Flavors === */
.flavors {
  background: var(--color-bg);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.flavor-card {
  background: var(--color-surface);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.flavor-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.flavor-info {
  padding: 24px;
}

.flavor-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--color-gold);
}

.flavor-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* === Gallery === */
.gallery {
  background: var(--color-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* === Utah === */
.utah {
  background: var(--color-bg);
  text-align: center;
}

.utah-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.8;
}

/* === Great For === */
.great-for {
  background: var(--color-surface);
}

.uses-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.use-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.use-icon {
  font-size: 2.5rem;
}

/* === Contact === */
.contact {
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-top: 40px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.contact-item p {
  color: var(--color-text-muted);
}

.contact-item a {
  color: var(--color-gold);
}

/* === Footer === */
.footer {
  background: var(--color-surface);
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid #222;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

.footer p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-tagline {
  font-style: italic;
  color: var(--color-gold);
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-image {
    order: -1;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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