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

:root {
  --bg-dark: #0a0f14;
  --bg-card: #111920;
  --bg-elevated: #162028;
  --teal: #14b8a6;
  --teal-light: #2dd4bf;
  --teal-dark: #0d9488;
  --slate: #94a3b8;
  --slate-light: #cbd5e1;
  --gold: #d4a853;
  --gold-light: #e8c47b;
  --gold-dark: #b8912e;
  --white: #f1f5f9;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--slate-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal);
  color: var(--bg-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 200;
}
.skip-link:focus {
  top: 16px;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(10, 15, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(20, 184, 166, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo-icon {
  color: var(--gold);
}

.logo-accent {
  color: var(--teal);
  font-style: italic;
}

/* ─── NAV ─── */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 8px;
}
.nav-menu a {
  color: var(--slate);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
  background: rgba(20, 184, 166, 0.12);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  left: 0;
  transition: transform 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13, 148, 136, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(20, 184, 166, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #060d12 0%, #0a1518 50%, #0d0f14 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 184, 166, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 720px;
}
.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title .gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(20, 184, 166, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.45);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── FEATURES ─── */
.features {
  padding: 120px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(20, 184, 166, 0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: rgba(20, 184, 166, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}
.feature-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─── MENU ─── */
.menu {
  padding: 120px 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(20, 184, 166, 0.06);
  border-bottom: 1px solid rgba(20, 184, 166, 0.06);
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  background: none;
  border: 1px solid rgba(148, 163, 184, 0.15);
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover {
  color: var(--white);
  border-color: rgba(20, 184, 166, 0.3);
}
.tab-btn.active {
  color: var(--bg-dark);
  background: var(--teal);
  border-color: var(--teal);
}
.menu-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}
.menu-panel.active {
  display: block;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-item {
  background: var(--bg-dark);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background var(--transition);
}
.menu-item:hover {
  background: var(--bg-elevated);
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
}
.menu-item-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 120px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 20, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* ─── HOURS ─── */
.hours {
  padding: 120px 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(20, 184, 166, 0.06);
  border-bottom: 1px solid rgba(20, 184, 166, 0.06);
}
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hours-table {
  margin-top: 32px;
  border: 1px solid rgba(20, 184, 166, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(20, 184, 166, 0.06);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-day {
  color: var(--slate-light);
  font-weight: 500;
}
.hours-time {
  color: var(--teal-light);
  font-weight: 600;
}
.hours-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--slate);
  font-style: italic;
}
.map-link {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(10, 15, 20, 0.55);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.map-link:hover .map-overlay {
  background: rgba(10, 15, 20, 0.35);
}
.map-overlay svg {
  color: var(--gold);
}

/* ─── CTA / CONTACT ─── */
.cta {
  padding: 120px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-desc {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 32px;
}
.cta-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate-light);
  font-size: 0.95rem;
}
.cta-detail svg {
  color: var(--teal);
  flex-shrink: 0;
}

.cta-form {
  background: var(--bg-card);
  border: 1px solid rgba(20, 184, 166, 0.1);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--teal-light);
  font-weight: 500;
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand .logo-text {
  font-size: 1.1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--slate);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--slate);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--teal);
}
.footer-copy {
  width: 100%;
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 8px;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hours-inner,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 20, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .nav-menu a {
    padding: 12px 16px;
    font-size: 1rem;
  }
  .nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .cta-form {
    padding: 24px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
