/* ── 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: #1a1a2e;
  background: #fdf8f5;
  line-height: 1.7;
  -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; }
.text-center { text-align: center; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.25; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #1a1a2e;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn--primary {
  background: #7B2D3B;
  color: #fff;
  border-color: #7B2D3B;
}
.btn--primary:hover {
  background: #5e2230;
  border-color: #5e2230;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,45,59,0.3);
}
.btn--outline {
  background: transparent;
  color: #7B2D3B;
  border-color: #7B2D3B;
}
.btn--outline:hover {
  background: #7B2D3B;
  color: #fff;
  transform: translateY(-2px);
}
.btn--nav {
  background: #7B2D3B;
  color: #fff;
  padding: 10px 24px;
  border-radius: 5px;
  font-size: 0.9rem;
}
.btn--nav:hover { background: #5e2230; }
.btn--full { width: 100%; justify-content: center; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,59,0.1);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #1a1a2e;
}
.logo-text { color: #1a1a2e; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn--nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7B2D3B;
  transition: width 0.25s ease;
}
.nav-links a:not(.btn--nav):hover { color: #7B2D3B; }
.nav-links a:not(.btn--nav):hover::after { width: 100%; }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
  padding-top: 76px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fdf8f5 0%, #fceee8 50%, #f9e4dc 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #1a1a2e;
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
}
.hero-detail svg { flex-shrink: 0; color: #7B2D3B; }

/* Hero Images */
.hero-image {
  position: relative;
  height: 640px;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(123,45,59,0.15);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-float {
  position: absolute;
  bottom: -30px;
  left: -40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border: 4px solid #fdf8f5;
}
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #7B2D3B;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* ── Section Spacing ── */
section { padding: 100px 0; }
.section-header { margin-bottom: 64px; }

/* ── About ── */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(123,45,59,0.12);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content .section-title { margin-top: 0; }
.about-content > p {
  color: #555;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fceee8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a2e;
}
.value p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ── Menu ── */
.menu { background: #fdf8f5; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.menu-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(123,45,59,0.12);
}
.menu-card-img {
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body {
  padding: 24px;
}
.menu-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a1a2e;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}
.menu-note {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

/* ── Grocery ── */
.grocery { background: #fff; }
.grocery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grocery-content .section-title { margin-top: 0; }
.grocery-content > p {
  color: #555;
  font-size: 1.02rem;
  margin-bottom: 32px;
}
.grocery-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.grocery-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #333;
}
.grocery-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(123,45,59,0.12);
}
.grocery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Gallery ── */
.gallery { background: #fdf8f5; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Visit ── */
.visit { background: #fff; }
.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.visit-card {
  background: #fdf8f5;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(123,45,59,0.08);
}
.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(123,45,59,0.1);
}
.visit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fceee8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.visit-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a2e;
}
.visit-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}
.visit-card a { color: #7B2D3B; font-weight: 500; }
.visit-card a:hover { text-decoration: underline; }
.visit-note {
  font-size: 0.8rem !important;
  color: #999 !important;
  margin-top: 6px;
  font-style: italic;
}

/* ── Contact ── */
.contact {
  background: linear-gradient(135deg, #7B2D3B 0%, #5e2230 100%);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact .section-eyebrow { color: rgba(245,230,211,0.7); }
.contact .section-title { color: #fff; margin-top: 0; }
.contact-info > p {
  color: rgba(245,230,211,0.85);
  font-size: 1.02rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(245,230,211,0.9);
}
.contact-item svg { flex-shrink: 0; color: #F5E6D3; }
.contact-item a {
  color: #F5E6D3;
  border-bottom: 1px solid rgba(245,230,211,0.3);
  transition: border-color 0.2s;
}
.contact-item a:hover { border-color: #F5E6D3; }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,230,211,0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245,230,211,0.8);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(245,230,211,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,230,211,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #F5E6D3;
  background: rgba(255,255,255,0.15);
}
.form-group select option { background: #7B2D3B; color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(26,107,60,0.2);
  border: 1px solid rgba(26,107,60,0.4);
  border-radius: 8px;
  color: #a8e6b8;
  font-size: 0.9rem;
}
.form-success svg { flex-shrink: 0; color: #a8e6b8; }

/* ── Footer ── */
.footer {
  background: #1a1a2e;
  color: rgba(245,230,211,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}
.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F5E6D3;
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(245,230,211,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #F5E6D3; }
.footer-links li { font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(245,230,211,0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,230,211,0.4);
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-image { height: 480px; }
  .about-grid,
  .grocery-grid,
  .contact-grid { gap: 48px; }
  .visit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(253,248,245,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(123,45,59,0.1);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-details { align-items: center; }
  .hero-image {
    height: 400px;
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-img-float { left: 10px; bottom: -20px; }
  .about-grid,
  .grocery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-image { order: -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  section { padding: 72px 0; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 40px; }
  .hero-image { height: 320px; }
  .hero-img-float { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}
