/* Harvest Moon Guitars - Shared Framework */
:root {
  --cream: #f5f0e8;
  --warm-white: #faf7f2;
  --gold: #c8983a;
  --gold-light: #e8b85a;
  --deep-brown: #1a1008;
  --brown: #3d2410;
  --mid-brown: #7a4e28;
  --bark: #a0724a;
  --text: #2c1a0a;
  --text-light: #6b4c2e;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--deep-brown);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}
/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(26,16,8,0.97);
  border-bottom: 1px solid rgba(200,152,58,0.1);
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  letter-spacing: 0.15em; color: var(--gold);
  text-transform: uppercase; text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a, .nav-links button {
  font-family: 'Josefin Sans', sans-serif; font-weight: 300;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; transition: color 0.3s;
  background: none; border: none; padding: 0; cursor: pointer;
  line-height: inherit; vertical-align: baseline;
}
.nav-links a:hover, .nav-links button:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); }
/* DROPDOWN (click-only) */
.nav-item { position: relative; }
.nav-item .dropdown {
  display: none; position: absolute;
  top: calc(100% + 0.75rem); left: 50%; transform: translateX(-50%);
  background: rgba(26,16,8,0.97); border: 1px solid rgba(200,152,58,0.25);
  min-width: 250px; padding: 0.5rem 0; list-style: none; z-index: 200;
}
.nav-item.open .dropdown { display: block; }
.dropdown li a {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 1.25rem;
  font-family: 'Josefin Sans', sans-serif; font-weight: 300;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.dropdown li a:hover { background: rgba(200,152,58,0.12); color: var(--gold-light); }
.nav-chevron {
  display: inline-block; margin-left: 0.3rem; font-size: 0.5rem;
  vertical-align: middle; opacity: 0.6; transition: transform 0.25s;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); }
/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 0.25rem; z-index: 110;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--cream);
  transition: all 0.3s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* MOBILE NAV */
@media (max-width: 640px) {
  .hamburger { display: flex; }
  nav { padding: 1.5rem 2rem; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18,10,4,0.98); flex-direction: column;
    align-items: center; justify-content: center; gap: 0;
    z-index: 105; padding: 2rem 0; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; text-align: center; border-bottom: 1px solid rgba(200,152,58,0.1); }
  .nav-links > li > a, .nav-links > li > button {
    display: block; padding: 1.1rem 2rem; font-size: 0.8rem;
    letter-spacing: 0.3em; width: 100%; text-align: center;
  }
  .nav-item .dropdown {
    position: static; transform: none; width: 100%; border: none;
    border-top: 1px solid rgba(200,152,58,0.1);
    background: rgba(200,152,58,0.05); padding: 0;
  }
  .dropdown li a {
    justify-content: flex-start; padding: 0.9rem 2.5rem;
    font-size: 0.65rem; border-bottom: 1px solid rgba(200,152,58,0.07);
    white-space: normal; text-align: left;
  }
}
/* BREADCRUMB */
.breadcrumb {
  font-family: 'Josefin Sans', sans-serif; font-weight: 200;
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.2s;
}
.breadcrumb a { color: var(--gold); text-decoration: none; opacity: 0.7; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: 0.4; margin: 0 0.5rem; }

/* PAGE TITLE */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 400;
  color: var(--warm-white); line-height: 1.05;
  opacity: 0; animation: fadeUp 0.6s ease forwards 0.35s;
}
.page-title em { font-style: italic; color: var(--gold-light); }

/* DIVIDER */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 2.5rem 6rem;
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,152,58,0.35), transparent);
}
.divider-icon { color: var(--gold); font-size: 0.9rem; opacity: 0.5; }

/* SECTION EYEBROW */
.section-eyebrow {
  font-family: 'Josefin Sans', sans-serif; font-weight: 200;
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
/* FOOTER */
footer {
  padding: 3rem 6rem; border-top: 1px solid rgba(200,152,58,0.1);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--gold); letter-spacing: 0.1em;
}
.footer-copy {
  font-family: 'Josefin Sans', sans-serif; font-weight: 200;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream); opacity: 0.7;
}
/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 1000;
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh; object-fit: contain;
  border: 1px solid rgba(200,152,58,0.2);
}
.lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream);
  background: none; border: none; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* COMMON RESPONSIVE */
@media (max-width: 1100px) {
  .divider { padding-left: 3rem; padding-right: 3rem; }
  footer { padding: 2.5rem 3rem; }
}
@media (max-width: 640px) {
  .divider { padding-left: 1.5rem; padding-right: 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
}
