/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2A1F1F;
  background-color: #FDF8F4;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Typography ── */
.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-sans {
  font-family: 'Inter', system-ui, sans-serif;
}

.section-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C4A882;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: #7B2D3B;
}

.body-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #5C4040;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: #7B2D3B;
  color: #FDF8F4;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid #7B2D3B;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background-color: transparent;
  color: #7B2D3B;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: transparent;
  color: #7B2D3B;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid #7B2D3B;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background-color: #7B2D3B;
  color: #FDF8F4;
}

/* ── Navigation ── */
.nav {
  background-color: rgba(253, 248, 244, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(123, 45, 59, 0.08);
}

.nav-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #5C4040;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #7B2D3B;
  transition: width 0.3s;
}

.nav-link:hover {
  color: #7B2D3B;
}

.nav-link:hover::after {
  width: 100%;
}

/* ── Mobile Menu ── */
.mobile-menu {
  background-color: #FDF8F4;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #7B2D3B;
  transition: opacity 0.3s;
}

.mobile-menu-link:hover {
  opacity: 0.6;
}

/* ── Hero ── */
.hero {
  background-color: #FDF8F4;
  position: relative;
}

.hero-bg-pattern {
  background-image: radial-gradient(circle at 20% 80%, rgba(123, 45, 59, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(196, 168, 130, 0.2) 0%, transparent 50%);
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

.hero-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5C4040;
}

.hero-img {
  box-shadow: 0 25px 60px rgba(123, 45, 59, 0.15);
}

.hero-img--primary {
  margin-top: 0;
}

.hero-img--accent {
  margin-top: -40px;
  box-shadow: 0 15px 40px rgba(123, 45, 59, 0.1);
}

.scroll-indicator {
  opacity: 0.6;
}

/* ── About ── */
.about-img-wrap {
  position: relative;
}

.about-badge {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ── Menu ── */
.menu-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover {
  transform: translateY(-6px);
}

.menu-card-img {
  box-shadow: 0 8px 30px rgba(123, 45, 59, 0.1);
}

/* ── Gallery ── */
.gallery-img {
  overflow: hidden;
  cursor: pointer;
}

.gallery-img img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Visit ── */
.visit-icon {
  flex-shrink: 0;
}

/* ── Contact Form ── */
.contact-form {
  border: 1px solid rgba(123, 45, 59, 0.08);
}

.contact-input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  color: #2A1F1F;
  background-color: #FDF8F4;
  border: 1.5px solid rgba(123, 45, 59, 0.15);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-input::placeholder {
  color: #b09080;
}

.contact-input:focus {
  border-color: #7B2D3B;
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237B2D3B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-success {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-img--accent {
    margin-top: 0;
    width: 100%;
  }

  .hero-img--primary {
    order: -1;
  }

  .about-badge {
    width: 24px;
    height: 24px;
    font-size: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") center / contain no-repeat;
  }

  .nav-logo span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
