/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0F2B4C;
  background: #F0F9FF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Utilities ──────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.skip-link { position: absolute; left: -999px; top: auto; }
.skip-link:focus { left: 1rem; top: 1rem; background: #0F2B4C; color: #fff; padding: 0.5rem 1rem; border-radius: 4px; z-index: 999; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 0.938rem; border-radius: 8px;
  padding: 0.75rem 1.5rem; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-mint {
  background: #4ADE80; color: #0F2B4C;
  box-shadow: 0 2px 8px rgba(74,222,128,0.3);
}
.btn-mint:hover { background: #3CC472; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,222,128,0.4); }
.btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; border-radius: 6px; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 10px; }

/* ── Section Shared ─────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 0.813rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: #4ADE80; margin-bottom: 0.75rem;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: #4ADE80; border-radius: 1px; }
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.15; color: #0F2B4C; margin-bottom: 1rem;
}
.section-lead { font-size: 1.125rem; color: #3A5A7C; max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,43,76,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,222,128,0.15);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 0.625rem; }
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.25rem; color: #fff; letter-spacing: -0.02em;
}
.primary-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.primary-nav a {
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  font-size: 0.938rem; color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.875rem; border-radius: 6px; transition: color 0.2s, background 0.2s;
}
.primary-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-toggle { display: none; padding: 0.5rem; border-radius: 6px; }
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: all 0.25s ease;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,43,76,0.92) 0%, rgba(15,43,76,0.75) 50%, rgba(15,43,76,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 1; padding-top: 72px; padding-bottom: 4rem;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 0.813rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: #4ADE80; background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25); border-radius: 100px;
  padding: 0.5rem 1rem; margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.75rem, 7vw, 5rem); font-weight: 700;
  line-height: 1.05; color: #fff; margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.hero-headline .accent { color: #4ADE80; }
.hero-sub {
  font-size: clamp(1.063rem, 2vw, 1.25rem); color: rgba(255,255,255,0.8);
  line-height: 1.7; max-width: 520px; margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.375rem;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.15em; font-family: 'Space Grotesk', sans-serif;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── Menu Section ───────────────────────────────── */
.menu-section { padding: 6rem 0; background: #F0F9FF; }
.menu-section .section-label,
.menu-section .section-title { text-align: center; display: block; }
.menu-section .section-lead { text-align: center; margin: 0 auto 3rem; }
.menu-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 0.938rem; color: #3A5A7C;
  padding: 0.625rem 1.25rem; border-radius: 100px;
  border: 1.5px solid #D1E8F5; background: #fff;
  transition: all 0.2s ease;
}
.tab-btn:hover { border-color: #4ADE80; color: #0F2B4C; }
.tab-btn.active { background: #0F2B4C; color: #fff; border-color: #0F2B4C; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.menu-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(15,43,76,0.06);
  border: 1px solid rgba(15,43,76,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15,43,76,0.12); }
.menu-card-img { height: 200px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 1.25rem; }
.menu-card-body h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.125rem; color: #0F2B4C; margin-bottom: 0.375rem;
}
.menu-card-body p { font-size: 0.938rem; color: #3A5A7C; line-height: 1.6; }

.menu-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1rem; }
.menu-list-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff; border-radius: 12px; padding: 1.25rem;
  border: 1px solid rgba(15,43,76,0.06);
  transition: transform 0.2s ease;
}
.menu-list-item:hover { transform: translateY(-2px); }
.menu-list-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem; }
.menu-list-item h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1rem; color: #0F2B4C; margin-bottom: 0.25rem;
}
.menu-list-item p { font-size: 0.875rem; color: #3A5A7C; line-height: 1.6; }

/* ── About Section ──────────────────────────────── */
.about-section { padding: 6rem 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 12px 40px rgba(15,43,76,0.15); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-stack {
  position: absolute; bottom: -2rem; right: -1rem;
  width: 55%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,43,76,0.2);
  border: 4px solid #fff;
}
.about-img-stack img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { text-align: left; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content .lead-paragraph { font-size: 1.125rem; color: #0F2B4C; line-height: 1.8; margin-bottom: 1rem; font-weight: 500; }
.about-content p { color: #3A5A7C; line-height: 1.75; margin-bottom: 1rem; }
.about-stats {
  display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid #E2EFF7;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.75rem; color: #0F2B4C; line-height: 1;
}
.stat-label { font-size: 0.813rem; color: #3A5A7C; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Why Us Section ─────────────────────────────── */
.why-section { padding: 6rem 0; background: #0F2B4C; }
.why-section .section-label { color: #4ADE80; }
.why-section .section-label::before { background: #4ADE80; }
.why-section .section-title { color: #fff; }
.why-section .section-lead { color: rgba(255,255,255,0.65); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.feature-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 2rem; transition: all 0.25s ease;
}
.feature-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(74,222,128,0.3); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(74,222,128,0.12); display: flex; align-items: center; justify-content: center;
  color: #4ADE80; margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.188rem; color: #fff; margin-bottom: 0.625rem;
}
.feature-card p { font-size: 0.938rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── Visit Section ──────────────────────────────── */
.visit-section { padding: 6rem 0; background: #F0F9FF; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.visit-info .section-label { text-align: left; }
.visit-info .section-title { margin-bottom: 1.5rem; }
.visit-address {
  font-size: 1.125rem; color: #0F2B4C; line-height: 1.8;
  margin-bottom: 1.5rem; padding: 1.5rem;
  background: #fff; border-radius: 12px;
  border: 1px solid rgba(15,43,76,0.06);
}
.visit-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.visit-link {
  display: inline-flex; align-items: center; gap: 0.625rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 1rem; color: #0F2B4C;
  padding: 0.75rem 1rem; border-radius: 10px;
  background: #fff; border: 1px solid rgba(15,43,76,0.06);
  transition: all 0.2s ease;
}
.visit-link:hover { border-color: #4ADE80; color: #0F2B4C; transform: translateX(4px); }
.visit-link svg { color: #4ADE80; flex-shrink: 0; }
.visit-hours {
  background: #0F2B4C; border-radius: 12px; padding: 1.5rem;
}
.visit-hours h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.063rem; color: #4ADE80; margin-bottom: 0.75rem;
}
.visit-hours p { font-size: 0.938rem; color: rgba(255,255,255,0.8); margin-bottom: 0.375rem; }
.visit-hours p span { color: #fff; font-weight: 600; }
.visit-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(15,43,76,0.12); min-height: 400px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 400px; }

/* ── Contact Section ────────────────────────────── */
.contact-section { padding: 6rem 0; background: #fff; }
.contact-inner { max-width: 640px; text-align: center; }
.contact-inner .section-label { justify-content: center; }
.contact-inner .section-label::before { margin-right: 0.5rem; }
.contact-inner .section-lead { margin: 0 auto 2.5rem; }
.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.875rem; color: #0F2B4C;
  margin-bottom: 0.375rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 10px;
  border: 1.5px solid #D1E8F5; background: #F0F9FF;
  font-family: 'Inter', sans-serif; font-size: 0.938rem; color: #0F2B4C;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #8BA8C0; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.813rem; color: #8BA8C0; margin-top: 0.75rem; text-align: center; }
.contact-success {
  text-align: center; padding: 3rem 2rem;
  animation: fadeUp 0.4s ease;
}
.contact-success h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: #0F2B4C; margin: 1rem 0 0.5rem;
}
.contact-success p { color: #3A5A7C; }

/* ── Footer ─────────────────────────────────────── */
.site-footer { background: #0A1F35; padding: 4rem 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.938rem; margin-top: 0.75rem; line-height: 1.7; }
.footer-logo .logo-text { font-size: 1.125rem; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: #4ADE80; margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.938rem; color: rgba(255,255,255,0.6); padding: 0.25rem 0; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 0.938rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 0.25rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: #4ADE80; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom p { font-size: 0.813rem; color: rgba(255,255,255,0.35); text-align: center; }

/* ── Mobile Nav Overlay ─────────────────────────── */
.primary-nav { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(15,43,76,0.98); backdrop-filter: blur(12px); padding: 2rem 1.5rem; transform: translateX(100%); transition: transform 0.3s ease; z-index: 99; }
.primary-nav.open { transform: translateX(0); }
.primary-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.primary-nav a { font-size: 1.25rem; padding: 0.875rem 1rem; display: block; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { max-width: 480px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .primary-nav { display: block; }
  .hero-headline { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-stack { width: 65%; right: -0.5rem; bottom: -1.5rem; }
}
@media (max-width: 480px) {
  .menu-grid, .menu-list { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .about-stats { flex-direction: column; gap: 1.25rem; }
}

/* ── Reduced Motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
