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

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

:root {
  --black: #0a0a0f;
  --dark: #111118;
  --dark-2: #1a1a24;
  --dark-3: #242433;
  --amber: #c8892a;
  --amber-light: #e8a84a;
  --amber-glow: rgba(200, 137, 42, 0.15);
  --parchment: #d4c4a0;
  --parchment-light: #efe4c8;
  --cream: #f5edd8;
  --muted: rgba(212, 196, 160, 0.55);
  --border: rgba(200, 137, 42, 0.2);
  --border-light: rgba(200, 137, 42, 0.08);
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --radius: 4px;
  --shadow-amber: 0 0 40px rgba(200, 137, 42, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--parchment);
  background: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
li { list-style: none; }
img { max-width: 100%; display: block; }

/* GRAIN OVERLAY */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* TYPOGRAPHY */
.section-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}

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

.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-style: italic;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 250ms ease;
}

.btn--primary {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  box-shadow: 0 0 30px rgba(200,137,42,0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(212,196,160,0.3);
}
.btn--ghost:hover {
  border-color: var(--parchment);
  transform: translateY(-2px);
}

.btn--amber {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
  font-size: 11px;
  padding: 10px 18px;
  font-weight: 600;
}
.btn--amber:hover {
  background: var(--amber-light);
  box-shadow: 0 0 20px rgba(200,137,42,0.3);
}

.btn--ghost-sm {
  background: transparent;
  color: var(--muted);
  border-color: rgba(212,196,160,0.2);
  font-size: 11px;
  padding: 10px 18px;
}
.btn--ghost-sm:hover { border-color: var(--amber); color: var(--amber); }

.btn--sm { font-size: 11px; padding: 10px 18px; }
.btn--full { width: 100%; justify-content: center; }

/* HEADER / NAV */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.header.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--cream);
  letter-spacing: 1px;
}

.nav__logo-moon {
  font-size: 22px;
  color: var(--amber);
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 200ms ease;
}

.nav__link:hover { color: var(--cream); }

.nav__link--cta {
  background: var(--amber);
  color: var(--black);
  font-weight: 600;
  padding: 10px 20px;
}
.nav__link--cta:hover {
  background: var(--amber-light);
  color: var(--black);
  box-shadow: 0 0 20px rgba(200,137,42,0.3);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--parchment);
  border-radius: 2px;
  transition: all 280ms ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px 28px;
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 300ms ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--parchment);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav__link--cta {
  margin-top: 16px;
  display: block;
  background: var(--amber);
  color: var(--black);
  padding: 14px 24px;
  border-radius: var(--radius);
  border: none;
  text-align: center;
  font-weight: 600;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 28px;
}

.hero__bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  color: rgba(200,137,42,0.03);
  letter-spacing: 20px;
  user-select: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,137,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  text-align: center;
  max-width: 680px;
  position: relative;
  z-index: 2;
  animation: fade-up 800ms 100ms both;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero__headline em {
  color: var(--amber);
  font-style: italic;
  font-family: var(--font-body);
  font-size: 0.85em;
}

.hero__sub {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
  font-style: italic;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__runes {
  font-size: 20px;
  color: var(--amber);
  opacity: 0.6;
  letter-spacing: 8px;
}

/* CANDLES */
.hero__candles {
  position: absolute;
  bottom: 0;
  right: 8%;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  z-index: 1;
  opacity: 0.6;
}

.hero__candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.candle__body {
  width: 16px;
  height: 80px;
  background: linear-gradient(to right, #2a2018, #4a3828, #2a2018);
  border-radius: 2px 2px 0 0;
}

.candle__body--tall { height: 120px; }
.candle__body--short { height: 50px; }

.candle__flame {
  width: 10px;
  height: 18px;
  background: var(--amber);
  border-radius: 50% 50% 30% 30%;
  box-shadow: 0 0 12px 4px rgba(200,137,42,0.5), 0 0 30px 8px rgba(200,137,42,0.2);
  animation: flicker 1.8s ease-in-out infinite;
  margin-bottom: 2px;
}

@keyframes flicker {
  0%, 100% { transform: scaleX(1) scaleY(1); opacity: 1; }
  25% { transform: scaleX(0.85) scaleY(1.1); opacity: 0.9; }
  50% { transform: scaleX(1.1) scaleY(0.95); opacity: 1; }
  75% { transform: scaleX(0.9) scaleY(1.05); opacity: 0.95; }
}

/* STRIP */
.strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}

.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
}

