/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #0d1b2a;
  background: #f8fafc;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Utility ── */
.text-mint { color: #14b8a6; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14b8a6;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0d1b2a;
  margin-bottom: 24px;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,250,252,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13,27,42,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(13,27,42,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0d1b2a;
}
.nav-logo { width: 32px; height: 32px; color: #14b8a6; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0d1b2a;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(20,184,166,0.08); color: #0d9488; }
.nav-cta {
  background: #0d1b2a !important;
  color: #f8fafc !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #1b4fd6 !important; transform: translateY(-1px); }

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-left: auto;
  color: #0d1b2a;
  transition: background 0.2s;
}
.menu-btn:hover { background: rgba(13,27,42,0.06); }
.menu-icon { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(248,250,252,0.97);
  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.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0d1b2a;
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.mobile-link:hover { background: rgba(20,184,166,0.08); color: #0d9488; }
.mobile-link-cta {
  margin-top: 16px;
  background: #0d1b2a;
  color: #f8fafc !important;
  border-radius: 12px;
  padding: 14px 32px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #f0fdf9 0%, #f8fafc 40%, #f0f4ff 100%);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(65,110,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.2);
  color: #0d9488;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #0d1b2a;
  margin-bottom: 24px;
}
.hero-accent {
  color: #14b8a6;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #374151;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: #0d1b2a;
  color: #f8fafc;
}
.btn-primary:hover { background: #1b4fd6; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(13,27,42,0.2); }
.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: #0d1b2a;
  border: 1px solid rgba(13,27,42,0.12);
}
.btn-ghost:hover { background: #fff; border-color: #14b8a6; color: #0d9488; transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #14b8a6;
  line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: #6b7280; font-weight: 500; }
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(13,27,42,0.12);
}

/* Hero visual */
.hero-visual { position: relative; min-height: 560px; }
.hero-img-stack { position: relative; width: 100%; height: 100%; }
.hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,27,42,0.12);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 85%;
  z-index: 2;
}
.hero-img-accent {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 55%;
  z-index: 3;
  border: 4px solid #f8fafc;
}
.hero-img-mint {
  position: absolute;
  top: 8%;
  left: 10%;
  width: 42%;
  z-index: 1;
  border: 4px solid #f8fafc;
  opacity: 0.85;
}
.hero-float-card {
  position: absolute;
  bottom: 38%;
  left: -8%;
  z-index: 4;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(13,27,42,0.1);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card svg { width: 22px; height: 22px; color: #14b8a6; flex-shrink: 0; }
.hero-float-card span { font-weight: 600; font-size: 0.9rem; color: #0d1b2a; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #f8fafc;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── About ── */
.about {
  padding: 100px 0;
  background: #f8fafc;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; min-height: 420px; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,27,42,0.1);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #f8fafc;
  box-shadow: 0 12px 40px rgba(13,27,42,0.1);
  z-index: 2;
}
.about-text p {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #0d1b2a;
}
.about-feature svg {
  width: 20px;
  height: 20px;
  color: #14b8a6;
  flex-shrink: 0;
}

/* ── Categories ── */
.categories {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdf9 100%);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,27,42,0.06);
  border: 1px solid rgba(13,27,42,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(13,27,42,0.1); }
.cat-card-img {
  height: 200px;
  overflow: hidden;
}
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-card:hover .cat-card-img img { transform: scale(1.06); }
.cat-card-body {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(20,184,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cat-icon svg { width: 22px; height: 22px; color: #14b8a6; }
.cat-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 6px;
}
.cat-card-body p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Why ── */
.why {
  padding: 100px 0;
  background: #0d1b2a;
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20,184,166,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why .section-label { color: #5eead4; }
.why .section-title { color: #f8fafc; }
.why-intro {
  color: rgba(248,250,252,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.why-cards { display: flex; flex-direction: column; gap: 24px; }
.why-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: background 0.2s, border-color 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(20,184,166,0.3); }
.why-card-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #14b8a6;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(248,250,252,0.6);
  line-height: 1.7;
}
.why-visual { position: relative; min-height: 500px; }
.why-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #0d1b2a;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 2;
}

/* ── Visit ── */
.visit {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0fdf9 0%, #f8fafc 100%);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-details { display: flex; flex-direction: column; gap: 28px; margin: 40px 0; }
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(20,184,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-detail-icon svg { width: 22px; height: 22px; color: #14b8a6; }
.visit-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 4px;
  font-weight: 600;
}
.visit-detail p { color: #0d1b2a; font-size: 1rem; line-height: 1.6; }
.visit-detail a { color: #14b8a6; font-weight: 600; transition: color 0.2s; }
.visit-detail a:hover { color: #0d9488; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.visit-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,27,42,0.1);
  border: 4px solid rgba(255,255,255,0.6);
}
.visit-map-wrapper { background: #e5e7eb; }
.visit-map iframe { width: 100%; height: 100%; min-height: 480px; }

/* ── Footer ── */
.footer {
  background: #0d1b2a;
  color: rgba(248,250,252,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f8fafc;
  margin-bottom: 16px;
}
.footer-logo svg { width: 28px; height: 28px; color: #14b8a6; }
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong {
  color: #f8fafc;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(248,250,252,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #5eead4; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact strong {
  color: #f8fafc;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-contact a { color: #5eead4; transition: color 0.2s; }
.footer-contact a:hover { color: #2dd4bf; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(248,250,252,0.4);
}
.footer-bottom a { color: rgba(248,250,252,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #5eead4; }

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 400px; order: -1; }
  .hero-img-main { width: 70%; height: 75%; }
  .hero-img-accent { width: 50%; }
  .hero-img-mint { width: 45%; }
  .hero-float-card { left: 5%; }
  .about-grid, .why-grid, .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { min-height: 350px; order: -1; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .hero { padding-top: 72px; }
  .hero-grid { padding: 40px 24px 100px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-img-main { width: 80%; height: 65%; }
  .hero-img-accent { width: 55%; bottom: 2%; }
  .hero-img-mint { width: 50%; top: 5%; left: 5%; }
  .hero-float-card { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .visit-map iframe { min-height: 300px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .visit-actions { flex-direction: column; }
  .visit-actions .btn { width: 100%; justify-content: center; }
}
