/* ================================================================
   co.bold space — style.css
   Theme: Dark & Moody | Gold Accents | Cormorant + Bebas + DM Mono
   ================================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --black:      #0a0907;
  --dark:       #111009;
  --dark-2:     #1a1712;
  --dark-3:     #242118;
  --brown:      #3d2e1e;
  --brown-mid:  #5c4228;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale:  #f5e6b8;
  --cream:      #f0e6d0;
  --white:      #faf8f3;
  --gray:       #6b6355;
  --gray-light: #9e9485;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-mono:    'DM Mono', monospace;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1200px;
  --section-pad: 100px 0;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-serif);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; background: none; border: none; font: inherit; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-trail {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease-out;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--brown-mid); border-radius: 2px; }

/* ─── UTILITIES ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.dot { color: var(--gold); }
.italic { font-style: italic; }

/* ─── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  transition: var(--transition);
}
.nav.scrolled {
  padding: 16px 48px;
  background: rgba(10, 9, 7, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex; gap: 40px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.grain {
  position: absolute; 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");
  opacity: 0.6;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.c1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61, 46, 30, 0.6) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.c2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.c3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(92, 66, 40, 0.3) 0%, transparent 70%);
  top: 40%; left: 40%;
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
  animation-delay: 0.1s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: heroLineIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) {
  animation-delay: 0.5s;
  color: var(--gold);
  font-style: italic;
}
.hero-title .line:nth-child(3) { animation-delay: 0.7s; }

@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.8s ease 1s both;
}

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

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 1.2s both;
}

/* Buttons */
.btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-block;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 230, 208, 0.3);
}
.btn-ghost:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s ease 1.8s both;
  z-index: 1;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Big BG text */
.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(12rem, 30vw, 28rem);
  color: rgba(255,255,255, 0.015);
  bottom: -40px; right: -40px;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0; align-items: center;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--black);
  padding: 0 20px;
}
.dot-sep { color: var(--brown); font-size: 0.7rem !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: var(--section-pad);
  background: var(--dark);
  position: relative;
}
.about::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brown-mid), transparent);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}
.about-text h2 em {
  color: var(--gold);
  font-style: italic;
}
.body-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-light);
  margin-bottom: 16px;
  font-weight: 300;
}

.about-visual { position: relative; }
.about-img-frame {
  width: 100%; max-width: 400px;
  aspect-ratio: 3/4;
  background: var(--dark-3);
  border: 1px solid var(--brown);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3), var(--brown) 200%);
}

/* Coffee icon animation */
.coffee-icon { position: relative; display: flex; flex-direction: column; align-items: center; }
.cup {
  width: 60px; height: 50px;
  background: var(--brown-mid);
  border-radius: 4px 4px 12px 12px;
  position: relative;
  border-top: 3px solid var(--gold);
}
.cup::after {
  content: '';
  position: absolute; right: -18px; top: 8px;
  width: 18px; height: 28px;
  border: 3px solid var(--brown-mid);
  border-left: none;
  border-radius: 0 50% 50% 0;
}
.steam {
  position: absolute;
  width: 3px; height: 20px;
  background: linear-gradient(to top, var(--gold-pale), transparent);
  border-radius: 2px;
  animation: steam 2s ease infinite;
  bottom: 52px;
}
.s1 { left: 12px; animation-delay: 0s; }
.s2 { left: 25px; animation-delay: 0.3s; }
.s3 { left: 38px; animation-delay: 0.6s; }
@keyframes steam {
  0%   { opacity: 0; transform: translateY(0) scaleX(1); }
  50%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-30px) scaleX(0.5); }
}

.about-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-align: center;
  line-height: 1.3;
  padding: 10px 14px;
  border-radius: 50%;
  width: 64px; height: 64px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-badge strong { font-size: 1rem; }

.about-stats {
  display: flex; gap: 32px; margin-top: 24px;
}
.stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  display: flex; align-items: flex-end; gap: 2px; flex-direction: row; flex-wrap: wrap;
}
.stat > p {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ─── MENU ───────────────────────────────────────────────────── */
.menu {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 300;
}

/* Tabs */
.menu-tabs {
  display: flex; justify-content: center; gap: 4px;
  margin-bottom: 48px;
  background: var(--dark-2);
  padding: 4px;
  border-radius: 40px;
  width: fit-content;
  margin-left: auto; margin-right: auto;
  border: 1px solid var(--dark-3);
}
.tab-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 10px 24px;
  border-radius: 40px;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--cream); }
