/* ── Root variables ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim: #8a6e2f;
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #242424;
  --white: #f5f0e8;
}

/* ── Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

p {
  color: #ccc;
  line-height: 1.8;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--gold-light);
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 2rem;
}

.btn-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .65rem 2rem;
  border-radius: 0;
  transition: background .25s, color .25s;
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold);
  color: var(--black);
}

.btn-gold-filled {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: 'Raleway', sans-serif;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .65rem 2rem;
  border-radius: 0;
  font-weight: 600;
  transition: background .25s, color .25s;
}

.btn-gold-filled:hover {
  background: transparent;
  color: var(--gold);
}

/* ── Navbar ── */
#mainNav {
  background: rgba(10, 10, 10, .97);
  border-bottom: 1px solid rgba(201, 168, 76, .15);
  padding: 1rem 0;
  transition: padding .3s;
}

#mainNav.scrolled {
  padding: .5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold) !important;
  letter-spacing: .04em;
  line-height: 1.2;
}

.navbar-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-brand .brand-sub {
  color: var(--white);
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #bbb !important;
  margin: 0 .25rem;
  transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.navbar-toggler {
  border-color: var(--gold-dim);
  color: var(--gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a84c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero Carousel ── */
#heroCarousel {
  height: 100vh;
  min-height: 560px;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.slide-bg {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, .55) 0%,
      rgba(10, 10, 10, .7) 60%,
      rgba(10, 10, 10, .9) 100%);
}

.slide-bg-1 {
  background-image: url('../images/slide-img-1.jpg');
}

.slide-bg-2 {
  background-image: url('../images/slide-img-2.jpg');
}

.slide-bg-3 {
  background-image: url('../images/slide-img-3.jpg');
}

.hero-caption {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.hero-caption .tag {
  font-size: .72rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}

.hero-caption h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .6);
  margin-bottom: 1.25rem;
}

.hero-caption h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-caption p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-weight: 300;
  letter-spacing: .04em;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 1;
}

.carousel-control-icon-custom {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: background .2s;
}

.carousel-control-icon-custom:hover {
  background: var(--gold);
  color: var(--black);
}

.carousel-indicators [data-bs-target] {
  width: 28px;
  height: 2px;
  background: var(--gold-dim);
  opacity: 1;
  border: none;
}

.carousel-indicators .active {
  background: var(--gold);
}

/* ── Section shared ── */
section {
  padding: 100px 0;
}

/* ── About ── */
#about {
  background: var(--black-2);
}

.about-img-wrap {
  position: relative;
  display: inline-block;
}

.about-img-wrap img {
  width: 100%;
  filter: grayscale(15%) brightness(.9);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80%;
  height: 80%;
  border: 1px solid var(--gold-dim);
  z-index: 0;
}

.about-img-wrap img {
  position: relative;
  z-index: 1;
}

.about-stat {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.about-stat p {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  margin: 0;
}

/* ── Menu ── */
#menu {
  background: var(--black-3);
}

.menu-tabs .nav-link {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #777 !important;
  border: 1px solid transparent;
  border-radius: 0;
  padding: .5rem 1.5rem;
  margin: .2rem;
  transition: all .2s;
}

.menu-tabs .nav-link:hover {
  color: var(--gold) !important;
}

.menu-tabs .nav-link.active {
  background: transparent !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ── Menu list (PDF two-column style) ── */
.menu-category {
  margin-bottom: 2.5rem;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--gold);
  text-transform: uppercase;
  padding-bottom: .65rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 168, 76, .25);
}

.menu-col-sep {
  border-right: 1px solid rgba(201, 168, 76, .1);
}

.menu-item {
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--white);
  font-weight: 600;
  flex: 1;
}

.menu-item-price {
  font-family: 'Raleway', sans-serif;
  color: var(--gold);
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: .78rem;
  color: #777;
  margin: .2rem 0 0;
  line-height: 1.5;
}

.menu-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .2), transparent);
  margin: 2.5rem 0;
}

@media (max-width: 767px) {
  .menu-col-sep {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, .1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}

/* ── Specials banner ── */
#specials {
  background: linear-gradient(135deg, #0d0a00 0%, #1a1200 50%, #0d0a00 100%);
  border-top: 1px solid rgba(201, 168, 76, .2);
  border-bottom: 1px solid rgba(201, 168, 76, .2);
  padding: 80px 0;
}

.specials-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(.85);
}

/* ── Testimonials ── */
#testimonials {
  background: var(--black-2);
}

.testimonials-carousel .carousel-item {
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--black-4);
  border: 1px solid rgba(201, 168, 76, .12);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold-dim);
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  opacity: .4;
}

.testimonial-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  margin: 0 auto .75rem;
  display: block;
}

.testimonial-name {
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-role {
  font-size: .72rem;
  color: #666;
}

#testimonials .carousel-control-prev,
#testimonials .carousel-control-next {
  color: var(--gold);
}

#testimonials .carousel-indicators [data-bs-target] {
  background: var(--gold-dim);
}

#testimonials .carousel-indicators .active {
  background: var(--gold);
}

/* ── Gallery strip ── */
#gallery {
  background: var(--black);
  padding: 0;
}

.gallery-strip {
  display: flex;
  overflow: hidden;
}

.gallery-item {
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .5s;
  filter: brightness(.65) saturate(.8);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(.9) saturate(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: var(--gold);
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ── Footer ── */
footer {
  background: #050505;
  border-top: 1px solid rgba(201, 168, 76, .15);
  padding: 70px 0 30px;
}

footer h5 {
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

footer p,
footer li {
  font-size: .85rem;
  color: #666;
  line-height: 2;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li a {
  color: #666;
  font-size: .85rem;
  transition: color .2s;
}

footer ul li a:hover {
  color: var(--gold);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
}

.footer-divider {
  border-color: rgba(201, 168, 76, .1);
  margin: 2.5rem 0 1.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, .3);
  display: inline-grid;
  place-items: center;
  color: #777;
  font-size: .9rem;
  transition: all .2s;
  margin-right: .4rem;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, .08);
}

/* ── Scroll-reveal fade ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive tweaks ── */
@media (max-width: 767px) {
  section {
    padding: 70px 0;
  }

  .gallery-strip {
    flex-wrap: wrap;
  }

  .gallery-item {
    flex: 0 0 50%;
  }
}