/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ========== CUSTOM PROPERTIES ========== */
:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --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;
  --cream: #fefcf8;
  --peach: #fff0e6;
  --lavender: #f3f0ff;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.1), 0 4px 12px rgba(15,23,42,0.05);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Lora', serif; font-weight: 600; line-height: 1.25; color: var(--slate-800); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-600); color: #fff;
  box-shadow: 0 4px 14px rgba(13,148,136,0.35);
}
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,148,136,0.4); }
.btn-outline {
  background: transparent; color: var(--teal-700);
  border: 2px solid var(--teal-200);
}
.btn-outline:hover { background: var(--teal-50); border-color: var(--teal-400); }
.btn-outline-light {
  background: rgba(255,255,255,0.15); color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.25); }
.btn-full { width: 100%; justify-content: center; }

/* ========== SECTION LABELS ========== */
.section { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.section-desc { font-size: 1.1rem; color: var(--slate-500); max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,250,252,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; height: 72px; gap: 1rem; }
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Lora', serif; font-weight: 600; font-size: 1.1rem;
  color: var(--teal-700);
}
.nav-logo-icon { color: var(--teal-600); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-links a {
  padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--slate-600);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--teal-700); background: var(--teal-50); }
.nav-cta {
  padding: 0.55rem 1.25rem; border-radius: 50px;
  background: var(--teal-600); color: #fff;
  font-size: 0.88rem; font-weight: 600;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--teal-700); }
.nav-toggle {
  display: none; margin-left: auto;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  color: var(--slate-700); transition: background var(--transition);
}
.nav-toggle:hover { background: var(--slate-100); }
.hamburger {
  position: relative; width: 20px; height: 14px;
  display: block;
}
.hamburger::before, .hamburger::after, .hamburger span {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--slate-700);
  transition: all var(--transition);
}
.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { bottom: 6px; transform: rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--teal-900) 0%, #0a4f4a 50%, var(--teal-800) 100%);
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(45,212,191,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(13,148,136,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1; padding: 3rem 0;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); color: var(--teal-200);
  padding: 0.5rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.1);
}
.hero-badge svg { opacity: 0.8; }
.hero-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff; margin-bottom: 1.25rem; line-height: 1.3;
}
.hero-sub {
  font-size: 1.1rem; color: var(--teal-100); line-height: 1.75;
  margin-bottom: 2rem; max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--teal-200); font-size: 0.88rem; font-weight: 500;
}
.trust-item svg { opacity: 0.7; }
.hero-image { position: relative; }
.hero-img-main {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  aspect-ratio: 5/6;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.95); color: var(--slate-700);
  padding: 0.75rem 1rem; border-radius: var(--radius-md);
  font-size: 0.85rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card svg { color: var(--teal-600); }
.card-float-1 { top: 12%; left: -12%; animation-delay: 0s; }
.card-float-2 { bottom: 18%; right: -8%; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  color: var(--cream);
}
.hero-wave svg { width: 100%; height: 80px; }

/* ========== ABOUT ========== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 13/15; }
.about-img-secondary {
  position: absolute; bottom: -2rem; right: -2rem;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-accent {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-200), var(--teal-100));
  opacity: 0.6; z-index: -1;
}
.about-content .section-label { margin-bottom: 0.75rem; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p { color: var(--slate-600); margin-bottom: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.about-feature-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--teal-50); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-600);
}
.about-feature strong { display: block; color: var(--slate-800); margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.92rem; color: var(--slate-500); margin: 0; }

/* ========== MENU ========== */
.menu { background: var(--slate-50); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.menu-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--slate-100);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card-img { overflow: hidden; aspect-ratio: 3/2; }
.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-body { padding: 1.5rem; }
.menu-card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-50);
  padding: 0.3rem 0.7rem; border-radius: 50px; margin-bottom: 0.75rem;
}
.menu-card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.menu-card-body p { font-size: 0.92rem; color: var(--slate-500); line-height: 1.65; }

