:root {
  --primary: #f7c600;
  --secondary: #e53935;
  --dark: #1b1b1f;
  --dark-soft: #2a2a32;
  --light: #ffffff;
  --muted: #e9e6e1;
  --text: #3b3b3f;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #fffaf3;
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--dark);
  color: var(--light);
  font-size: 0.85rem;
}

.top-bar__content {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.top-bar__label {
  color: var(--primary);
  margin-right: 0.35rem;
  font-weight: 600;
}

.top-bar__item a {
  color: var(--light);
}

.site-header {
  position: relative;
  overflow: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  z-index: 20;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.navbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--dark);
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--secondary);
  color: var(--light);
  border-radius: 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.logo__text {
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--dark);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s ease;
}

.hero {
  background: linear-gradient(120deg, rgba(16, 16, 18, 0.65), rgba(16, 16, 18, 0.2)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--light);
  padding: 5.5rem 0 6rem;
}

.hero__content {
  display: grid;
  gap: 3rem;
}

.hero__text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0.8rem 0 1.4rem;
}

.subtitle {
  font-size: 1.05rem;
  color: #f5f3ef;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.hero__stats h3 {
  font-size: 1.4rem;
  color: var(--primary);
}

.hero__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero__card ul {
  margin: 1rem 0 1.5rem 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(247, 198, 0, 0.35);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--light);
  box-shadow: 0 12px 30px rgba(229, 57, 53, 0.35);
}

.btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--light);
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 5rem 0;
}

.section__heading {
  margin-bottom: 2.5rem;
}

.section__heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-top: 0.6rem;
}

.about__content {
  display: grid;
  gap: 2.5rem;
}

.about__image {
  min-height: 320px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__highlights {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.about__highlights h3 {
  color: var(--secondary);
}

.services {
  background: var(--light);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.services__grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #fffdf6;
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.menu {
  background: #fff7ed;
}

.menu__grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.menu-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
}

.menu-card__image {
  height: 190px;
  overflow: hidden;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card__content {
  padding: 1.5rem;
}

.why {
  background: var(--dark);
  color: var(--light);
}

.why__grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.why__item {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.6rem;
  border-radius: 18px;
}

.cta {
  background: linear-gradient(120deg, #f7c600, #e53935);
  color: var(--light);
  padding: 4rem 0;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.gallery {
  background: var(--light);
}

.gallery__grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery__item {
  border: none;
  border-radius: 18px;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover::after {
  opacity: 1;
}

.contact {
  background: #fff8f0;
}

.contact__content {
  display: grid;
  gap: 2.5rem;
}

.contact__form form {
  display: grid;
  gap: 1.5rem;
}

.form__grid {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact__info {
  display: grid;
  gap: 1.5rem;
}

.contact__card {
  background: var(--light);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact__hours {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.map iframe {
  width: 100%;
  min-height: 280px;
  border: none;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.footer {
  background: var(--dark);
  color: var(--light);
  padding: 3rem 0 1.5rem;
}

.footer__content {
  display: grid;
  gap: 2rem;
}

.footer__content a {
  color: var(--light);
  display: block;
  margin-top: 0.4rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 50;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  background: transparent;
  border: none;
  color: var(--light);
  cursor: pointer;
}

@media (min-width: 900px) {
  .hero__content {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .about__content {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }

  .contact__content {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .cta__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer__content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 76px;
    right: 0;
    flex-direction: column;
    background: var(--light);
    width: min(320px, 80%);
    height: calc(100vh - 76px);
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .top-bar__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }
}
