:root {
  --ink: #1a1208;
  --cream: #f5ede0;
  --aged: #e8d9c0;
  --ruby: #9b1c2e;
  --ruby-dark: #6e1220;
  --gold: #c9922a;
  --gold-light: #e8b84b;
  --rust: #8b3a1f;
  --panel: #2a1a0e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── MODAL OPEN (iOS scroll lock) ── */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: calc(-1 * var(--scroll-y, 0px));
  left: 0;
  right: 0;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: var(--panel);
  border-bottom: 3px solid var(--gold);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  color: var(--aged);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
  .hamburger { display: flex; }

  nav { padding: 1rem 1.5rem; position: relative; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--panel);
    border-top: 1px solid rgba(201,146,42,0.3);
    border-bottom: 3px solid var(--gold);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 99;
    padding: 0.5rem 0;
  }

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

  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.78rem !important;
    width: 100%;
  }

  .nav-links a:hover { background: rgba(255,255,255,0.05); }
  .about-grid, .contact-grid { grid-template-columns: 1fr !important; }
  .about-stat-row { flex-wrap: wrap; }
  .btn-outline { margin-left: 0; margin-top: 0.8rem; }
  .membership-card { margin-top: 2rem; }
  .about-card { margin-top: 2rem; }
}

@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr !important; }
  .membership-card { margin-top: 2rem; }
  .about-card { margin-top: 2rem; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--panel);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--ruby-dark) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.25;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -10%;
  width: 120%;
  height: 120px;
  background: var(--cream);
  transform: rotate(-2deg);
}

.hero-inner { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.2em;
}

.hero h1 span { color: var(--ruby); }

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold-light);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--ruby); color: var(--cream); }
.btn-primary:hover { background: var(--ruby-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(155,28,46,0.4); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  margin-left: 1rem;
}
.btn-outline:hover { background: var(--gold); color: var(--panel); }

/* ── SECTION BASE ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ruby);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

/* ── ABOUT ── */
#about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3a2a1a;
  margin-bottom: 1.2rem;
}

.about-stat-row { display: flex; gap: 2rem; margin-top: 2rem; }

.stat { border-left: 3px solid var(--ruby); padding-left: 1rem; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--ruby);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6a4a2a;
  margin-top: 0.2rem;
}

.about-card {
  background: var(--panel);
  color: var(--cream);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '★';
  font-size: 12rem;
  position: absolute;
  top: -2rem; right: -2rem;
  opacity: 0.05;
  line-height: 1;
}

.about-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: var(--aged);
}
.hours-list li span { color: var(--gold); font-weight: 500; }

.appt-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-style: italic;
}

/* ── INSIDE THE SHOP ── */
#inside { background: var(--ink); }
#inside .section-title { color: var(--cream); }
#inside .section-label { color: var(--gold); }
#inside p { color: var(--aged) !important; }

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.store-photo--wide { grid-column: span 2; }

.store-photo {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}

.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.92) contrast(1.04);
}

.store-photo:hover img { transform: scale(1.04); filter: brightness(1) contrast(1.06); }

.store-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,6,3,0.88) 0%, transparent 100%);
  color: var(--aged);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.5rem 1rem 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.store-photo:hover .store-caption { transform: translateY(0); }

@media (max-width: 700px) {
  .store-grid { grid-template-columns: 1fr 1fr; }
  .store-photo--wide { grid-column: span 2; }
}

/* ── GALLERY ── */
#gallery { background: var(--aged); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--panel);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: sepia(15%) contrast(1.05);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.6) 0%, transparent 50%);
}

.gallery-item .zoom-hint {
  position: absolute;
  bottom: 0.8rem; right: 0.8rem;
  z-index: 2;
  background: var(--ruby);
  color: var(--cream);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-item:hover .zoom-hint { opacity: 1; }

/* ── LOAD MORE ── */
.gallery-item--hidden { display: none; }

.gallery-item--fade-in {
  display: block;
  animation: fadeUp 0.4s ease both;
}

.load-more-wrap { text-align: center; margin-top: 2.5rem; }

.btn-load-more {
  background: transparent;
  border: 2px solid var(--ruby);
  color: var(--ruby);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.9rem 2.4rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-load-more:hover {
  background: var(--ruby);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155,28,46,0.35);
}

.load-more-count { opacity: 0.7; font-size: 0.75rem; }

/* ── REVIEWS ── */
#reviews { background: var(--panel); }
#reviews .section-title { color: var(--cream); }
#reviews .section-label { color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,146,42,0.25);
  padding: 1.8rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--ruby);
  position: absolute;
  top: -0.5rem; left: 1rem;
  line-height: 1;
  opacity: 0.6;
}

