/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #0f2140;
  background: #f8faf9;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

/* ── Typography ─────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
  background: #dcfce9;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0a1628;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: #1a3a6e;
  opacity: 0.75;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #22c55e;
  color: #0a1628;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}
.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.45);
}

.btn-outline {
  background: transparent;
  color: #0f2140;
  border: 2px solid rgba(15,33,64,0.2);
}
.btn-outline:hover {
  border-color: #22c55e;
  background: rgba(34,197,94,0.08);
  transform: translateY(-2px);
}

.btn-mint {
  background: #0f2140;
  color: #22c55e;
  box-shadow: 0 4px 20px rgba(15,33,64,0.3);
}
.btn-mint:hover {
  background: #0a1628;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,33,64,0.4);
}

.btn-ghost {
  background: transparent;
  color: #0f2140;
  border: 2px solid rgba(15,33,64,0.2);
}
.btn-ghost:hover {
  border-color: #0f2140;
  background: rgba(15,33,64,0.04);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── Navbar ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248,250,249,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,33,64,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(15,33,64,0.08); }

.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;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0a1628;
}
.nav-logo-icon { width: 36px; height: 36px; }
.nav-logo-text { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 8px; }

.nav-link {
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #0f2140;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.nav-link:hover { background: rgba(34,197,94,0.1); color: #16a34a; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #22c55e;
  color: #0a1628;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  margin-left: 8px;
}
.nav-cta:hover { background: #16a34a; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger-line { width: 22px; height: 22px; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, #060d1f 0%, #0a1628 40%, #0f2140 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(34,197,94,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(34,197,94,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 48px;
  backdrop-filter: blur(10px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-accent { color: #22c55e; }

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-primary { background: #22c55e; color: #0a1628; }
.hero-actions .btn-primary:hover { background: #16a34a; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.25); color: #ffffff; }
.hero-actions .btn-outline:hover { border-color: #22c55e; background: rgba(34,197,94,0.1); color: #86efac; }

/* Floating stat cards */
.hero-floating-cards {
  position: relative;
  height: 520px;
  pointer-events: none;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px 24px;
  pointer-events: auto;
  animation: float 6s ease-in-out infinite;
}
.float-card-icon { font-size: 1.6rem; margin-bottom: 6px; }
.float-card-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.float-card-value { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 800; color: #ffffff; }

.float-card-1 { top: 0; right: 20px; animation-delay: 0s; }
.float-card-2 { top: 120px; left: 0; animation-delay: 1.5s; }
.float-card-3 { bottom: 120px; right: 0; animation-delay: 3s; }
.float-card-4 { bottom: 0; left: 20px; animation-delay: 4.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.hero-image-col { display: none; }

/* ── Highlights Bar ─────────────────────────────────── */
.highlights {
  background: #ffffff;
  border-top: 1px solid rgba(15,33,64,0.05);
  border-bottom: 1px solid rgba(15,33,64,0.05);
  padding: 0 24px;
}
.highlights-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 32px 0;
  gap: 0;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a1628;
}
.highlight-icon { width: 22px; height: 22px; flex-shrink: 0; }
.highlight-divider {
  width: 1px;
  height: 32px;
  background: rgba(15,33,64,0.1);
}

/* ── Menu ───────────────────────────────────────────── */
.menu {
  padding: 100px 24px;
  background: #f8faf9;
}
.menu .section-header { text-align: center; margin-bottom: 60px; }
.menu .section-desc { margin: 0 auto; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.menu-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,33,64,0.06);
  border: 1px solid rgba(15,33,64,0.05);
  transition: all 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(15,33,64,0.12);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }

.menu-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #22c55e;
  color: #0a1628;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.menu-card-body { padding: 24px 28px 28px; }
.menu-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 8px;
}
.menu-card-desc {
  font-size: 0.95rem;
  color: #1a3a6e;
  opacity: 0.7;
  line-height: 1.6;
}