.tab-btn.active {
  background: var(--gold);
  color: var(--black);
}

/* Menu Content */
.menu-tab-content { display: none; }
.menu-tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.menu-item {
  padding: 24px;
  border-bottom: 1px solid rgba(61, 46, 30, 0.4);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  transition: background var(--transition);
  position: relative;
}
.menu-item:nth-child(odd) { border-right: 1px solid rgba(61, 46, 30, 0.4); }
.menu-item:hover { background: var(--dark-2); }
.menu-item.featured { background: rgba(201, 168, 76, 0.04); }
.menu-item.featured:hover { background: rgba(201, 168, 76, 0.08); }

.menu-badge {
  position: absolute; top: 16px; right: 80px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 3px 10px;
  border-radius: 2px;
}

.menu-item-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.menu-item-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery {
  padding: var(--section-pad);
  background: var(--dark);
}
.gallery-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-top: 24px;
  opacity: 0.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }

.g1 { grid-column: 1 / 6; grid-row: 1; }
.g2 { grid-column: 6 / 9; grid-row: 1; }
.g3 { grid-column: 9 / 13; grid-row: 1; }
.g4 { grid-column: 1 / 5; grid-row: 2; }
.g5 { grid-column: 5 / 13; grid-row: 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition-slow);
}
.g1 .gallery-placeholder { background: linear-gradient(135deg, #1a1208, #3d2e1e); }
.g2 .gallery-placeholder { background: linear-gradient(135deg, #261c0f, #4a3420); }
.g3 .gallery-placeholder { background: linear-gradient(135deg, #1e1510, #2e2015); }
.g4 .gallery-placeholder { background: linear-gradient(135deg, #2a1f10, #3d2e1e); }
.g5 .gallery-placeholder { background: linear-gradient(135deg, #161008, #30221a); }

.gallery-placeholder span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.2);
  text-transform: uppercase;
  user-select: none;
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 9, 7, 0.6);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.gallery-overlay p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  font-style: italic;
}

/* ─── VISIT ──────────────────────────────────────────────────── */
.visit {
  padding: var(--section-pad);
  background: var(--dark-2);
  position: relative;
}
.visit::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brown-mid), transparent);
}

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

.visit-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 40px;
}
.visit-info h2 em { color: var(--gold); font-style: italic; }

.visit-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 36px; }
.visit-block {}
.visit-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.visit-val {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.6;
  font-weight: 300;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 32px;
  width: fit-content;
}
.hours-grid span {
  font-size: 0.9rem;
  color: var(--gray-light);
  font-weight: 300;
}
.hours-grid span:nth-child(even) {
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.visit-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 18px;
  border-radius: 40px;
  transition: var(--transition);
}
.social-pill:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.visit-map {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--brown);
}
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark-3), var(--brown) 200%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  position: relative;
}
.map-placeholder p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gray-light);
}
.map-placeholder small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* Map Pin */
.map-pin { position: relative; display: flex; flex-direction: column; align-items: center; }
.pin-head {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.pin-head::after {
  content: '';
  width: 12px; height: 12px;
  background: var(--black);
  border-radius: 50%;
  position: absolute; top: 8px; left: 8px;
}
.pin-body { width: 2px; height: 12px; background: var(--gold); }
.pin-pulse {
  width: 40px; height: 40px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  position: absolute; top: -6px;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(61, 46, 30, 0.5);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 8px;
  font-style: italic;
}
.footer-links {
  display: flex; gap: 32px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(61, 46, 30, 0.3);
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray);
}
.footer-craft { color: var(--brown-mid) !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner, .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame { max-width: 100%; aspect-ratio: 4/3; }
  .menu-tab-content.active { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 60px; }
  .hero-title { font-size: clamp(4rem, 18vw, 8rem); }

  .container { padding: 0 20px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .g1 { grid-column: 1 / 3; grid-row: 1; }
  .g2 { grid-column: 1 / 2; grid-row: 2; }
  .g3 { grid-column: 2 / 3; grid-row: 2; }
  .g4 { grid-column: 1 / 2; grid-row: 3; }
  .g5 { grid-column: 2 / 3; grid-row: 3; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .menu-tabs { flex-wrap: wrap; border-radius: var(--radius-lg); width: auto; }
  .hero-bg-text { display: none; }
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.5rem, 20vw, 6rem); }
  .about-stats { gap: 20px; }
  .visit-grid { gap: 32px; }
  .visit-map { height: 280px; }
}
