*, *::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: 300;
  line-height: 1.7;
  color: #36454F;
  background: #FAFAF8;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(54, 69, 79, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #FAFAF8;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-logo {
  color: #36454F;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.8);
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #F27059;
}

.nav.scrolled .nav-menu a {
  color: #5C6B73;
}

.nav.scrolled .nav-menu a:hover {
  color: #F27059;
}

.nav-cta {
  color: #F27059 !important;
  border: 1px solid rgba(242, 112, 89, 0.4);
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.nav-cta:hover {
  background: #F27059;
  color: #FAFAF8 !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #FAFAF8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.scrolled .nav-toggle-line {
  background: #36454F;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: 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(54, 69, 79, 0.55) 0%,
    rgba(54, 69, 79, 0.70) 50%,
    rgba(54, 69, 79, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.7);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #FAFAF8;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250, 250, 248, 0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn--large {
  padding: 16px 40px;
  font-size: 0.875rem;
}

.btn-primary {
  background: #F27059;
  color: #FAFAF8;
  border-color: #F27059;
}

.btn-primary:hover {
  background: #E85A44;
  border-color: #E85A44;
}

.btn-ghost {
  background: transparent;
  color: #FAFAF8;
  border-color: rgba(250, 250, 248, 0.35);
}

.btn-ghost:hover {
  border-color: #FAFAF8;
  background: rgba(250, 250, 248, 0.08);
}

/* ── Sections ── */
.section {
  padding: 120px 0;
}

.section--light {
  background: #FAFAF8;
}

.section--dark {
  background: #36454F;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F27059;
  margin-bottom: 16px;
}

.section-label--light {
  color: rgba(250, 250, 248, 0.5);
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: #36454F;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-title--light {
  color: #FAFAF8;
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: #5C6B73;
  margin-bottom: 64px;
  max-width: 480px;
}

.section--dark .section-sub {
  color: rgba(250, 250, 248, 0.55);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  font-size: 1rem;
  color: #5C6B73;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

/* ── Menu Cards ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.menu-card {
  background: rgba(250, 250, 248, 0.04);
  border: 1px solid rgba(250, 250, 248, 0.08);
  padding: 48px 40px;
  border-radius: 2px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.menu-card:hover {
  background: rgba(250, 250, 248, 0.07);
  border-color: rgba(242, 112, 89, 0.3);
}

.menu-card-icon {
  width: 40px;
  height: 40px;
  color: #F27059;
  margin-bottom: 24px;
}

.menu-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #FAFAF8;
  margin-bottom: 12px;
}

.menu-card p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.55);
  line-height: 1.7;
}

/* ── Visit ── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-block {
  margin-bottom: 40px;
}

.visit-block:last-child {
  margin-bottom: 0;
}

.visit-block h4 {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F27059;
  margin-bottom: 10px;
}

.visit-block p {
  font-size: 1rem;
  font-weight: 300;
  color: #5C6B73;
  line-height: 1.7;
}

.visit-block a {
  color: #36454F;
  border-bottom: 1px solid rgba(54, 69, 79, 0.2);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.visit-block a:hover {
  color: #F27059;
  border-color: #F27059;
}

.map-placeholder {
  background: #F5F4F0;
  border-radius: 2px;
  padding: 64px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.map-placeholder svg {
  color: #F27059;
  opacity: 0.6;
}

.map-placeholder p {
  font-size: 0.9375rem;
  color: #5C6B73;
  font-weight: 300;
}

/* ── Contact Form ── */
.contact-form {
  max-width: 560px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(250, 250, 248, 0.06);
  border: 1px solid rgba(250, 250, 248, 0.12);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #FAFAF8;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 250, 248, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(242, 112, 89, 0.5);
  background: rgba(250, 250, 248, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.9375rem;
  color: rgba(250, 250, 248, 0.7);
}

.form-success svg {
  color: #F27059;
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: #2E3C44;
  padding: 48px 0;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #FAFAF8;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-copy,
.footer-address {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.35);
  line-height: 1.7;
}

/* ── Scroll Reveal ── */
.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-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 280px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    color: #36454F !important;
    font-size: 0.9375rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .menu-card {
    padding: 36px 28px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    /* JS adds .visible */
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