.menu-cta {
  text-align: center;
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(15,33,64,0.06);
  border: 1px solid rgba(15,33,64,0.05);
}
.menu-cta p {
  font-size: 1.1rem;
  color: #0f2140;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.menu-cta .btn { margin: 0 auto; }

/* ── About ──────────────────────────────────────────── */
.about {
  padding: 100px 24px;
  background: #ffffff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images { position: relative; }
.about-img-main {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15,33,64,0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15,33,64,0.15);
  border: 5px solid #ffffff;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-stat-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #22c55e;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 8px 28px rgba(34,197,94,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.about-stat-number { font-size: 2rem; }
.about-stat-text { font-size: 0.85rem; font-weight: 700; color: #0a1628; line-height: 1.3; }

.about-content .section-title { margin-bottom: 24px; }
.about-body {
  font-size: 1.05rem;
  color: #1a3a6e;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0a1628;
}
.about-feature-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Reviews ────────────────────────────────────────── */
.reviews {
  padding: 100px 24px;
  background: linear-gradient(160deg, #060d1f 0%, #0a1628 60%, #0f2140 100%);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(34,197,94,0.07) 0%, transparent 40%),
                    radial-gradient(circle at 90% 10%, rgba(34,197,94,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.reviews .section-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.reviews .section-tag { background: rgba(34,197,94,0.15); color: #86efac; }
.reviews .section-title { color: #ffffff; }
.reviews .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.review-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.review-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.review-stars svg { width: 18px; height: 18px; }
.review-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: #22c55e;
}

/* ── Location ───────────────────────────────────────── */
.location {
  padding: 100px 24px;
  background: #f8faf9;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-info .section-title { margin-bottom: 16px; }
.location-desc {
  font-size: 1.05rem;
  color: #1a3a6e;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 40px;
}

.location-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.location-icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.location-detail strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a1628;
  margin-bottom: 4px;
}
.location-detail span {
  font-size: 1rem;
  color: #1a3a6e;
  opacity: 0.8;
  line-height: 1.6;
}
.location-detail a {
  color: #22c55e;
  font-weight: 600;
  transition: color 0.2s;
}
.location-detail a:hover { color: #16a34a; }

.location-map { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(15,33,64,0.1); }

.location-image-col { display: flex; flex-direction: column; gap: 20px; }
.location-image-wrap, .location-image-secondary {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,33,64,0.1);
}
.location-image-wrap img, .location-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CTA ────────────────────────────────────────────── */
.cta {
  padding: 100px 24px;
  background: #0a1628;
}
.cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0f2140 0%, #142d58 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(34,197,94,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(34,197,94,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-mint { background: #22c55e; color: #0a1628; }
.cta-actions .btn-mint:hover { background: #16a34a; }
.cta-actions .btn-ghost { border-color: rgba(255,255,255,0.2); color: #ffffff; }
.cta-actions .btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: #060d1f;
  padding: 64px 24px 32px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer-logo-icon { font-size: 1.5rem; }
.footer-tagline { font-size: 0.95rem; line-height: 1.6; max-width: 280px; }

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #22c55e; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.5;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: #22c55e; }
.footer-contact a { color: #22c55e; font-weight: 600; transition: color 0.2s; }
.footer-contact a:hover { color: #86efac; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

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

/* ── Mobile Menu ────────────────────────────────────── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(248,250,249,0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  gap: 4px;
  border-bottom: 1px solid rgba(15,33,64,0.06);
  box-shadow: 0 12px 40px rgba(15,33,64,0.1);
}
.nav-links.open .nav-link { padding: 14px 16px; font-size: 1rem; }
.nav-links.open .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }

/* ── Responsive ─────────────────────────────────────── */
@media (min-width: 1024px) {
  .hero-image-col { display: block; }
}

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-floating-cards { display: none; }
  .hero-card { max-width: 560px; }
  .hero { padding: 110px 24px 80px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 480px; }

  .location-grid { grid-template-columns: 1fr; }
  .location-image-col { order: -1; }
}

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

  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .highlights-inner { flex-direction: column; gap: 20px; }
  .highlight-divider { display: none; }

  .hero-card { padding: 32px 24px; border-radius: 24px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .cta-card { padding: 48px 28px; }
  .cta-actions { flex-direction: column; align-items: center; }

  .about-img-secondary { right: -10px; bottom: -20px; }
  .about-stat-card { right: -10px; top: -10px; }
}
