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

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
em { font-style: italic; }

/* ── Section Labels ── */
.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-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 20px;
}
.section-title em { color: #14b8a6; }
.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #14b8a6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}
.btn-primary:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.5);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0f172a;
}
.nav-logo-icon { width: 36px; height: 36px; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.nav-link:hover { color: #14b8a6; background: rgba(20, 184, 166, 0.08); }
.btn-nav {
  background: #14b8a6;
  color: #fff !important;
  border-radius: 50px;
  margin-left: 8px;
}
.btn-nav:hover { background: #0d9488; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: #334155;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.mobile-menu-link:hover { color: #14b8a6; background: rgba(20,184,166,0.08); }
.btn-mobile {
  margin-top: 16px;
  background: #14b8a6;
  color: #fff !important;
  border-radius: 50px;
  padding: 14px 40px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 30%, #5eead4 55%, #99f6e4 75%, #cbd5e1 100%);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(20,184,166,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(100,116,139,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title em {
  font-style: italic;
  color: #ccfbf1;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: #f8fafc;
}
.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;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 4px solid #f8fafc;
}
.about-img-float img { width: 200px; height: 200px; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.6;
}
.about-content { padding: 20px 0; }
.about-text {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(20,184,166,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 2px;
}
.about-feature p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ── Menu ── */
.menu {
  padding: 120px 0;
  background: #fff;
}
.menu-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: #f8fafc;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(203,213,225,0.5);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(20,184,166,0.3);
}
.menu-card-img {
  overflow: hidden;
  height: 200px;
}
.menu-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 24px; }
.menu-card-body h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 8px;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}

/* ── Visit ── */
.visit {
  padding: 120px 0;
  background: linear-gradient(180deg, #f0fdfa 0%, #f8fafc 100%);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit-text {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  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 {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(20,184,166,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-detail strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.visit-detail p, .visit-detail a {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}
.visit-detail a:hover { color: #14b8a6; }
.btn-map {
  background: #0f766e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(15,118,110,0.3);
}
.btn-map:hover {
  background: #14b8a6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20,184,166,0.4);
}
.visit-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  aspect-ratio: 650/550;
}
.visit-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visit-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  animation: pinBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Testimonial Strip ── */
.testimonial-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  position: relative;
  overflow: hidden;
}
.testimonial-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.testimonial-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.quote-mark { margin-bottom: 20px; }
.testimonial-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-source {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #475569;
}
.contact-info-item a {
  color: #14b8a6;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-info-item a:hover { color: #0d9488; }

/* Form */
.contact-form-wrap {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(203,213,225,0.5);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1e293b;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
}
.form-input:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.12);
}
.form-input::placeholder { color: #94a3b8; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: 10px;
  color: #0f766e;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Footer ── */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(100,116,139,0.2);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.footer-logo-icon { width: 32px; height: 32px; }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 280px;
}
.footer-links strong,
.footer-hours strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.footer-links ul,
.footer-hours ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: #64748b;
  transition: color 0.2s;
}
.footer-links a:hover { color: #14b8a6; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #64748b;
}
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-contact a { color: #14b8a6; transition: color 0.2s; }
.footer-contact a:hover { color: #5eead4; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #475569;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-img-float { right: 0; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.2rem; }
  .menu-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-img-float { position: relative; bottom: 0; right: 0; margin-top: 16px; }
  .about-img-float img { width: 100%; height: 200px; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
}
