/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1e293b;
  background: #ffffff;
  -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; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #0d9488;
  border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 16px;
}
.title-accent { color: #0d9488; }
.section-sub {
  font-size: 1.1rem;
  color: #475569;
  max-width: 640px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #0d9488;
  color: #ffffff;
  border-color: #0d9488;
}
.btn-primary:hover { background: #0f766e; border-color: #0f766e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; }
.btn-light {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
}
.btn-light:hover { background: #f1f5f9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; }
.btn-map {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(15,23,42,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.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: 28px;
  height: 28px;
  color: #0d9488;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: #0d9488; }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0d9488;
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: #0d9488;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #0f766e; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f2925 100%);
  padding: 120px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(13,148,136,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,148,136,0.15);
  border: 1px solid rgba(13,148,136,0.3);
  color: #5eead4;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge svg { width: 8px; height: 8px; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.stat-label { font-size: 0.8rem; color: #64748b; letter-spacing: 0.04em; }
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(100,116,139,0.4);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.hero-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 500px;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  border: 4px solid rgba(15,23,42,0.6);
  width: 180px;
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-card {
  position: absolute;
  top: 24px;
  right: -16px;
  background: #ffffff;
  color: #0f172a;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 2;
}
.hero-badge-card svg { width: 20px; height: 20px; color: #f59e0b; }
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== MENU ===== */
.menu {
  padding: 100px 0;
  background: #ffffff;
}
.menu .section-label, .menu .section-title, .menu .section-sub { text-align: center; display: block; margin-left: auto; margin-right: auto; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 40px;
}
.menu-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s ease;
}
.menu-card:hover { border-color: #0d9488; transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,148,136,0.1); }
.menu-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.menu-icon {
  width: 48px;
  height: 48px;
  background: rgba(13,148,136,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-icon svg { width: 24px; height: 24px; color: #0d9488; }
.menu-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #0f172a;
}
.menu-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 20px;
}
.menu-list { display: flex; flex-direction: column; gap: 10px; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}
.menu-list li:last-child { border-bottom: none; padding-bottom: 0; }
.menu-list li span:first-child { font-weight: 600; color: #0f172a; }
.menu-list li span:last-child { font-size: 0.82rem; color: #94a3b8; max-width: 55%; text-align: right; }
.menu-note {
  text-align: center;
  font-size: 0.88rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.menu-note svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #f8fafc;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-stack { position: relative; }
.about-img-1 {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15,23,42,0.12);
}
.about-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.about-img-2 {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15,23,42,0.15);
  border: 5px solid #f8fafc;
  width: 55%;
}
.about-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #0d9488;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(13,148,136,0.3);
}
.about-accent-box .accent-num {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}
.about-accent-box .accent-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.about-text .section-title { margin-top: 4px; }
.about-body {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(13,148,136,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; color: #0d9488; }
.value-item strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 2px;
}
.value-item span {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
}

/* ===== COMMUNITY ===== */
.community {
  padding: 100px 0;
  background: #ffffff;
}
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.community .section-title { margin-top: 4px; }
.community .section-sub { margin-bottom: 36px; }
.hours-grid {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: #0f172a; font-size: 0.95rem; }
.hours-time { color: #0d9488; font-weight: 600; font-size: 0.95rem; }

.map-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #ffffff;
}
.map-pin { width: 32px; height: 32px; flex-shrink: 0; }
.map-info { display: flex; flex-direction: column; }
.map-info strong { font-size: 1rem; margin-bottom: 2px; }
.map-info span { font-size: 0.88rem; opacity: 0.85; }

.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.25s ease;
}
.contact-card:hover { border-color: #0d9488; transform: translateX(4px); }
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(13,148,136,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: #0d9488; }
.contact-card strong { display: block; font-size: 0.9rem; color: #0f172a; margin-bottom: 2px; }
.contact-card span { font-size: 0.85rem; color: #64748b; word-break: break-all; }

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f2925 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,148,136,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text { max-width: 560px; }
.cta-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 16px;
}
.cta-sub { font-size: 1.05rem; color: #94a3b8; line-height: 1.75; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer-logo-icon { width: 24px; height: 24px; color: #0d9488; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: #64748b; }
.footer-col strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: #64748b;
  transition: color 0.2s;
}
.footer-col a:hover { color: #5eead4; }
.footer-col li { display: flex; justify-content: space-between; font-size: 0.9rem; }
.footer-col li span:last-child { color: #64748b; }
.footer-address { font-size: 0.9rem; line-height: 1.8; font-style: normal; }
.footer-address a { color: #64748b; transition: color 0.2s; }
.footer-address a:hover { color: #5eead4; }
.footer-address span { color: #64748b; }
.footer-bottom {
  border-top: 1px solid rgba(100,116,139,0.2);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #475569;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 16px 32px rgba(15,23,42,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { justify-content: center; }
  .hero-img-accent { left: 10px; bottom: -12px; width: 140px; }
  .hero-badge-card { right: 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-2 { width: 50%; right: -12px; bottom: -20px; }
  .community-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 0; }
  .hero-headline { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .about-img-2 { display: none; }
  .about-accent-box { top: -12px; left: -8px; padding: 12px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-card { padding: 24px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: no-preference) {
  .menu-card, .value-item, .contact-card, .map-card {
    transition: all 0.3s ease;
  }
}
