/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Section Tags ─────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C0603A;
  background: #FDF0EB;
  padding: .35em .9em;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag--center { display: block; text-align: center; }
.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #2D1F14;
  margin-bottom: 1rem;
}
.section-title--center { text-align: center; }
.section-subtitle {
  font-size: 1.05rem;
  color: #6B5B4E;
  max-width: 600px;
  line-height: 1.8;
}
.section-subtitle:where(.section-title--center, [class*="section-title--center"]) ~ & {
  margin-left: auto; margin-right: auto;
}
.section-subtitle { text-align: center; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-primary {
  background: #C0603A;
  color: #fff;
  border-color: #C0603A;
}
.btn-primary:hover { background: #a84e2c; border-color: #a84e2c; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(192,96,58,.35); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,248,240,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,96,58,.1);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(45,31,20,.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #2D1F14;
}
.nav-logo-icon { color: #C0603A; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-links a {
  padding: .5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  color: #4A3728;
  transition: all .25s ease;
}
.nav-links a:hover { background: #FDF0EB; color: #C0603A; }
.nav-cta {
  background: #C0603A !important;
  color: #fff !important;
  margin-left: .5rem;
}
.nav-cta:hover { background: #a84e2c !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #2D1F14;
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45,31,20,.55) 0%,
    rgba(45,31,20,.45) 50%,
    rgba(45,31,20,.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 2rem;
  animation: heroFadeUp .9s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F5D9A0;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── ABOUT ────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: #FDF8F0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 80%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(45,31,20,.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%;
  height: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45,31,20,.18);
  border: 5px solid #FDF8F0;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-tag { margin-bottom: .75rem; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p {
  color: #6B5B4E;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(45,31,20,.06);
  transition: transform .25s ease;
}
.about-feature:hover { transform: translateY(-3px); }
.about-icon {
  flex-shrink: 0;
  color: #C0603A;
}
.about-feature span {
  font-weight: 700;
  font-size: .9rem;
  color: #2D1F14;
}

/* ── MENU ─────────────────────────────────────────── */
.menu {
  padding: 100px 0;
  background: #fff;
}
.menu .section-subtitle { margin-bottom: 3rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.menu-card {
  background: #FDF8F0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(45,31,20,.07);
  transition: transform .35s ease, box-shadow .35s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,31,20,.12); }
.menu-card-img {
  height: 220px;
  overflow: hidden;
}
.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.06); }
.menu-card-body { padding: 2rem; }
.menu-card-body h3 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2D1F14;
  margin-bottom: .5rem;
}
.menu-card-body > p {
  font-size: .92rem;
  color: #6B5B4E;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.menu-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  font-weight: 600;
  color: #4A3728;
}
.menu-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #C0603A;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── GALLERY ──────────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: #FDF8F0;
}
.gallery .section-subtitle { margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 1rem;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(45,31,20,.08);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--large { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item--wide  { grid-column: 6 / 13; }

/* ── VISIT ────────────────────────────────────────── */
.visit {
  padding: 100px 0;
  background: #fff;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-info .section-tag { margin-bottom: .75rem; }
.visit-info .section-title { margin-bottom: .75rem; }
.visit-info > p { color: #6B5B4E; margin-bottom: 2rem; font-size: 1.02rem; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-icon {
  flex-shrink: 0;
  color: #C0603A;
  margin-top: 2px;
}
.visit-detail strong {
  display: block;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #2D1F14;
  margin-bottom: .25rem;
}
.visit-detail p {
  color: #6B5B4E;
  font-size: .95rem;
  line-height: 1.7;
}
.visit-detail a {
  color: #C0603A;
  font-weight: 600;
  transition: color .2s;
}
.visit-detail a:hover { color: #a84e2c; text-decoration: underline; }
.visit-map {
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(45,31,20,.1);
}

/* ── CONTACT ──────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: #2D1F14;
  color: #fff;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text .section-tag { background: rgba(192,96,58,.2); color: #F5D9A0; }
.contact-text .section-title { color: #fff; }
.contact-text .section-subtitle { color: rgba(255,255,255,.65); }
.contact-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: .85rem 1rem;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  transition: border-color .25s, background .25s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C0603A;
  background: rgba(255,255,255,.12);
}
.form-group select option { background: #2D1F14; color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
  background: rgba(76,175,80,.15);
  border: 1px solid rgba(76,175,80,.3);
  border-radius: 12px;
  color: #81C784;
  font-weight: 700;
  font-size: .95rem;
}
.form-success.show { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: #1A120B;
  color: rgba(255,255,255,.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-logo .nav-logo-icon { color: #C0603A; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .9rem;
  transition: color .2s;
}
.footer-links a:hover { color: #C0603A; }
.footer-contact p { font-size: .9rem; line-height: 1.8; }
.footer-contact a { color: #C0603A; font-weight: 600; transition: color .2s; }
.footer-contact a:hover { color: #F5D9A0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ── SCROLL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 450px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-column: 1 / -1; grid-row: auto; height: 300px; }
  .gallery-item--wide  { grid-column: 1 / -1; height: 260px; }
  .gallery-item { height: 220px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(253,248,240,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: .25rem;
    border-bottom: 1px solid rgba(192,96,58,.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all .35s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large,
  .gallery-item--wide { grid-column: 1; }
  .visit-map { height: 320px; }
}

@media (max-width: 480px) {
  .about-images { height: 350px; }
  .about-img-main { width: 80%; }
  .about-img-float { width: 65%; }
  .contact-form { padding: 1.5rem; }
}
