/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #3a2228;
  background: #FFF8F7;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }
em { font-style: italic; }

/* ── Section Eyebrow ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 12px;
}

/* ── Section Title ── */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #3a2228;
  margin-bottom: 20px;
}
.section-title em { color: #7B2D3B; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #7B2D3B;
  color: #fff;
}
.btn-primary:hover {
  background: #5e2130;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(255, 248, 247, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(123, 45, 59, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: #7B2D3B; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #7B2D3B;
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: #3a2228; }
.nav.scrolled .nav-links a:hover { color: #7B2D3B; }
.nav.scrolled .nav-links a::after { background: #7B2D3B; }
.nav-cta {
  background: #7B2D3B !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #5e2130 !important; transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: #7B2D3B; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span: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-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 45, 59, 0.72) 0%,
    rgba(90, 30, 45, 0.55) 40%,
    rgba(255, 183, 178, 0.3) 100%
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-headline em {
  color: #FFB7B2;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.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: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: #FFF8F7;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.12);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.15);
  border: 4px solid #FFF8F7;
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }
.about-text p {
  color: #6b4c52;
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature svg { flex-shrink: 0; margin-top: 2px; }
.feature strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #3a2228;
  margin-bottom: 2px;
}
.feature span {
  font-size: 0.9rem;
  color: #8a6068;
}

/* ── MENU ── */
.menu {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFF0EE 0%, #FFF8F7 100%);
}
.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.menu-header p { color: #6b4c52; font-size: 1.05rem; }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #8a6068;
  background: rgba(123, 45, 59, 0.06);
  transition: all 0.3s;
}
.tab-btn:hover { background: rgba(123, 45, 59, 0.12); color: #7B2D3B; }
.tab-btn.active {
  background: #7B2D3B;
  color: #fff;
}
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  border: 1px solid rgba(123, 45, 59, 0.06);
}
.menu-item:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(123, 45, 59, 0.08);
  transform: translateY(-2px);
}
.menu-item-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #3a2228;
  margin-bottom: 4px;
}
.menu-item-text p {
  font-size: 0.88rem;
  color: #8a6068;
  line-height: 1.5;
}

/* ── GALLERY ── */
.gallery {
  padding: 120px 0;
  background: #FFF8F7;
}
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.large img { height: 360px; }
.gallery-item:not(.large):not(.tall) img { height: 240px; }
.gallery-item.tall img { height: 500px; }

/* ── VISIT ── */
.visit {
  padding: 120px 0;
  background: linear-gradient(135deg, #FFF0EE 0%, #FFF8F7 100%);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.visit-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail svg { flex-shrink: 0; margin-top: 2px; }
.visit-detail strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #3a2228;
  margin-bottom: 4px;
}
.visit-detail p {
  color: #6b4c52;
  font-size: 0.95rem;
  line-height: 1.6;
}
.visit-detail a {
  color: #7B2D3B;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.visit-detail a:hover { color: #5e2130; }
.visit-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.1);
  min-height: 400px;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: #FFF8F7;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text p {
  color: #6b4c52;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 16px;
}
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #3a2228;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(123, 45, 59, 0.15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #3a2228;
  background: #FFF8F7;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D3B;
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  background: rgba(123, 45, 59, 0.06);
  border-radius: 12px;
  color: #7B2D3B;
  font-weight: 500;
  font-size: 0.95rem;
}
.form-success.show { display: block; animation: fadeUp 0.4s ease; }

/* ── FOOTER ── */
.footer {
  background: #3a2228;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-links, .footer-hours, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong, .footer-hours strong, .footer-contact strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: #FFB7B2; }
.footer-contact a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-contact a:hover { color: #FFB7B2; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .contact-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 248, 247, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: #3a2228 !important; font-size: 1.1rem; }
  .nav-links a::after { background: #7B2D3B !important; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-float { right: -10px; bottom: -20px; width: 160px; }
  .about-img-main img { height: 360px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.large img,
  .gallery-item:not(.large):not(.tall) img,
  .gallery-item.tall img { height: 200px; }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.2rem); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .gallery-item.large img { height: 240px; }
  .menu-tabs { flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: center; }
}