.review-text { font-size: 0.92rem; line-height: 1.75; color: var(--aged); padding-top: 1.5rem; }
.stars { margin-top: 1rem; color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ── CONTACT ── */
#contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.info-block { margin-bottom: 2rem; }
.info-block h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--ruby);
  margin-bottom: 0.5rem;
}
.info-block p, .info-block a { font-size: 0.95rem; line-height: 1.7; color: #3a2a1a; text-decoration: none; }
.info-block a:hover { color: var(--ruby); }

.perks-list { list-style: none; margin-top: 0.5rem; }
.perks-list li { padding: 0.4rem 0 0.4rem 1.4rem; font-size: 0.9rem; color: #3a2a1a; position: relative; }
.perks-list li::before { content: '◆'; position: absolute; left: 0; color: var(--ruby); font-size: 0.55rem; top: 0.6rem; }

.membership-card {
  background: var(--ruby);
  padding: 2.5rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: 'CLUB';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  position: absolute;
  right: -1.5rem; bottom: -1.5rem;
  opacity: 0.08;
  line-height: 1;
  letter-spacing: -0.05em;
}

.membership-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.membership-card p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

.discount-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--panel);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  padding: 0.2rem 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--aged);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 3px solid var(--ruby);
}
footer span { color: var(--gold); }

/* ── DIVIDER ── */
.comic-divider {
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--ruby) 0px, var(--ruby) 20px, var(--gold) 20px, var(--gold) 40px, var(--panel) 40px, var(--panel) 60px);
  opacity: 0.6;
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,6,3,0.92);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lightbox-overlay.open { display: flex; }

.lightbox-box {
  background: var(--panel);
  border: 2px solid var(--gold);
  max-width: 780px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.25s ease both;
}

@media (max-width: 600px) {
  .lightbox-box { grid-template-columns: 1fr; }
  .lightbox-img-wrap { aspect-ratio: 4/3; }
}

.lightbox-img-wrap { background: #111; overflow: hidden; }
.lightbox-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(10%) contrast(1.05); }

.lightbox-info { padding: 2.2rem; display: flex; flex-direction: column; justify-content: space-between; }

.lightbox-tag { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; }

.lightbox-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.05em; color: var(--cream); line-height: 1.05; margin-bottom: 1rem; }

.lightbox-desc { font-size: 0.9rem; line-height: 1.75; color: var(--aged); flex: 1; }

.lightbox-meta { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(201,146,42,0.2); }

.lightbox-meta-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--aged); padding: 0.3rem 0; }
.lightbox-meta-row span:last-child { color: var(--gold-light); font-weight: 500; }

.lightbox-close {
  position: absolute;
  top: 0.8rem; right: 1rem;
  background: none;
  border: none;
  color: var(--aged);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10;
}
.lightbox-close:hover { color: var(--ruby); }

/* ── JULY 4TH POPUP ── */
.july4-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,6,3,0.88);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.july4-overlay.july4-visible { display: flex; animation: fadeUp 0.35s ease both; }

.july4-box {
  background: var(--panel);
  border: 3px solid #b22234;
  max-width: 400px;
  width: 100%;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
}

.july4-flag { font-size: 2.5rem; margin-bottom: 0.8rem; }

.july4-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.08em; color: #fff; margin-bottom: 0.8rem; }

.july4-box p { font-size: 0.88rem; line-height: 1.6; color: var(--aged); margin-bottom: 0.6rem; }
.july4-box p strong { color: #fff; }

.july4-close {
  position: absolute;
  top: 0.7rem; right: 0.9rem;
  background: none;
  border: none;
  color: var(--aged);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.july4-close:hover { color: #b22234; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: fadeUp 0.6s ease both; }
.hero h1    { animation: fadeUp 0.6s 0.15s ease both; }
.hero-sub   { animation: fadeUp 0.6s 0.25s ease both; }
.hero .btns { animation: fadeUp 0.6s 0.35s ease both; }