.strip__dot { color: var(--border); }

/* PRODUCTS */
.products {
  padding: 96px 0;
  background: var(--black);
}

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

.product-card {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 300ms ease;
  opacity: 0;
  transform: translateY(24px);
}

.product-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-amber);
  transform: translateY(-4px);
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1a24;  /* ADD THIS */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.65);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 300ms ease;
}

.product-card:hover .product-card__overlay { opacity: 1; }

.product-card__overlay-text {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--cream);
}

.product-card__img-wrap--soon {
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-light);
}

.product-card__soon-inner {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
}

.product-card__soon-moon {
  display: block;
  font-size: 36px;
  color: var(--amber);
  opacity: 0.4;
  margin-bottom: 12px;
}

.product-card__body { padding: 24px; }

.product-card__category {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 8px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
  text-align: left;
}

.product-card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  text-align: left;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--amber);
  letter-spacing: 0.5px;
}

/* CRAFT */
.craft {
  padding: 96px 0;
  background: var(--dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.craft__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

.craft__para {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
}

.craft__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.craft__value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-16px);
  transition: all 400ms ease;
}

.craft__value.revealed { opacity: 1; transform: translateX(0); }

.craft__value-icon {
  font-size: 18px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
  text-align: center;
}

.craft__value strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--cream);
  margin-bottom: 4px;
}

.craft__value p {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.craft__img-block { position: relative; }

.craft__img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  filter: brightness(0.85) contrast(1.1);
}

.craft__ingredient-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  max-width: 280px;
}

.craft__ingredient-title {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.craft__ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.craft__ingredient-list li {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

/* INGREDIENTS */
.ingredients {
  padding: 96px 0;
  background: var(--black);
}

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

.ingredient {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 280ms ease;
  opacity: 0;
  transform: translateY(16px);
}

.ingredient.revealed {
  opacity: 1;
  transform: translateY(0);
}

.ingredient:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-amber);
  transform: translateY(-4px);
}

.ingredient__icon {
  font-size: 28px;
  margin-bottom: 14px;
  filter: grayscale(0.3);
}

.ingredient__name {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--cream);
  margin-bottom: 8px;
  text-align: center;
}

.ingredient__desc {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

/* CONTACT */
.contact {
  padding: 96px 0;
  background: var(--dark);
  border-top: 1px solid var(--border-light);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact__headline {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 14px;
  text-align: left;
  line-height: 1.2;
}

.contact__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
  text-align: left;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--parchment);
  font-style: italic;
  transition: color 200ms ease;
}

.contact__detail:hover { color: var(--amber); }
.contact__detail i { color: var(--amber); width: 18px; }

.contact__note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--amber);
  text-transform: uppercase;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--amber-glow);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--parchment);
  background: var(--dark-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 200ms ease;
  width: 100%;
  font-style: italic;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px var(--amber-glow);
}

.contact-form__field select option { background: var(--dark-2); }
.contact-form__field textarea { resize: vertical; }

.contact-form__success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--amber-glow);
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-style: italic;
}

.contact-form__success.visible { display: flex; }

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__moon {
  font-size: 32px;
  color: var(--amber);
  opacity: 0.7;
}

.footer__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--cream);
  margin-bottom: 2px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.footer__divider {
  width: 100%;
  max-width: 500px;
  height: 1px;
  background: var(--border-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__copy {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.footer__credit {
  font-size: 12px;
  color: var(--muted);
}

.footer__credit a {
  color: var(--amber);
  transition: color 200ms ease;
}

.footer__credit a:hover { color: var(--amber-light); }

/* ANIMATIONS */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .products__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .craft__inner { grid-template-columns: 1fr; }
  .craft__ingredient-card { display: none; }
  .ingredients__grid { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__candles { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .mobile-nav { display: flex; }
  .ingredients__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .strip__dot { display: none; }
}
