/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E2D;
  background-color: #FDF8F0;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', 'Georgia', serif; font-weight: 600; line-height: 1.25; }
address { font-style: normal; }
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: #1B4332; color: #FDF8F0;
  padding: 8px 16px; z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --emerald-900: #1B4332;
  --emerald-800: #2D6A4F;
  --emerald-700: #40916C;
  --emerald-600: #52B788;
  --cream-100: #FDF8F0;
  --cream-200: #F5EDE0;
  --cream-300: #EDE0CC;
  --warm-500: #D4A574;
  --warm-600: #B8865A;
  --text-dark: #1A2E1C;
  --text-medium: #3D5A3F;
  --text-light: #6B8A6D;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
  --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.10);
  --shadow-lg: 0 16px 60px rgba(27, 67, 50, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}
@media (min-width: 1200px) {
  .container { padding: 0 48px; }
}
.text-center { text-align: center; }

/* ===== SECTION HELPERS ===== */
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--emerald-900);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-header { margin-bottom: 60px; }
@media (min-width: 768px) {
  .section-header { margin-bottom: 80px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-emerald {
  background: var(--emerald-800);
  color: #FDF8F0;
  border-color: var(--emerald-800);
}
.btn-emerald:hover {
  background: var(--emerald-900);
  border-color: var(--emerald-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--emerald-800);
  border-color: var(--emerald-800);
}
.btn-outline:hover {
  background: var(--emerald-800);
  color: #FDF8F0;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald-900);
}
.logo-icon { color: var(--emerald-800); }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--emerald-700);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--emerald-800); }
.main-nav a:hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-bar {
  width: 24px; height: 2px;
  background: var(--emerald-900);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .main-nav a { font-size: 1.2rem; }
}

/* ===== HERO ===== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--cream-100);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
  }
}
.hero-content { order: 1; }
.hero-image { order: 2; }
@media (min-width: 900px) {
  .hero-content { order: 1; }
  .hero-image { order: 2; }
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--emerald-900);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--emerald-700);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
}
.hero-features svg { color: var(--emerald-700); flex-shrink: 0; }

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 620 / 780;
}
.hero-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--warm-500);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 899px) {
  .hero-image { order: 2; }
  .hero-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-accent { display: none; }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream-100);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
  color: var(--text-medium);
  margin-bottom: 18px;
  line-height: 1.85;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-300);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--emerald-800);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px; height: 48px;
  background: var(--cream-300);
}

/* ===== MENU ===== */
.menu {
  padding: 100px 0;
  background: var(--cream-200);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.menu-category {
  background: var(--cream-100);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.menu-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.category-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 106, 79, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--emerald-800);
}
.category-title {
  font-size: 1.35rem;
  color: var(--emerald-900);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-300);
}
.menu-list { display: flex; flex-direction: column; gap: 16px; }
.menu-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-200);
}
.menu-list li:last-child { border-bottom: none; padding-bottom: 0; }
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}
.menu-note {
  margin-top: 48px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--cream-100);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .gallery-item--large { grid-row: span 2; }
  .gallery-item--large img { aspect-ratio: 640/480; }
  .gallery-item--wide { grid-column: span 2; }
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.015);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

/* ===== VISIT ===== */
.visit {
  padding: 100px 0;
  background: var(--cream-200);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .visit-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
}
.visit-info .section-eyebrow { margin-bottom: 12px; }
.visit-info .section-title { margin-bottom: 28px; }
.visit-details {
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-medium);
}
.visit-details a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-700);
  transition: color var(--transition);
}
.visit-details a:hover { color: var(--emerald-900); }
.hours-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--emerald-900);
  margin-bottom: 16px;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-300);
  font-size: 0.95rem;
}
.hours-list .day { color: var(--text-dark); font-weight: 500; }
.hours-list .time { color: var(--text-medium); }
.visit-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.visit-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.visit-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--emerald-900);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.contact-text .section-eyebrow { color: var(--emerald-600); }
.contact-text .section-title { color: #FDF8F0; }
.contact-text p {
  color: rgba(253, 248, 240, 0.7);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-top: 16px;
}
.contact-form {
  background: rgba(253, 248, 240, 0.06);
  border: 1px solid rgba(253, 248, 240, 0.12);
  border-radius: var(--radius-md);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 599px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(253, 248, 240, 0.8);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #FDF8F0;
  background: rgba(253, 248, 240, 0.08);
  border: 1px solid rgba(253, 248, 240, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(253, 248, 240, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  background: rgba(253, 248, 240, 0.12);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%23FDF8F0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option { background: var(--emerald-900); color: #FDF8F0; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(82, 183, 136, 0.15);
  border: 1px solid rgba(82, 183, 136, 0.3);
  border-radius: var(--radius-sm);
  color: var(--emerald-600);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #132B1F;
  color: rgba(253, 248, 240, 0.65);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-brand .logo { color: #FDF8F0; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #FDF8F0;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 248, 240, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--emerald-600); }
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 4px;
}
.footer-contact a {
  color: rgba(253, 248, 240, 0.6);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--emerald-600); }
.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.08);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(253, 248, 240, 0.35);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fallback: always visible if JS disabled or reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
