*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --teal: #2DD4BF;
  --blue: #60A5FA;
  --white: #F9FAFB;
  --muted: #6B7280;
  --border: rgba(45, 212, 191, 0.15);
  --gradient: linear-gradient(135deg, #2DD4BF, #60A5FA);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
#nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-book {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  background: var(--gradient);
  color: #0D0D0D;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-book:hover { opacity: 0.85; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(13, 13, 13, 0.97);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover, .mobile-book { color: var(--teal); }
.mobile-book { border-bottom: none; padding-top: 20px; font-weight: 600; }
@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  z-index: 1;
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-logo {
  width: 380px;
  max-width: 88vw;
  filter: drop-shadow(0 0 40px rgba(45, 212, 191, 0.25)) brightness(1.05);
}
.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}
.hero-address {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.btn-primary {
  padding: 14px 32px;
  background: var(--gradient);
  color: #0D0D0D;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-secondary {
  padding: 14px 32px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: rgba(45, 212, 191, 0.08); transform: translateY(-1px); }
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--muted);
  animation: bounce 2s infinite;
  transition: color 0.2s;
}
.scroll-down:hover { color: var(--teal); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 640px) {
  .hero-logo { width: 220px; }
  .hero-tagline { letter-spacing: 0.06em; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
}

/* ── SHARED LAYOUT ── */
.section-pad { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ── ABOUT ── */
#about { background: var(--surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.about-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.about-link:hover { opacity: 0.75; }
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-image img { aspect-ratio: 16/9; }
  .section-pad { padding: 64px 0; }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 212, 191, 0.08);
  border-radius: 8px;
  color: var(--teal);
  margin-bottom: 20px;
}
.service-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.service-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── GALLERY ── */
#work { background: var(--surface); }
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 4px;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: 'View';
  position: absolute;
  inset: 0;
  background: rgba(45, 212, 191, 0.18);
  display: grid;
  place-items: center;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}
.gallery-item:hover::after { opacity: 1; }
@media (max-width: 1024px) { .gallery-grid { columns: 2; } }
@media (max-width: 640px) { .gallery-grid { columns: 1; } }

/* ── REVIEWS ── */
.marquee-outer {
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-outer:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px;
  width: 320px;
  flex-shrink: 0;
}
.review-stars { color: var(--teal); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-quote { color: var(--white); font-size: 0.9rem; line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.review-name { color: var(--muted); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; }

/* ── FIND US ── */
#find-us { background: var(--surface); }
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.find-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  color: var(--teal);
}
.find-item svg { flex-shrink: 0; margin-top: 2px; }
.find-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.find-value { color: var(--white); font-size: 0.95rem; line-height: 1.5; }
.find-link { color: var(--teal); transition: opacity 0.2s; }
.find-link:hover { opacity: 0.75; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 0.9rem; color: var(--white); border-bottom: 1px solid var(--border); }
.hours-table td:last-child { text-align: right; color: var(--teal); }
.hours-table tr.closed td { color: var(--muted); }
.hours-table tr.closed td:last-child { color: var(--muted); }
.find-map {
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.find-map iframe { width: 100%; height: 100%; display: block; }
@media (max-width: 768px) {
  .find-grid { grid-template-columns: 1fr; gap: 40px; }
  .find-map { height: 300px; }
}

/* ── FOOTER ── */
#footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo { height: 52px; width: auto; opacity: 0.8; }
.footer-center { flex: 1; }
.footer-name { font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.footer-address { font-size: 0.8rem; color: var(--muted); }
.footer-right { text-align: right; }
.footer-social { display: block; font-size: 0.875rem; font-weight: 600; color: var(--teal); margin-bottom: 6px; transition: opacity 0.2s; }
.footer-social:hover { opacity: 0.75; }
.footer-copy { font-size: 0.75rem; color: var(--muted); }
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-right { text-align: left; }
}
