:root {
  --bg: #0b0b0b;
  --panel: #101010;
  --card: #141414;
  --border: #262626;
  --text: #f3f4f6;
  --muted: #a3a3a3;
  --ink: #111111;
  --ink-2: #1a1a1a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #d4d4d4;
}

/* Base */
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--text);
  font: 16px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
img { max-width: 100%; display: block; }
a { color: var(--gray-100); text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Hero (Home uses the cover image) */
.hero-cover {
  position: relative; height: 100vh;
  background-image: url('../assets/hero.jpg');
  background-repeat: no-repeat; background-size: cover; background-position: center center;
}
.hero-cover::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25) 50%, rgba(0,0,0,.55));
}
.hero-inner { position: relative; z-index: 1; width: 100%; height: 100%; }

/* Top Bar (shared) */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; width: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
  padding: 12px 28px; background: #2C2C2C; z-index: 1000; border: none; box-shadow: none;
}
.brand-title { justify-self: start; font-family: 'Anton', sans-serif; font-size: 40px; color: var(--white); }
.brand-logo { justify-self: center; height: 100px; width: auto; display: block; filter: none; }
.top-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.top-links { display: flex; align-items: center; gap: 18px; }
.top-link { font-weight: 600; opacity: 0.9; }
.top-link:hover, .top-link.active { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

.insta-link { display: inline-flex; align-items: center; justify-content: center; padding: 8px; border-radius: 8px; }
.insta-link svg { width: 22px; height: 22px; fill: var(--gray-100); opacity: 0.9; display: block; }
.insta-link:hover svg { opacity: 1; }

.book-cta {
  border: 1px solid var(--gray-300); padding: 14px 22px; border-radius: 999px;
  color: var(--gray-100); background: transparent; font-weight: 600;
}
.book-cta:hover { background: var(--gray-100); color: #111; border-color: var(--gray-100); }

/* Hamburger (shared) */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 3px;
  width: 22px; height: 18px; background: none; border: none; cursor: pointer; padding: 0;
}
.hamburger span { display: block; height: 2px; width: 100%; background: var(--gray-100); border-radius: 2px; }

/* Overlay Menu (shared) */
.menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); color: var(--gray-100);
  display: none; justify-content: center; align-items: center; text-align: center; padding: 32px;
  z-index: 2000; opacity: 0; transition: opacity .2s ease;
}
.menu-overlay.active { display: flex; opacity: 1; }
.close-overlay {
  position: absolute; top: 18px; right: 18px; font-size: 36px;
  background: none; border: none; color: var(--gray-100); cursor: pointer;
}
.menu-content { font-size: 22px; }
.overlay-link {
  display: block; margin: 12px 0; font-size: 22px; color: var(--gray-100);
  text-decoration: none; opacity: 0.9;
}
.overlay-link:hover, .overlay-link.active { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.overlay-spacer { margin: 48px 0; }
.overlay-gap { margin: 24px 0; }

/* Home: Intro */
.intro {
  padding: 64px 0; background: var(--ink-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.intro-title {
  margin: 0 0 10px;
  font: 900 28px/1.2 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--gray-100);
}
.intro-lead { margin: 0 0 12px; font-size: 18px; color: var(--gray-100); }

/* Home: Gallery */
.gallery { padding: 48px 0; border-bottom: 1px solid var(--border); background: var(--ink-2); }
.gallery-title { margin: 0 0 14px; font: 800 26px/1.2 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial; color: var(--gray-100); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shot {
  aspect-ratio: 4/3; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #0e0e0e;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s, border-color 0.2s;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s, filter 0.2s; filter: contrast(95%) saturate(95%); }
.shot:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); border-color: #3a3a3a; }
.shot:hover img { transform: scale(1.03); filter: contrast(115%) saturate(110%); }

/* Home: Hours / Location */
.hours { padding: 64px 0; border-bottom: 1px solid var(--border); background: var(--ink-2); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.hours h2 { margin: 0 0 12px; font-size: 28px; }
.hours-list {
  list-style: none; margin: 0; padding: 0;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #0e0e0e;
}
.hours-list li { display: flex; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.hours-list li:last-child { border-bottom: none; }
address { font-style: normal; line-height: 1.6; }

/* Home: CTA + Buttons (shared button) */
.cta { padding: 64px 0; }
.center { text-align: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 12px; padding: 10px 16px;
  font-weight: 600; transition: 0.15s; background: var(--panel); color: var(--gray-100);
}
.btn:hover { transform: translateY(-1px); }
.large { font-size: 18px; padding: 14px 22px; }

/* Footer (shared) */
.site-footer { padding: 28px 0; border-top: 1px solid var(--border); background: #0e0e0e; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; }
.legal { color: var(--muted); font-size: 14px; }

/* Responsive */
@media (max-width: 1024px) {
  .brand-title { font-size: 36px; }
  .brand-logo { height: 84px; }
  .grid-2 { gap: 40px; }
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .brand-title { font-size: 28px; }
  .brand-logo { height: 72px; }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .hours { padding: 48px 0; }
}
@media (max-width: 640px) {
  .topbar {
    grid-template-columns: auto auto 1fr auto; align-items: center;
    padding: 8px 12px; gap: 8px;
  }
  .hamburger { display: flex; justify-self: start; }
  .brand-title { font-size: 13px; justify-self: start; }
  .brand-logo { height: 48px; justify-self: center; }
  .top-actions { justify-self: end; gap: 12px; }
  .book-cta { padding: 8px 12px; font-size: 14px; white-space: nowrap; }
  .top-links, .insta-link { display: none; }
  .menu-content { font-size: 18px; }
}
