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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 1px 0 var(--slate-200);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate-900);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  color: var(--teal-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--slate-600);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-600);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--slate-900);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  padding: 8px 20px;
  border: 1px solid var(--slate-300);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.nav-link--cta:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
}

.nav-link--cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--slate-700);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu-link {
  text-decoration: none;
  color: var(--slate-800);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  padding: 12px 24px;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--teal-600);
}

.mobile-menu-link--cta {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 32px;
  border: 1px solid var(--slate-300);
  border-radius: 100px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.55) 0%,
    rgba(2, 6, 23, 0.65) 50%,
    rgba(2, 6, 23, 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn--primary {
  background: var(--teal-600);
  color: #fff;
}

.btn--primary:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.hero-scroll:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero-scroll span {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ========== DIVIDER ========== */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 24px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--slate-200);
}

.divider-icon {
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ========== SECTIONS ========== */
.section {
  padding: 120px 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 480px;
}

/* ========== MENU SECTION ========== */
.menu-section {
  background: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.menu-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease-out);
}

.menu-card:hover {
  border-color: var(--teal-200);
  box-shadow: 0 8px 40px rgba(13, 148, 136, 0.08);
  transform: translateY(-4px);
}

.menu-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-200);
}

.menu-card-icon {
  display: flex;
  align-items: center;
  color: var(--teal-600);
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.menu-item-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-800);
}

.menu-item-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--slate-400);
  white-space: nowrap;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: var(--slate-50);
}

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

.about-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 6/7;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate-600);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--slate-200);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal-700);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--slate-200);
}

/* ========== HOURS SECTION ========== */
.hours-section {
  background: #fff;
}

.hours-wrapper {
  margin-top: 48px;
  max-width: 560px;
}

.hours-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
}

.hours-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
}

.hours-card-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-700);
}

.hours-card-time {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--teal-700);
}

.hours-card-divider {
  height: 1px;
  background: var(--slate-200);
  margin: 0 32px;
}

.hours-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--teal-50);
  border-radius: 12px;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.hours-note svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

.hours-note a {
  color: var(--teal-700);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--teal-200);
  transition: border-color 0.2s ease;
}

.hours-note a:hover {
  border-color: var(--teal-600);
}

/* ========== VISIT SECTION ========== */
.visit-section {
  background: var(--slate-50);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: stretch;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.visit-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 12px;
  color: var(--teal-700);
  flex-shrink: 0;
}

.visit-item-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 4px;
}

.visit-item-value {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--slate-800);
  line-height: 1.6;
}

.visit-item-value a {
  color: var(--slate-800);
  text-decoration: none;
  border-bottom: 1px solid var(--slate-200);
  transition: border-color 0.2s ease;
}

.visit-item-value a:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
}

.visit-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--slate-200);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate-500);
  line-height: 1.8;
  margin-top: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-700);
  letter-spacing: 0.02em;
}

.form-input {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: var(--slate-400);
}

.form-input:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--teal-800);
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--slate-800);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.footer-logo-icon {
  color: var(--teal-400);
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--slate-500);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-link {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-400);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--teal-400);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-400);
  transition: color 0.2s ease;
}

.footer-contact-item:hover {
  color: var(--teal-400);
}

.footer-contact-item svg {
  color: var(--teal-500);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--slate-600);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }

  .reveal.revealed {
    opacity: 1;
    transform: none;
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .contact-wrapper {
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    height: 64px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-card {
    padding: 28px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    aspect-ratio: 4/3;
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .hours-card-top {
    padding: 20px 24px;
  }

  .hours-card-divider {
    margin: 0 24px;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .visit-map {
    min-height: 300px;
  }

  .visit-map iframe {
    min-height: 300px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-contact {
    align-items: flex-start;
  }

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

  .hero-scroll {
    bottom: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-eyebrow {
    font-size: 0.6875rem;
  }

  .menu-card {
    padding: 24px 20px;
  }
}
