/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --cream-50: #fefdf8;
  --cream-100: #fef9e8;
  --cream-200: #fdf0c7;
  --cream-300: #fde68a;
  --warm-50: #fffbeb;
  --warm-100: #fef3c7;
  --warm-200: #fde68a;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(6,79,70,.08), 0 1px 2px rgba(6,79,70,.06);
  --shadow-md: 0 4px 16px rgba(6,79,70,.1), 0 2px 4px rgba(6,79,70,.06);
  --shadow-lg: 0 12px 40px rgba(6,79,70,.12), 0 4px 12px rgba(6,79,70,.08);
  --shadow-xl: 0 20px 60px rgba(6,79,70,.15), 0 8px 20px rgba(6,79,70,.1);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--stone-800);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--emerald-900); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald-600);
  background: var(--emerald-100);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--stone-500);
  max-width: 560px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-700);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--cream-100);
  color: var(--emerald-800);
  border: 2px solid var(--emerald-200);
}
.btn-secondary:hover {
  background: var(--emerald-50);
  border-color: var(--emerald-400);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254,253,248,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--emerald-100);
  transition: var(--transition);
}

.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: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--emerald-800);
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--emerald-700);
  color: #fff;
  border-radius: var(--radius-sm);
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--stone-600);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--emerald-700); background: var(--emerald-50); }

.nav-cta {
  background: var(--emerald-700) !important;
  color: #fff !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--emerald-800) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--emerald-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream-50) 0%, var(--emerald-50) 50%, var(--cream-100) 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(6,79,70,.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(6,79,70,.05) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(253,230,138,.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  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: var(--warm-100);
  color: var(--stone-700);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid var(--warm-200);
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--emerald-900);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--stone-500);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-card-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-card-main-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--emerald-800);
  box-shadow: var(--shadow-md);
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.hero-float-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 120px;
  left: -30px;
  animation-delay: 1.3s;
}

.hero-float-3 {
  bottom: 20px;
  right: -10px;
  animation-delay: 2.6s;
}

.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--emerald-100);
  color: var(--emerald-700);
  flex-shrink: 0;
}

.float-icon--warm { background: var(--warm-100); color: var(--stone-700); }
.float-icon--accent { background: var(--emerald-200); color: var(--emerald-800); }

.float-text { display: flex; flex-direction: column; }
.float-text strong { font-size: .85rem; color: var(--stone-800); line-height: 1.3; }
.float-text span { font-size: .75rem; color: var(--stone-500); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--cream-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-300);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--emerald-100);
  color: var(--emerald-700);
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-icon--warm { background: var(--warm-100); color: var(--stone-700); }
.feature-icon--accent { background: var(--emerald-200); color: var(--emerald-800); }

.feature-card:hover .feature-icon { background: var(--emerald-700); color: #fff; }

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--emerald-900);
}

.feature-card p {
  font-size: .9rem;
  color: var(--stone-500);
  line-height: 1.7;
}

/* ===== MENU ===== */
.menu {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--emerald-50) 100%);
}

.menu .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.menu .section-subtitle { margin: 0 auto; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--emerald-100);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }

.menu-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--emerald-700);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.menu-card-body {
  padding: 24px;
}
.menu-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--emerald-900);
}
.menu-card-body p {
  font-size: .88rem;
  color: var(--stone-500);
  line-height: 1.7;
}

.menu-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.menu-cta p {
  font-size: 1rem;
  color: var(--stone-500);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 600px; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }

.about-pattern {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(
    45deg,
    var(--emerald-200),
    var(--emerald-200) 8px,
    var(--emerald-100) 8px,
    var(--emerald-100) 16px
  );
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: .6;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }

.about-text {
  font-size: 1rem;
  color: var(--stone-500);
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--emerald-700);
  line-height: 1;
}
.about-stat-label {
  font-size: .85rem;
  color: var(--stone-500);
  font-weight: 600;
}

/* ===== VISIT ===== */
.visit {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
  color: #fff;
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.visit-content {
  padding: 60px 50px;
  background: var(--emerald-800);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-content .section-tag { background: rgba(255,255,255,.15); color: var(--emerald-200); }
.visit-content .section-title { color: #fff; }
.visit-text { color: var(--emerald-200); font-size: 1rem; line-height: 1.8; }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  color: var(--emerald-300);
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-size: .9rem;
  color: #fff;
  margin-bottom: 2px;
}
.visit-detail span, .visit-detail a {
  font-size: .88rem;
  color: var(--emerald-200);
}
.visit-detail a:hover { color: #fff; text-decoration: underline; }

.visit-map {
  min-height: 480px;
  background: var(--stone-200);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 480px; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--cream-50);
}

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

.contact-text {
  font-size: 1rem;
  color: var(--stone-500);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--stone-200);
  transition: var(--transition);
}
.contact-method:hover {
  border-color: var(--emerald-300);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--emerald-100);
  color: var(--emerald-700);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-size: .85rem;
  color: var(--stone-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.contact-method span {
  font-size: 1rem;
  color: var(--stone-700);
  font-weight: 700;
}

/* ===== FORM ===== */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--emerald-100);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: .85rem;
  color: var(--stone-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--stone-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--stone-800);
  background: var(--cream-50);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16,185,129,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone-400); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-200);
  border-radius: var(--radius-sm);
  color: var(--emerald-800);
  font-weight: 700;
  font-size: .9rem;
}
.form-success svg { color: var(--emerald-600); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--stone-800);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--emerald-700);
  color: #fff;
  border-radius: var(--radius-sm);
}

.footer-brand p { font-size: .9rem; line-height: 1.7; }

.footer-links,
.footer-hours,
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong,
.footer-hours strong,
.footer-contact strong {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.footer-links a,
.footer-hours a,
.footer-contact a {
  font-size: .9rem;
  color: var(--stone-400);
  transition: var(--transition);
}
.footer-links a:hover,
.footer-hours a:hover,
.footer-contact a:hover { color: var(--emerald-400); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: var(--stone-500);
}

/* ===== MOBILE NAV ===== */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(254,253,248,.98);
  backdrop-filter: blur(16px);
  padding: 20px 24px;
  border-bottom: 1px solid var(--emerald-100);
  box-shadow: var(--shadow-md);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; min-height: 400px; }
  .hero-content { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-float-1 { right: 10px; }
  .hero-float-2 { left: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { right: 20px; bottom: -20px; width: 160px; }
  .visit-card { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .visit-map iframe { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-visual { min-height: 320px; }
  .hero-img { height: 280px; }
  .hero-float { display: none; }

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

  .about-img-main img { height: 400px; }
  .about-img-secondary { width: 120px; bottom: -10px; right: 10px; }
  .about-pattern { width: 80px; height: 80px; }
  .about-stats { flex-direction: column; gap: 20px; }

  .visit-content { padding: 40px 28px; }

  .contact-form-wrap { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-img-main img { height: 300px; }
}
