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

:root {
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-light: #14B8A6;
  --slate: #1E293B;
  --slate-mid: #334155;
  --slate-light: #475569;
  --accent: #F59E0B;
  --accent-light: #FCD34D;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

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

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

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

/* NAV */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

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

.logo-icon {
  color: var(--teal);
}

.logo--light .logo-icon {
  color: var(--teal-light);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--slate-light);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--teal);
  background: rgba(13,148,136,0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--white);
  background: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

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

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

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--off-white) 0%, #E6F6F5 50%, var(--gray-50) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
}

.geo-circle--1 {
  width: 500px;
  height: 500px;
  background: rgba(13,148,136,0.07);
  top: -120px;
  right: -100px;
}

.geo-circle--2 {
  width: 300px;
  height: 300px;
  background: rgba(245,158,11,0.08);
  bottom: -60px;
  left: -60px;
}

.geo-rect {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(13,148,136,0.06);
  border-radius: 20px;
  transform: rotate(45deg);
  top: 200px;
  left: 50%;
}

.geo-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--gray-200) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
  bottom: 120px;
  right: 30%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.hero-tag svg {
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--slate);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-accent {
  color: var(--teal);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

.badge svg {
  color: var(--teal);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}

.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13,148,136,0.4);
}

.btn--ghost {
  background: var(--white);
  color: var(--slate);
  border: 1.5px solid var(--gray-200);
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

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

.btn--white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
}

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

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

/* HERO IMAGE */
.hero-image {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.float-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.float-card-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.float-card-value {
  font-weight: 700;
  color: var(--slate);
  font-size: 0.95rem;
}

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(13,148,136,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--slate);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.text-teal {
  color: var(--teal);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ABOUT */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-img-stack {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  display: block;
  width: 100%;
  height: auto;
}

.about-geo-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--teal);
  border-radius: 20px;
  transform: rotate(15deg);
  z-index: -1;
}

.about-content p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: var(--gray-100);
  align-self: stretch;
}

/* MENU */
.menu {
  position: relative;
  padding: 120px 0;
  background: var(--slate);
  overflow: hidden;
}

.menu-bg-block {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(13,148,136,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.menu .section-tag {
  background: rgba(13,148,136,0.2);
}

.menu .section-desc {
  color: var(--gray-400);
}

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

.menu-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
}

.menu-card--teal {
  border-color: rgba(13,148,136,0.3);
}

.menu-card--teal:hover {
  border-color: var(--teal);
  background: rgba(13,148,136,0.08);
}

.menu-card--slate {
  border-color: rgba(255,255,255,0.1);
}

.menu-card--accent {
  border-color: rgba(245,158,11,0.3);
}

.menu-card--accent:hover {
  border-color: var(--accent);
  background: rgba(245,158,11,0.08);
}

.menu-card-geo {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.06;
  top: -30px;
  right: -30px;
}

.menu-card--teal .menu-card-geo { background: var(--teal); }
.menu-card--slate .menu-card-geo { background: var(--white); }
.menu-card--accent .menu-card-geo { background: var(--accent); }

.menu-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.menu-card--teal .menu-card-icon {
  background: rgba(13,148,136,0.15);
  color: var(--teal-light);
}

.menu-card--slate .menu-card-icon {
  background: rgba(255,255,255,0.08);
  color: var(--gray-200);
}

.menu-card--accent .menu-card-icon {
  background: rgba(245,158,11,0.15);
  color: var(--accent);
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.menu-card-desc {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.menu-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-300);
  font-size: 0.9rem;
}

.menu-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.menu-card--teal .menu-card-list li::before { background: var(--teal); }
.menu-card--slate .menu-card-list li::before { background: var(--gray-400); }
.menu-card--accent .menu-card-list li::before { background: var(--accent); }

.menu-footer {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.menu-footer p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* VIBE */
.vibe {
  padding: 120px 0;
  background: var(--off-white);
  overflow: hidden;
}

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

.vibe-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.vibe-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vibe-feature-icon.teal {
  background: rgba(13,148,136,0.1);
  color: var(--teal);
}

.vibe-feature-icon.slate {
  background: rgba(30,41,59,0.08);
  color: var(--slate);
}

.vibe-feature-icon.accent {
  background: rgba(245,158,11,0.1);
  color: var(--accent);
}

.vibe-feature strong {
  display: block;
  color: var(--slate);
  font-size: 1rem;
  margin-bottom: 4px;
}

.vibe-feature span {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

.vibe-gallery {
  position: relative;
}

.vibe-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vibe-img--1 {
  box-shadow: var(--shadow-lg);
}

.vibe-img--1 img,
.vibe-img--2 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vibe-img--2 {
  margin-top: -40px;
  margin-left: 40px;
}

.vibe-geo-stripes {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: repeating-linear-gradient(
    45deg,
    var(--teal),
    var(--teal) 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.15;
  border-radius: 12px;
}

/* VISIT */
.visit {
  padding: 120px 0;
  background: var(--white);
}

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

.visit-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(13,148,136,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.visit-detail p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

.visit-detail a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

.visit-detail a:hover {
  text-decoration: underline;
}

.visit-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visit-map img {
  display: block;
  width: 100%;
  height: auto;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.map-pin {
  flex-shrink: 0;
}

.map-overlay p {
  font-weight: 600;
  color: var(--slate);
  font-size: 0.9rem;
}

/* CTA */
.cta {
  position: relative;
  padding: 120px 0;
  background: var(--teal);
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape--1 {
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  top: -100px;
  left: -100px;
}

.cta-shape--2 {
  width: 250px;
  height: 250px;
  background: rgba(245,158,11,0.15);
  bottom: -60px;
  right: 10%;
}

.cta-shape--3 {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.06);
  top: 30%;
  right: 5%;
  border-radius: 20px;
  transform: rotate(30deg);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.cta-accent {
  color: var(--accent-light);
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: var(--slate);
  padding: 64px 0 0;
}

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

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 12px;
}

.footer-brand a {
  color: var(--teal-light);
  text-decoration: none;
}

.footer-brand a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-hours strong {
  color: var(--white);
  font-size: 0.9rem;
}

.footer-hours p {
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 8px;
}

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

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

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-float-card {
    left: 10px;
    bottom: 20px;
  }

  .about-grid,
  .vibe-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-secondary {
    right: 0;
  }

  .menu-categories {
    grid-template-columns: 1fr;
  }

  .vibe-img--2 {
    margin-left: 0;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-inner {
    padding: 40px 0;
  }

  .about,
  .menu,
  .vibe,
  .visit,
  .cta {
    padding: 80px 0;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn--lg {
    padding: 14px 24px;
  }
}
