/* ─── 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;
  color: #3D2B2B;
  background: #FFFAF8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2B;
  --blush: #F5E6E0;
  --blush-light: #FFF5F2;
  --cream: #FFFAF8;
  --warm-gray: #6B5555;
  --text: #3D2B2B;
  --text-light: #8A7070;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(123, 45, 59, 0.08);
  --shadow-lg: 0 12px 48px rgba(123, 45, 59, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
}
.btn--primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123, 45, 59, 0.4);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--burgundy);
}

.btn--outline {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn--outline:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
  padding: 0.7rem 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav__logo { color: var(--burgundy); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: var(--transition);
}
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--text); }
.nav.scrolled .nav__links a::after { background: var(--burgundy); }

.nav__cta {
  background: var(--white) !important;
  color: var(--burgundy) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  background: var(--blush) !important;
  transform: translateY(-1px);
}
.nav.scrolled .nav__cta {
  background: var(--burgundy) !important;
  color: var(--white) !important;
}
.nav.scrolled .nav__cta:hover {
  background: var(--burgundy-deep) !important;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__bar { background: var(--burgundy); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 31, 43, 0.72) 0%,
    rgba(123, 45, 59, 0.55) 50%,
    rgba(245, 230, 224, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 2rem;
  animation: heroFade 1s ease forwards;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__accent {
  font-style: italic;
  color: var(--blush);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hero__trust span:first-child {
  color: #F5C518;
  font-size: 1rem;
  letter-spacing: 2px;
}
.hero__trust-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── FEATURES ─── */
.features {
  padding: 6rem 0;
  background: var(--cream);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(123, 45, 59, 0.06);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-light);
}
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── ABOUT ─── */
.about {
  padding: 7rem 0;
  background: var(--blush-light);
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__images {
  position: relative;
}
.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about__img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.about__img-secondary img {
  width: 220px;
  height: 280px;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  top: -1rem;
  right: 2rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.about__text { max-width: 480px; }
.about__text p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}
.about__text .btn { margin-top: 0.5rem; }

/* ─── MENU ─── */
.menu {
  padding: 7rem 0;
  background: var(--cream);
}
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.menu__tab {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  background: transparent;
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.menu__tab:hover { color: var(--burgundy); border-color: var(--blush); }
.menu__tab.active {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(123, 45, 59, 0.06);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-card__img {
  height: 200px;
  overflow: hidden;
}
.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card__img img { transform: scale(1.05); }
.menu-card__body {
  padding: 1.25rem;
}
.menu-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.menu-card__body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.menu__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 7rem 0;
  background: var(--blush-light);
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item--wide { grid-column: 1 / -1; }
.gallery__item--wide img { height: 350px; }
.gallery__item:not(.gallery__item--wide) img { height: 280px; }

/* ─── VISIT ─── */
.visit {
  padding: 7rem 0;
  background: var(--cream);
}
.visit__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit__detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.visit__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit__detail strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.visit__detail p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.visit__detail a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.visit__detail a:hover { color: var(--burgundy-deep); }

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
}
.visit__map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 400px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 100%);
  text-align: center;
  padding: 2rem;
}
.visit__map-placeholder p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--burgundy);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 280px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}
.footer__contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about__layout,
  .visit__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__img-secondary { right: 1rem; bottom: -1.5rem; }
  .about__img-secondary img { width: 180px; height: 220px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav__links.open { right: 0; }
  .nav__links a {
    color: var(--text) !important;
    font-size: 1.1rem;
  }
  .nav__links a::after { background: var(--burgundy) !important; }
  .nav__cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
  }

  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__actions { flex-direction: column; align-items: center; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: 1; }
  .gallery__item--wide img,
  .gallery__item:not(.gallery__item--wide) img { height: 240px; }

  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .features, .about, .menu, .gallery, .visit { padding: 4rem 0; }
  .about__img-main img { height: 320px; }
  .about__badge { right: 0.5rem; top: -0.5rem; }
}
