@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0e0b08;
  color: #f0e8d8;
  font-family: Inter, sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0e0b08;
}

::-webkit-scrollbar-thumb {
  background: rgba(200, 134, 10, 0.4);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 134, 10, 0.7);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(14, 11, 8, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(200, 134, 10, 0.15);
}

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

.nav__logo {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c8860a;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.nav__indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: #c8860a;
  border-radius: 2px;
  pointer-events: none;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.nav__indicator--visible {
  opacity: 1;
}

.nav__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0e8d8;
  transition: color 0.3s ease;
  padding: 4px 0;
  position: relative;
}

.nav__link--active {
  color: #c8860a;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #f0e8d8;
}

.nav__mobile {
  display: none;
  background: rgba(14, 11, 8, 0.98);
  border-top: 1px solid rgba(200, 134, 10, 0.2);
  overflow: hidden;
}

.nav__mobile-list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav__mobile-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0e8d8;
  padding: 0.5rem 0;
  width: 100%;
  text-align: left;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav__mobile-link--active {
  color: #c8860a;
  transform: translateX(6px);
}

.nav--open .nav__mobile {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0e0b08;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 11, 8, 0.3) 0%, rgba(14, 11, 8, 0.1) 40%, rgba(14, 11, 8, 0.8) 100%);
}

.hero__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c8860a, transparent);
  transform-origin: left;
  animation: heroAccent 1.2s ease-in-out 0.3s forwards;
  transform: scaleX(0);
}

@keyframes heroAccent {
  to { transform: scaleX(1); }
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero__subtitle {
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c8860a;
  margin: 0 0 1.5rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #f0e8d8;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.hero__title em {
  color: #c8860a;
  font-style: italic;
}

.hero__description {
  font-family: Inter, sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240, 232, 216, 0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.btn {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}

.btn--primary {
  background: #c8860a;
  color: #0e0b08;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 134, 10, 0.4);
}

.btn--outline {
  background: transparent;
  color: #f0e8d8;
  border: 1px solid rgba(240, 232, 216, 0.4);
}

.btn--outline:hover {
  border-color: #c8860a;
  color: #c8860a;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(240, 232, 216, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero__scroll-icon {
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Section common */
.section-label {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8860a;
  margin: 0 0 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f0e8d8;
  line-height: 1.2;
  margin: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header--large {
  margin-bottom: 4rem;
}

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

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

/* Fade in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* About */
.about {
  background: #0e0b08;
  padding: 6rem 0;
}

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

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(200, 134, 10, 0.25);
  pointer-events: none;
}

.about__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) sepia(0.2);
}

.about__image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(14, 11, 8, 0.6), transparent);
}

.about__title em {
  font-style: italic;
  color: #c8860a;
}

.about__text {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  color: rgba(240, 232, 216, 0.7);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
}

.feature-card {
  background: #1a1410;
  border: 1px solid rgba(200, 134, 10, 0.15);
  padding: 2rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(200, 134, 10, 0.5);
  transform: translateY(-4px);
}

.feature-card__icon {
  color: #c8860a;
  margin-bottom: 1rem;
}

.feature-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 0 0 0.5rem;
}

.feature-card__desc {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  color: rgba(240, 232, 216, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* Price list */
.price-list {
  background: #110f0c;
  padding: 6rem 0;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.menu-tab {
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(200, 134, 10, 0.25);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: #f0e8d8;
}

.menu-tab--active {
  border-color: #c8860a;
  background: #c8860a;
  color: #0e0b08;
}

.menu-panel {
  display: flex;
  flex-direction: column;
}

.menu-panel[hidden] {
  display: none !important;
}

.menu-panel--active {
  display: flex;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(200, 134, 10, 0.12);
  gap: 1rem;
}

.menu-item__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 0 0 0.2rem;
}

.menu-item__desc {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: rgba(240, 232, 216, 0.55);
  margin: 0;
}

.menu-item__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #c8860a;
  white-space: nowrap;
}

.price-list__note {
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  color: rgba(240, 232, 216, 0.4);
  text-align: center;
  margin: 2rem 0 0;
}

/* Gallery */
.gallery {
  background: #0e0b08;
  padding: 6rem 0;
}

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

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) sepia(0.15);
  transition: filter 0.3s, transform 0.5s;
}

.gallery-item:hover .gallery-item__img {
  filter: brightness(1) sepia(0);
  transform: scale(1.06);
}

.gallery-item__caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  color: rgba(240, 232, 216, 0.8);
  letter-spacing: 0.05em;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox--open {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #f0e8d8;
  cursor: pointer;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

/* Contact */
.contact {
  background: #110f0c;
  padding: 6rem 0 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.contact-block__icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 134, 10, 0.12);
  border: 1px solid rgba(200, 134, 10, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c8860a;
}

.contact-block__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 0 0 0.4rem;
}

.contact-block__text {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  color: rgba(240, 232, 216, 0.65);
  line-height: 1.6;
  margin: 0;
}

.contact-block__link {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  color: rgba(240, 232, 216, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-block__link:hover {
  color: #c8860a;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.hours-row__day {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  color: rgba(240, 232, 216, 0.55);
}

.hours-row__time {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  color: #f0e8d8;
  font-weight: 500;
}

.contact__actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.btn--social {
  color: #f0e8d8;
  border: 1px solid rgba(200, 134, 10, 0.3);
  background: transparent;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.btn--social:hover {
  border-color: #c8860a;
  color: #c8860a;
}

.btn--cta {
  background: #c8860a;
  color: #0e0b08;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.btn--cta:hover {
  opacity: 0.85;
}

.contact__map-wrap {
  position: relative;
  height: 100%;
  min-height: 360px;
}

.contact__map-link {
  display: block;
  height: 100%;
  min-height: 360px;
  text-decoration: none;
  position: relative;
}

.contact__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) sepia(0.3);
  min-height: 360px;
}

.contact__map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 11, 8, 0.2);
  transition: background 0.3s;
}

.contact__map-link:hover .contact__map-overlay {
  background: rgba(14, 11, 8, 0.35);
}

.contact__map-cta {
  text-align: center;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(200, 134, 10, 0.5);
  background: rgba(14, 11, 8, 0.6);
}

.contact__map-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f0e8d8;
  margin: 0.5rem 0 0;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(200, 134, 10, 0.15);
  margin-top: 2rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #c8860a;
}

.footer__nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__nav a {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: rgba(240, 232, 216, 0.45);
  text-decoration: none;
}

.footer__nav a:hover {
  color: rgba(240, 232, 216, 0.65);
}

.footer__copy {
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  color: rgba(240, 232, 216, 0.4);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 540px) {
  .about__features {
    grid-template-columns: 1fr;
  }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: #c8860a;
  color: #0e0b08;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 0.5rem 0.5rem;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-block__text {
  font-style: normal;
}
