/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #faf8f5;
  color: #1a2e2b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #064e3b; color: #fff; padding: 8px 16px;
  border-radius: 0 0 8px 8px; z-index: 9999; font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #065f46; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #064e3b; margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  border: 2px solid transparent; border-radius: 8px;
  cursor: pointer; transition: all 0.25s ease; font-size: 15px;
}
.btn-primary {
  background: #064e3b; color: #fff; border-color: #064e3b;
}
.btn-primary:hover { background: #065f46; border-color: #065f46; transform: translateY(-1px); }
.btn-secondary {
  background: #fff; color: #064e3b; border-color: #fff;
}
.btn-secondary:hover { background: #f0fdf4; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline {
  background: transparent; color: #064e3b; border-color: #064e3b;
}
.btn-outline:hover { background: #064e3b; color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(6, 78, 59, 0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 18px; color: #064e3b;
}
.logo-mark { color: #064e3b; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-size: 14px; font-weight: 500; color: #374151;
  transition: color 0.2s; position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #064e3b; transition: width 0.25s ease;
}
.main-nav a:hover { color: #064e3b; }
.main-nav a:hover::after { width: 100%; }
.main-nav .btn { margin-left: 8px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px; background: #064e3b;
  border-radius: 2px; transition: all 0.3s ease;
}
.hamburger { position: relative; margin: 0 auto; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding-top: 100px; min-height: 100vh;
  display: flex; align-items: center; position: relative;
  overflow: hidden; background: #faf8f5;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #065f46; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: #065f46;
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1; color: #064e3b; margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: #047857; }
.hero-sub {
  font-size: 17px; color: #4b5563; line-height: 1.7;
  margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: #374151;
  background: #f0fdf4; border: 1px solid #d1fae5;
  padding: 6px 14px; border-radius: 100px;
}
.badge svg { color: #065f46; }

/* Hero image stack */
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }
.hero-img--main {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(6, 78, 59, 0.15);
}
.hero-img--main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--accent {
  position: absolute; bottom: -40px; left: -60px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.2);
  border: 4px solid #faf8f5;
}
.hero-img--accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent-block {
  position: absolute; top: -20px; right: -30px;
  background: #064e3b; color: #fff;
  padding: 20px 24px; border-radius: 12px;
  text-align: center; box-shadow: 0 12px 32px rgba(6, 78, 59, 0.3);
}
.accent-number { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.7; }
.accent-year { display: block; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }

/* Hero background pattern */
.hero-pattern {
  position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
  clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
  z-index: 0; opacity: 0.6;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }

/* ===== ABOUT ===== */
.about { background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(6, 78, 59, 0.15);
  border: 4px solid #fff; max-width: 220px;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content p {
  font-size: 16px; color: #4b5563; line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 40px; border-top: 1px solid #e5e7eb;
}
.stat-number {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: #064e3b;
}
.stat-label {
  font-size: 13px; color: #6b7280; text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== MENU ===== */
.menu { background: #faf8f5; }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-bottom: 40px;
}
.menu-category {
  background: #fff; border-radius: 16px; padding: 36px 32px;
  border: 1px solid #e5e7eb; transition: all 0.3s ease;
}
.menu-category:hover {
  border-color: #065f46; box-shadow: 0 12px 40px rgba(6, 78, 59, 0.1);
  transform: translateY(-4px);
}
.category-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 2px solid #f0fdf4;
}
.category-header svg { color: #065f46; }
.category-title { font-size: 1.25rem; color: #064e3b; }
.menu-list { display: flex; flex-direction: column; gap: 16px; }
.menu-list li {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 12px;
}
.menu-item-name {
  font-weight: 600; color: #1a2e2b; font-size: 15px;
}
.menu-item-desc {
  font-size: 13px; color: #6b7280; text-align: right;
  line-height: 1.4;
}
.menu-note {
  text-align: center; font-size: 14px; color: #6b7280;
  padding: 20px; background: #f0fdf4; border-radius: 12px;
  border: 1px solid #d1fae5;
}

/* ===== GALLERY ===== */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 5/4;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== VISIT ===== */
.visit { background: #faf8f5; }
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.visit-address {
  font-size: 18px; line-height: 1.8; color: #1a2e2b;
  margin-bottom: 32px;
}
.visit-details { display: flex; flex-direction: column; gap: 24px; }
.visit-detail {
  display: flex; gap: 16px; align-items: flex-start;
}
.visit-detail svg { color: #065f46; flex-shrink: 0; margin-top: 2px; }
.visit-detail-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: #6b7280; margin-bottom: 4px;
}
.visit-detail p { font-size: 15px; color: #374151; }
.visit-detail a { color: #065f46; font-weight: 600; }
.visit-detail a:hover { text-decoration: underline; }
.visit-map .map-placeholder {
  background: #e5e7eb; border-radius: 16px;
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  color: #6b7280; text-align: center; padding: 40px;
}
.map-placeholder svg { color: #065f46; }
.map-placeholder p { font-size: 15px; }

/* ===== CONTACT ===== */
.contact { background: #fff; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact-content p { font-size: 16px; color: #4b5563; line-height: 1.8; }
.contact-form-wrap {
  background: #faf8f5; border-radius: 16px; padding: 40px;
  border: 1px solid #e5e7eb;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: #374151; margin-bottom: 6px; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #d1d5db;
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 15px;
  color: #1a2e2b; background: #fff; transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #065f46; box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  margin-top: 16px; padding: 16px; background: #d1fae5;
  border: 1px solid #a7f3d0; border-radius: 8px;
  color: #065f46; font-weight: 600; text-align: center;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #064e3b; padding: 80px 0;
}
.cta-inner { text-align: center; }
.cta-eyebrow { color: #6ee7b7; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; margin-bottom: 16px;
}
.cta-sub {
  font-size: 16px; color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: #042f25; color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo-mark { color: #6ee7b7; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: #6ee7b7; margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 14px; line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 13px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-img--accent { left: -30px; bottom: -20px; }
  .hero-accent-block { right: -10px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 69px; left: 0; right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px; flex-direction: column;
    gap: 20px; border-bottom: 1px solid rgba(6,78,59,0.1);
    transform: translateY(-120%); opacity: 0;
    transition: all 0.3s ease; pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 16px; text-align: center; }
  .main-nav .btn { margin-left: 0; width: 100%; justify-content: center; }

  .hero { padding-top: 80px; min-height: auto; padding-bottom: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-img--accent { left: -10px; bottom: -10px; }
  .hero-accent-block { top: -10px; right: -10px; padding: 14px 18px; }
  .hero-pattern { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-secondary { right: 0; bottom: -20px; }
  .about-stats { gap: 24px; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { order: -1; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .hero-headline { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
