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

:root {
  --burgundy: #6B1D2A;
  --burgundy-deep: #4A1019;
  --burgundy-light: #8B2E3F;
  --blush: #F2D5CC;
  --blush-light: #FDF0EC;
  --blush-dark: #E8BFB5;
  --cream: #FDF8F5;
  --cream-dark: #F5EDE8;
  --charcoal: #2A2222;
  --charcoal-light: #4A3F3F;
  --gold: #C8956C;
  --gold-light: #D4A87C;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', 'Segoe UI', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(107, 29, 42, 0.08);
  --shadow-md: 0 4px 20px rgba(107, 29, 42, 0.1);
  --shadow-lg: 0 8px 40px rgba(107, 29, 42, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ===== Typography ===== */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 24px;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

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

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.nav.scrolled .nav__logo {
  color: var(--burgundy);
}

.nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--white);
}

.nav.scrolled .nav__link {
  color: var(--charcoal-light);
}

.nav.scrolled .nav__link:hover {
  color: var(--burgundy);
}

.nav__link--cta {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  transition: var(--transition);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--burgundy-deep);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav__toggle-line {
  background: var(--charcoal);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 34, 34, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  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(
    to bottom,
    rgba(74, 16, 25, 0.55) 0%,
    rgba(107, 29, 42, 0.45) 50%,
    rgba(42, 34, 34, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: block;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--blush);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(107, 29, 42, 0.3);
}

.btn--primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(107, 29, 42, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ===== Hero scroll indicator ===== */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  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;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.hero__scroll:hover {
  color: var(--white);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== About ===== */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--blush);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__text {
  padding: 20px 0;
}

.about__text p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value__icon {
  width: 24px;
  height: 24px;
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 2px;
}

.value strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.value span {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* ===== Divider ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.divider__line {
  flex: 1;
  height: 1px;
  background: var(--blush-dark);
}

.divider__symbol {
  color: var(--burgundy);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

/* ===== Menu / Carta ===== */
.menu {
  padding: 120px 0;
  background: var(--blush-light);
}

.menu__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.menu__subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card__image {
  height: 220px;
  overflow: hidden;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card__image img {
  transform: scale(1.05);
}

.menu-card__body {
  padding: 28px;
}

.menu-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.menu-card__desc {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.menu__note {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--burgundy);
  padding: 24px;
  border-top: 1px solid var(--blush);
}

/* ===== Gallery ===== */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}

.gallery__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery__item--large img {
  height: 100%;
  min-height: 400px;
}

.gallery__item--wide {
  grid-column: 2 / 4;
}

.gallery__item--wide img {
  height: 220px;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) img {
  height: 200px;
}

/* ===== Reservation ===== */
.reservation {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
  color: var(--white);
}

.reservation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.reservation .section-eyebrow {
  color: var(--gold-light);
}

.reservation .section-title {
  color: var(--white);
}

.reservation__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}

.reservation__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail__icon {
  width: 22px;
  height: 22px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.detail strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.detail span,
.detail a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.detail a:hover {
  color: var(--gold-light);
}

/* ===== Form ===== */
.reservation__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.form__group {
  margin-bottom: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 8px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--blush);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 29, 42, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--blush-dark);
}

.form__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='%236B1D2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__note {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

.form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  margin-top: 8px;
}

.form__success svg {
  width: 48px;
  height: 48px;
  color: var(--burgundy);
}

.form__success p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ===== Location ===== */
.location {
  padding: 120px 0 80px;
  background: var(--cream);
}

.location__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.location__desc {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__links strong,
.footer__contact strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.reveal.visible {
  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: 1024px) {
  .about__grid {
    gap: 48px;
  }

  .reservation__grid {
    gap: 48px;
  }

  .menu__grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__link {
    color: var(--charcoal);
    font-size: 1rem;
  }

  .nav__link:hover {
    color: var(--burgundy);
  }

  .nav__link--cta {
    background: var(--burgundy);
    color: var(--white) !important;
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image img {
    height: 350px;
  }

  .about__image-accent {
    display: none;
  }

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery__item--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery__item--large img,
  .gallery__item--wide img {
    height: 220px;
  }

  .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) img {
    height: 180px;
  }

  .reservation__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reservation__form-wrap {
    padding: 28px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .about,
  .menu,
  .gallery,
  .reservation,
  .location {
    padding: 80px 0;
  }

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

  .gallery__item--large {
    grid-column: 1;
  }

  .gallery__item--wide {
    grid-column: 1;
  }

  .hero__scroll {
    bottom: 24px;
  }
}
