/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
  color: #3D2B1F;
  background: #FDF8F0;
  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; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B85D38;
  margin-bottom: 12px;
}
.section-eyebrow.light { color: rgba(253,251,247,0.7); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #3D2B1F;
  margin-bottom: 24px;
}
.section-title.light { color: #FDF8F0; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: #B85D38;
  color: #FDF8F0;
  border-color: #B85D38;
}
.btn-primary:hover {
  background: #a84e2c;
  border-color: #a84e2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,93,56,0.3);
}
.btn-secondary {
  background: transparent;
  color: #FDF8F0;
  border-color: rgba(253,251,247,0.5);
}
.btn-secondary:hover {
  border-color: #FDF8F0;
  background: rgba(253,251,247,0.1);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(253,248,240,0.97);
  box-shadow: 0 2px 20px rgba(61,43,31,0.08);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FDF8F0;
  transition: color 0.3s ease;
}
.nav.scrolled .nav-logo { color: #3D2B1F; }
.nav-logo-text { transition: color 0.3s ease; }
.nav.scrolled .nav-logo-text { color: #3D2B1F; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253,251,247,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #B85D38;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #FDF8F0; }
.nav.scrolled .nav-links a { color: rgba(61,43,31,0.7); }
.nav.scrolled .nav-links a:hover { color: #3D2B1F; }
.btn-nav {
  background: #B85D38 !important;
  color: #FDF8F0 !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.3s ease, transform 0.3s ease !important;
}
.btn-nav:hover { background: #a84e2c !important; transform: translateY(-1px); }
.btn-nav::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #FDF8F0;
  transition: color 0.3s ease;
}
.nav.scrolled .nav-toggle { color: #3D2B1F; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,240,0.98);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 8px 32px rgba(61,43,31,0.1);
    backdrop-filter: blur(10px);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: rgba(61,43,31,0.7) !important; font-size: 0.9375rem; }
  .nav-links a:hover { color: #3D2B1F !important; }
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #562616 0%, #B85D38 35%, #d4ad62 65%, #e9d8ad 85%, #FDF8F0 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253,251,247,0.7);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #FDF8F0;
  margin-bottom: 24px;
}
.hero-title-accent {
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(253,251,247,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(253,251,247,0.5);
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Section Spacing ──────────────────────────────────── */
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 72px 0; } }

/* ── About ────────────────────────────────────────────── */
.about { background: #FDF8F0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(61,43,31,0.15);
}
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #B85D38;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.2;
}
.about-text {
  font-size: 1.0625rem;
  color: #5C4033;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-features {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3D2B1F;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 480px; }
}

/* ── Menu ─────────────────────────────────────────────── */
.menu { background: #F9F4E8; }
.menu-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.menu-intro { font-size: 1.0625rem; color: #5C4033; line-height: 1.8; }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.menu-category {
  background: #FDF8F0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(61,43,31,0.06);
  border: 1px solid rgba(184,93,56,0.1);
}
.menu-category-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,93,56,0.08);
  border-radius: 12px;
  margin-bottom: 20px;
}
.menu-category-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3D2B1F;
  margin-bottom: 24px;
}
.menu-list { display: flex; flex-direction: column; gap: 20px; }
.menu-list li { display: flex; flex-direction: column; gap: 4px; }
.menu-item-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #3D2B1F;
}
.menu-item-desc {
  font-size: 0.875rem;
  color: #8a7560;
  line-height: 1.5;
}
.menu-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.875rem;
  color: #8a7560;
  font-style: italic;
}

@media (max-width: 700px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-category { padding: 28px; }
}

/* ── Atmosphere ───────────────────────────────────────── */
.atmosphere {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.atm-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3D2B1F 0%, #5C4033 50%, #6e301c 100%);
  z-index: 1;
}
.atmosphere .container {
  position: relative;
  z-index: 2;
}
.atm-content {
  max-width: 640px;
  margin-bottom: 48px;
}
.atm-text {
  font-size: 1.125rem;
  color: rgba(253,251,247,0.75);
  line-height: 1.8;
  font-weight: 300;
}
.atm-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 240px 200px;
  gap: 16px;
}
.atm-gallery-item {
  border-radius: 12px;
  overflow: hidden;
}
.atm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.atm-gallery-item:hover img { transform: scale(1.05); }
.atm-gallery-item--large {
  grid-row: 1 / 3;
}

@media (max-width: 700px) {
  .atm-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 200px 200px;
  }
  .atm-gallery-item--large { grid-row: auto; }
}

/* ── Visit ────────────────────────────────────────────── */
.visit { background: #FDF8F0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.visit-detail svg { flex-shrink: 0; margin-top: 2px; }
.visit-detail strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3D2B1F;
  margin-bottom: 4px;
}
.visit-detail p, .visit-detail a {
  font-size: 0.9375rem;
  color: #5C4033;
  line-height: 1.6;
}
.visit-detail a:hover { color: #B85D38; }
.visit-map { margin-top: 32px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(61,43,31,0.1); }

/* Hours */
.visit-hours {
  background: #3D2B1F;
  border-radius: 16px;
  padding: 40px;
  color: #FDF8F0;
}
.visit-hours-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #FDF8F0;
}
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(253,251,247,0.1);
  font-size: 0.9375rem;
}
.hours-row span:first-child { color: rgba(253,251,247,0.6); }
.hours-row span:last-child { font-weight: 600; color: #FDF8F0; }
.hours-row:last-child { border-bottom: none; }
.hours-note {
  font-size: 0.8125rem;
  color: rgba(253,251,247,0.4);
  margin-top: 16px;
  font-style: italic;
}
.visit-cta { margin-top: 32px; }
.visit-cta .btn-primary {
  background: #B85D38;
  border-color: #B85D38;
  width: 100%;
  justify-content: center;
}
.visit-cta .btn-primary:hover {
  background: #a84e2c;
  border-color: #a84e2c;
}

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Contact ──────────────────────────────────────────── */
.contact { background: #F9F4E8; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-desc {
  font-size: 1.0625rem;
  color: #5C4033;
  line-height: 1.8;
  margin-top: 16px;
}
.contact-form {
  background: #FDF8F0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(61,43,31,0.06);
  border: 1px solid rgba(184,93,56,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5C4033;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(184,93,56,0.2);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9375rem;
  color: #3D2B1F;
  background: #FDF8F0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #B85D38;
  box-shadow: 0 0 0 3px rgba(184,93,56,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b8a490; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  background: rgba(184,93,56,0.08);
  border-radius: 8px;
  color: #B85D38;
  font-weight: 600;
  font-size: 0.9375rem;
}
.form-success.show { display: block; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: #3D2B1F;
  color: #FDF8F0;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FDF8F0;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(253,251,247,0.5);
  line-height: 1.7;
  max-width: 240px;
}
.footer-links strong,
.footer-contact strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FDF8F0;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(253,251,247,0.55);
  padding: 5px 0;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #f49a7a; }
.footer-contact p {
  font-size: 0.875rem;
  color: rgba(253,251,247,0.55);
  line-height: 1.7;
}
.footer-contact a:hover { color: #f49a7a; }
.footer-bottom {
  border-top: 1px solid rgba(253,251,247,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(253,251,247,0.35);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Animations ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
