*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --burgundy: #6B1D2A;
  --burgundy-deep: #4A0E1A;
  --burgundy-light: #8B2E3F;
  --blush: #F2D4CE;
  --blush-light: #F9EDED;
  --blush-pale: #FDF5F3;
  --cream: #FAF7F5;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray-dark: #2D2D2D;
  --gray-mid: #6B6B6B;
  --gray-light: #A8A8A8;
  --gray-pale: #E8E4E1;
  --font-sans: 'Instrument Sans', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 247, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-pale);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.4s;
}

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

.nav__logo-icon {
  font-size: 1.3rem;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blush);
  transition: width 0.4s var(--ease-out);
}

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

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

.nav.scrolled .nav__link {
  color: var(--gray-mid);
}

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

.nav.scrolled .nav__link::after {
  background: var(--burgundy);
}

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

.nav__toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

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

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--burgundy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 14, 26, 0.88) 0%, rgba(107, 29, 42, 0.7) 50%, rgba(107, 29, 42, 0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__left {
  max-width: 640px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 560px;
}

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

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease-out);
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border: 1px solid var(--burgundy);
}

.btn--primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
}

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

.btn--ghost:hover {
  border-color: var(--blush);
  color: var(--blush);
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__card {
  overflow: hidden;
  position: relative;
}

.hero__card-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.hero__info {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__info-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
}

.hero__info-value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-style: italic;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 5%;
  background: var(--cream);
}

.about__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about__text {
  max-width: 560px;
}

.about__p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray-mid);
  margin-bottom: 1.25rem;
}

.about__highlights {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-pale);
}

.highlight__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight__label {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

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

/* ─── MENU ─── */
.menu {
  padding: 120px 5%;
  background: var(--white);
}

.menu__container {
  max-width: 1400px;
  margin: 0 auto;
}

.menu__eyebrow {
  text-align: center;
}

.menu__title {
  text-align: center;
  margin-bottom: 4rem;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu__card {
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.menu__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(107, 29, 42, 0.1);
}

.menu__card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.menu__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.menu__card:hover .menu__card-img-wrap img {
  transform: scale(1.06);
}

.menu__card-body {
  padding: 1.75rem;
}

.menu__card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush-light);
  padding: 4px 10px;
  margin-bottom: 0.75rem;
}

.menu__card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.menu__card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-mid);
}

.menu__cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-pale);
  font-size: 0.9rem;
  color: var(--gray-mid);
}

/* ─── GALLERY ─── */
.gallery {
  padding: 120px 5%;
  background: var(--cream);
}

.gallery__container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery__eyebrow {
  text-align: center;
}

.gallery__title {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery__item {
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

/* ─── VISIT ─── */
.visit {
  padding: 120px 5%;
  background: var(--burgundy-deep);
}

.visit__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.visit__left {
  max-width: 520px;
}

.visit__title {
  color: var(--white);
  margin-bottom: 3rem;
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.visit__detail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.visit__icon {
  color: var(--blush);
  flex-shrink: 0;
  margin-top: 3px;
}

.visit__detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 4px;
}

.visit__detail-value {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
}

.visit__detail-value a {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s;
}

.visit__detail-value a:hover {
  border-color: var(--blush);
}

.visit__right {
  overflow: hidden;
}

.visit__map {
  width: 100%;
  aspect-ratio: 4/3;
  filter: saturate(0.6) contrast(1.1);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  padding: 60px 5% 40px;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  font-size: 1.5rem;
}

.footer__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--blush);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--gray-light);
  letter-spacing: 0.02em;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

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

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__right {
    flex-direction: row;
    align-items: stretch;
  }

  .hero__card {
    flex: 1;
  }

  .hero__card-img {
    height: 300px;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__image {
    order: -1;
    max-width: 500px;
  }

  .about__image img {
    height: 400px;
  }

  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--burgundy-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .nav__link::after {
    background: var(--blush) !important;
  }

  .nav__toggle {
    display: flex;
    z-index: 101;
  }

  .hero__content {
    padding: 100px 5% 100px;
  }

  .hero__right {
    flex-direction: column;
  }

  .hero__card-img {
    height: 280px;
  }

  .hero__scroll {
    display: none;
  }

  .about__highlights {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .menu__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}