/* ========== GALLERY ========== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item--large { grid-column: span 7; grid-row: span 2; }
.gallery-item--large img { aspect-ratio: 3/2; }
.gallery-item:not(.gallery-item--large) img { aspect-ratio: 4/3; }
.gallery-item--wide img { aspect-ratio: 2/1; }

/* ========== VISIT ========== */
.visit { background: var(--slate-50); }
.visit-card {
  display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff;
}
.visit-content { padding: 3.5rem; display: flex; flex-direction: column; }
.visit-content .section-label { margin-bottom: 0.75rem; }
.visit-content .section-title { margin-bottom: 1rem; }
.visit-desc { color: var(--slate-500); margin-bottom: 2rem; }
.visit-info { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; flex: 1; }
.visit-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.visit-info-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--teal-50); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-600);
}
.visit-info-item strong { display: block; color: var(--slate-800); font-size: 0.92rem; }
.visit-info-item p { font-size: 0.9rem; color: var(--slate-500); margin: 0; line-height: 1.6; }
.visit-info-item a { color: var(--teal-600); transition: color var(--transition); }
.visit-info-item a:hover { color: var(--teal-700); }
.visit-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.visit-map { min-height: 400px; }

/* ========== CONTACT ========== */
.contact { background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 100%); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact .section-label { color: var(--teal-300); }
.contact .section-title { color: #fff; margin-bottom: 1rem; }
.contact-info p { color: var(--teal-100); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; color: var(--teal-100); font-size: 0.95rem; }
.contact-detail a { color: var(--teal-200); transition: color var(--transition); }
.contact-detail a:hover { color: #fff; }
.contact-form-wrap {
  background: rgba(255,255,255,0.07); border-radius: var(--radius-xl);
  padding: 2.5rem; border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--teal-200); margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); color: #fff;
  font-family: inherit; font-size: 0.95rem;
  transition: all var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--teal-300); opacity: 0.6; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal-400); background: rgba(255,255,255,0.12);
}
.form-group select option { background: var(--teal-800); color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1rem; padding: 1rem; border-radius: var(--radius-md);
  background: rgba(45,212,191,0.15); color: var(--teal-200);
  font-size: 0.9rem; font-weight: 500;
}
.form-success svg { color: var(--teal-400); flex-shrink: 0; }

/* ========== FOOTER ========== */
.footer { background: var(--slate-900); color: var(--slate-400); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-logo { color: var(--teal-300); }
.footer-links, .footer-hours, .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links strong, .footer-hours strong, .footer-contact strong {
  color: #fff; font-size: 0.9rem; margin-bottom: 0.25rem;
}
.footer-links a { font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-300); }
.footer-hours span, .footer-contact span { font-size: 0.88rem; }
.footer-contact a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; transition: color var(--transition); }
.footer-contact a:hover { color: var(--teal-300); }
.footer-contact svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding: 1.5rem 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.82rem;
}

/* ========== MOBILE NAV ========== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-open .nav-links,
  .nav-open .nav-cta {
    display: flex;
  }
  .nav-open .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; background: rgba(248,250,252,0.98);
    backdrop-filter: blur(16px); padding: 1rem;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
  }
  .nav-open .nav-cta {
    margin-top: 0.5rem; justify-content: center;
    padding: 0.75rem; border-radius: var(--radius-sm);
    background: var(--teal-600); color: #fff;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .hero-float-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 12; }
  .gallery-item:not(.gallery-item--large) { grid-column: span 6; }
  .visit-card { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 12; }
  .gallery-item:not(.gallery-item--large) { grid-column: span 12; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .visit-content { padding: 2rem; }
  .about-img-secondary { right: 0; bottom: -1.5rem; }
}

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

/* ========== PROGRESSIVE ENHANCEMENT: SCROLL REVEAL ========== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Default visible state for reduced-motion or no-JS */
.reveal { opacity: 1; transform: none; }
