: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;
  }
 
  /* ── 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); }
 
  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--panel);
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
  }
 
  /* Halftone dots background */
  .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;
  }
 
  /* Diagonal accent stripe */
  .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;
  }
 
  /* ── 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);
  }
 
  .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%);
  }
 
  /* ── 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;
  }
 
  /* ── VISIT / 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;
    font-size: 0.9rem;
    color: #3a2a1a;
    padding-left: 1.4rem;
    position: relative;
  }
  .perks-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--ruby);
    font-size: 0.55rem;
    top: 0.6rem;
  }
 
  /* Membership card */
  .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;
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    nav { padding: 0.9rem 1.2rem; }
    .nav-links { gap: 1.2rem; }
    .nav-links a { font-size: 0.7rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-stat-row { flex-wrap: wrap; }
    .btn-outline { margin-left: 0; margin-top: 0.8rem; }
  }
 
  /* ── 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);
    grid-template-rows: auto auto;
    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; }
  }
 
  /* ── LIGHTBOX ── */
  .lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,6,3,0.92);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
  }
  .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); }
 
  .gallery-item { cursor: pointer; }
  .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; }
 
  /* ── ENTRANCE ANIMATIONS ── */
  @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; }  :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;
  }
 
  /* ── 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); }
 
  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--panel);
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
  }
 
  /* Halftone dots background */
  .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;
  }
 
  /* Diagonal accent stripe */
  .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;
  }
 
  /* ── 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);
  }
 
  .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%);
  }
 
  /* ── 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;
  }
 
  /* ── VISIT / 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;
    font-size: 0.9rem;
    color: #3a2a1a;
    padding-left: 1.4rem;
    position: relative;
  }
  .perks-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--ruby);
    font-size: 0.55rem;
    top: 0.6rem;
  }
 
  /* Membership card */
  .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;
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    nav { padding: 0.9rem 1.2rem; }
    .nav-links { gap: 1.2rem; }
    .nav-links a { font-size: 0.7rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-stat-row { flex-wrap: wrap; }
    .btn-outline { margin-left: 0; margin-top: 0.8rem; }
  }
 
  /* ── 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);
    grid-template-rows: auto auto;
    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; }
  }
 
  /* ── LIGHTBOX ── */
  .lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,6,3,0.92);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
  }
  .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); }
 
  .gallery-item { cursor: pointer; }
  .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; }
 
  /* ── ENTRANCE ANIMATIONS ── */
  @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; }
/* ── 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;
}