*,
*::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-display: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-logo svg {
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--teal-500);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.25s ease, transform 0.2s var(--ease-spring) !important;
}

.nav-cta:hover {
  background: var(--teal-400);
  transform: translateY(-1px);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(13, 148, 136, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(15, 118, 110, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(20, 184, 166, 0.3) 0%, transparent 50%),
    linear-gradient(180deg, var(--slate-950) 0%, var(--slate-900) 50%, var(--slate-800) 100%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(45, 212, 191, 0.4);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: var(--teal-300);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-badge svg {
  opacity: 0.8;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--teal-500);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
  background: var(--teal-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal-300);
  letter-spacing: 0.02em;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--slate-500);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── SECTION BASE ─── */
.section {
  padding: 120px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.label-line {
  width: 32px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-600);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

.accent-gradient {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── MENU ─── */
.menu-section {
  background: var(--slate-50);
}

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

.menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 30px rgba(0,0,0,0.04);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 20px 50px rgba(0,0,0,0.08);
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

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

.menu-card:hover .card-img img {
  transform: scale(1.05);
}

.card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal-600);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 18px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--slate-700);
  font-weight: 500;
}

.card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal-400);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--slate-900);
  color: #fff;
}

.about-section .section-label {
  color: var(--teal-400);
}

.about-section .section-title {
  color: #fff;
  margin-bottom: 48px;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 16px;
  overflow: hidden;
  width: 55%;
  aspect-ratio: 7/5;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 4px solid var(--slate-900);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--teal-600);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

.about-content .section-title {
  margin-bottom: 28px;
}

.about-text {
  font-size: 1rem;
  color: var(--slate-400);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 4px;
}

.value-item span {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ─── EXPERIENCE ─── */
.experience-section {
  background: #fff;
}

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

.exp-card {
  position: relative;
}

.exp-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--slate-100);
  line-height: 1;
  margin-bottom: -16px;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 0;
}

.exp-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/2;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.exp-card:hover .exp-img img {
  transform: scale(1.04);
}

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 20px 0 10px;
  letter-spacing: -0.02em;
}

.exp-card p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.7;
}

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

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

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

.visit-info .section-title {
  margin-bottom: 0;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

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

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

.info-value {
  display: block;
  font-size: 0.9375rem;
  color: var(--slate-800);
  font-weight: 500;
  line-height: 1.6;
}

.info-value a {
  color: var(--teal-600);
  transition: color 0.2s ease;
}

.info-value a:hover {
  color: var(--teal-500);
}

.visit-map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .nav-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate-500);
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.875rem;
  color: var(--slate-500);
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--teal-400);
}

.footer-contact li {
  font-size: 0.875rem;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--slate-600);
}

.footer-bottom a {
  color: var(--slate-500);
  transition: color 0.2s ease;
}

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

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-images {
    max-width: 500px;
  }
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .visit-map {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--slate-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  .hero {
    padding: 100px 20px 80px;
  }
  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-divider {
    display: none;
  }
  .section {
    padding: 80px 0;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .exp-number {
    font-size: 3.5rem;
  }
  .about-img-secondary {
    right: -16px;
    bottom: -24px;
    width: 60%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .card-body {
    padding: 20px;
  }
}
