/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ── */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}
.menu-desc, .visit-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #0d9488;
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,148,136,0.3);
}
.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,0.4);
}
.btn-outline-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #0d9488;
  border: 1.5px solid #0d9488;
}
.btn-outline:hover {
  background: #0d9488;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  transition: color 0.35s ease;
}
.nav-logo-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  transition: color 0.35s ease;
}
.nav.scrolled .nav-logo-text { color: #0d9488; }
.nav.scrolled .nav-logo-sub { color: #475569; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}
.nav-link:hover { color: #fff; }
.nav.scrolled .nav-link { color: #475569; }
.nav.scrolled .nav-link:hover { color: #0d9488; }
.nav-cta {
  padding: 0.5rem 1.2rem;
  background: #0d9488;
  color: #fff !important;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: #0f766e;
  transform: translateY(-1px);
}
.nav.scrolled .nav-cta { color: #fff !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  color: #fff;
  transition: color 0.35s ease;
}
.nav.scrolled .nav-toggle { color: #1e293b; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,148,136,0.82) 0%,
    rgba(15,118,110,0.75) 35%,
    rgba(30,41,59,0.82) 70%,
    rgba(15,23,42,0.88) 100%
  );
  z-index: 1;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(15,23,42,0.3) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  padding: 2rem 1.5rem;
  padding-top: 5rem;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ── */
.about {
  padding: 7rem 0;
  background: #f8fafc;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 500px;
}
.about-img-main {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}
.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 4px solid #f8fafc;
}
.about-img-float img {
  width: 280px;
  height: 200px;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5eead4, #0d9488);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(13,148,136,0.3);
}
.about-text p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0d9488;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}

/* ── Menu ── */
.menu {
  padding: 7rem 0;
  background: #fff;
}
.menu-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.menu-header .menu-desc {
  margin: 0 auto;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.menu-card {
  background: #f8fafc;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid #e2e8f0;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: transparent;
}
.menu-card-img {
  overflow: hidden;
  height: 220px;
}
.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-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.menu-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}
.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
  font-style: italic;
}

/* ── Specials ── */
.specials {
  padding: 7rem 0;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 50%, #f1f5f9 100%);
}
.specials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.specials-content p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.specials-list {
  list-style: none;
  margin-bottom: 2.5rem;
}
.specials-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: #334155;
  font-weight: 500;
}
.specials-check {
  width: 24px;
  height: 24px;
  background: #ccfbf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  flex-shrink: 0;
}
.specials-visual {
  position: relative;
}
.specials-image {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  height: 500px;
}
.specials-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specials-quote {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  max-width: 280px;
}
.specials-quote svg {
  margin-bottom: 0.5rem;
}
.specials-quote blockquote {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.specials-quote cite {
  font-size: 0.8rem;
  color: #0d9488;
  font-weight: 600;
  font-style: normal;
}

/* ── Visit ── */
.visit {
  padding: 7rem 0;
  background: #fff;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.visit-info p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.visit-icon {
  width: 48px;
  height: 48px;
  background: #f0fdfa;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  flex-shrink: 0;
}
.visit-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}
.visit-value {
  display: block;
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.5;
}
.visit-link {
  color: #0d9488;
  transition: color 0.2s ease;
}
.visit-link:hover { color: #0f766e; }
.visit-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.visit-map {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  height: 450px;
}

/* ── Footer ── */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 1rem;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.footer-logo-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.5);
}
.footer-links-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links a,
.footer-phone {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-phone:hover { color: #5eead4; }
.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.mobile-nav-close:hover { color: #fff; }
.mobile-nav-link {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 1rem;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: #5eead4; }
.mobile-nav-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: #0d9488;
  color: #fff !important;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
}

/* ── Reveal animations (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-up { transform: translateY(30px); }
  .reveal-left { transform: translateX(-30px); }
  .reveal-right { transform: translateX(30px); }
  .reveal-up.visible,
  .reveal-left.visible,
  .reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
  }
  /* Hero content must always be visible — never hidden behind reveal */
  .hero .reveal-up,
  .hero .reveal-left,
  .hero .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .specials-inner,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images { min-height: 350px; }
  .about-img-float { right: 1rem; bottom: -1rem; }
  .about-img-float img { width: 200px; height: 150px; }
  .specials-quote { left: 1rem; bottom: -1rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-content { padding-top: 4rem; }
  .hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .menu-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-img-float { display: none; }
  .about-accent { width: 50px; height: 50px; top: -1rem; left: -0.5rem; }
  .about-accent svg { width: 28px; height: 28px; }
  .specials-image { height: 350px; }
  .specials-quote { position: relative; bottom: auto; left: auto; margin-top: 1rem; }
  .visit-map { height: 300px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

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