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

:root {
  --teal-400: #2DD4BF;
  --teal-500: #14B8A6;
  --teal-600: #0D9488;
  --teal-700: #0F766E;
  --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;
  --white: #FFFFFF;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

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

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

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--teal-400);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-600);
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--slate-300);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-nav {
  background: var(--teal-600) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
}

.btn-nav:hover {
  background: var(--teal-500) !important;
}

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

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--slate-900);
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(13,148,136,0.7) 50%, rgba(15,23,42,0.88) 100%);
}

.hero-shape {
  position: absolute;
  z-index: 2;
  opacity: 0.12;
}

.hero-shape--tr {
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: var(--teal-400);
  border-radius: 50%;
}

.hero-shape--bl {
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: var(--teal-600);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 120px 24px 80px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  background: rgba(45,212,191,0.12);
  border: 1px solid rgba(45,212,191,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline .highlight {
  color: var(--teal-400);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-300);
  max-width: 560px;
  margin: 0 auto 40px;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

.btn-primary:hover {
  background: var(--teal-500);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ── MARQUEE ── */
.marquee {
  background: var(--teal-600);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 20s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.marquee span {
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}

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

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.7;
}

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

.menu-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.deco-circle {
  top: 60px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(13,148,136,0.06);
}

.deco-square {
  bottom: 40px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: rgba(30,41,59,0.04);
  border-radius: var(--radius-lg);
  transform: rotate(25deg);
}

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

.menu-card {
  padding: 40px 36px;
  border-radius: var(--radius-xl);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.menu-card--teal {
  background: var(--teal-600);
  color: var(--white);
}

.menu-card--slate {
  background: var(--slate-800);
  color: var(--white);
}

.menu-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--white);
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.menu-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ── ABOUT ── */
.about-section {
  background: var(--white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--teal-400);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.6;
}

.about-image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

.about-content {
  max-width: 480px;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--slate-600);
  margin-bottom: 16px;
}

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

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

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-600);
}

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

/* ── VIBE ── */
.vibe-section {
  background: var(--slate-900);
  padding: 100px 0 120px;
}

.vibe-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(13,148,136,0.15) 100%);
  pointer-events: none;
}

.vibe-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

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

.vibe-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--slate-800);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vibe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.vibe-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.vibe-card-content {
  padding: 28px 28px 32px;
}

.vibe-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.vibe-card-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate-400);
}

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

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

.visit-info {
  padding: 40px 0;
}

.visit-info .section-tag {
  text-align: left;
}

.visit-info .section-title {
  text-align: left;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-600);
  border-radius: var(--radius-md);
  color: var(--white);
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--slate-800);
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--teal-600);
  transition: color 0.2s;
}

.visit-detail a:hover {
  color: var(--teal-700);
  text-decoration: underline;
}

.btn-map {
  background: var(--slate-800);
  color: var(--white);
}

.btn-map:hover {
  background: var(--slate-700);
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* ── CONTACT ── */
.contact-section {
  background: var(--teal-700);
  position: relative;
  overflow: hidden;
}

.contact-deco {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-left .section-tag {
  color: var(--teal-400);
}

.contact-left .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

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

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

.form-group label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--teal-400);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-400);
  background: rgba(255,255,255,0.12);
}

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

.btn-submit {
  align-self: flex-start;
  background: var(--white);
  color: var(--teal-700);
}

.btn-submit:hover {
  background: var(--slate-100);
}

.form-success {
  display: none;
  font-size: 0.9375rem;
  color: var(--teal-400);
  text-align: center;
  padding: 16px;
  background: rgba(45,212,191,0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45,212,191,0.3);
}

/* ── FOOTER ── */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a,
.footer-contact a {
  font-size: 0.9375rem;
  color: var(--slate-400);
  transition: color 0.2s;
}

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

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

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .menu-grid,
  .vibe-grid,
  .about-grid,
  .visit-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    order: -1;
  }

  .about-content {
    max-width: 100%;
  }

  .hero-shape {
    display: none;
  }

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

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  .about-stats {
    gap: 24px;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: no-preference) {
  .menu-card,
  .vibe-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

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