:root {
  --ink: #14021d;
  --plum: #23062d;
  --plum-soft: #381044;
  --gold: #c89632;
  --gold-light: #f0c66e;
  --cream: #fff5e5;
  --paper: #fffaf0;
  --charcoal: #17100f;
}

* {
  box-sizing: border-box;
}

a {
 color: var(--gold);
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #24150f;
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
}

a {
  text-decoration: none;
}

.text-muted {
  color: #cacaca !important
}

.site-nav {
  min-height: 78px;
  background: rgba(15, 0, 22, 0.96);
  border-bottom: 1px solid rgba(200, 150, 50, 0.35);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-nav.scrolled {
  background: rgba(15, 0, 22, 0.99);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.navbar-toggler {
  border-color: rgba(240, 198, 110, 0.55);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(240, 198, 110, 0.2);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  min-width: 245px;
}

.nav-logo-link {
  min-width: 0;
  padding: 0;
}

.nav-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(245px, 58vw);
  object-fit: contain;
}

.brand-mark strong {
  display: block;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: clamp(1.15rem, 2vw, 1.62rem);
  font-weight: 500;
  line-height: 1.05;
}

.brand-mark small {
  display: block;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: clamp(0.86rem, 1.4vw, 1.1rem);
  line-height: 1.15;
  text-align: center;
}

.brand-accent {
  width: 34px;
  height: 17px;
  display: inline-block;
  border-radius: 60% 20% 60% 20%;
  background: linear-gradient(135deg, #7bbb45, #d5b35b 70%);
  transform: rotate(-12deg);
  box-shadow: 9px -5px 0 -6px var(--gold-light);
  flex: 0 0 auto;
}

.brand-accent-right {
  transform: scaleX(-1) rotate(-12deg);
}

.site-nav .nav-link {
  color: #fff8e8;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 11px;
  text-transform: uppercase;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--gold-light);
}

@media (min-width: 992px) {
  .site-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
  .site-nav .nav-item.dropdown .dropdown-menu {
    margin-top: 0;
  }
}

.site-nav .nav-order {
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--gold-light);
  padding: 10px 20px;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff8ee;
  background: #0c0610;
  padding-top: 78px;
}

.hero-slider,
.hero-panel {
  position: absolute;
  inset: 0;
}

.hero-panel {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 1s ease;
  background-image: linear-gradient(90deg, rgba(10, 1, 13, 0.9) 0%, rgba(10, 1, 13, 0.66) 34%, rgba(10, 1, 13, 0.12) 70%), var(--slide-image);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-panel.active {
  opacity: 1;
  transform: scale(1);
}

.panel-one {
  --slide-image: url("slides/slide-1.jpg");
  background-position: center top;
}

.panel-two {
  --slide-image: url("slides/slide-2.jpg");
  background-position: center 37%;
}

.panel-three {
  --slide-image: url("slides/slide-3.jpg");
  background-position: center 71%;
}

.panel-four {
  --slide-image: url("slides/slide-4.jpg");
  background-position: center center;
}

.panel-five {
  --slide-image: url("slides/slide-5.jpg");
  background-position: center center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 52px;
}

.kicker {
  margin-bottom: 14px;
  color: #fff4dc;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 600;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7.5vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy {
  width: min(360px, 100%);
  margin: 24px 0;
  color: #fff6e8;
  font-size: 1rem;
  line-height: 1.65;
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 0;
  padding: 13px 21px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn i {
  position: relative;
  z-index: 1;
  margin-left: 9px;
}

.gold-btn {
  background: linear-gradient(135deg, var(--gold), #dfb24e);
  color: #000;
  font-size: 0.9rem;
}

.gold-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(110, 65, 9, 0.28);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gold-btn:hover,
.gold-btn:focus {
  background: linear-gradient(135deg, var(--gold), #dfb24e);
  color: #000;
  box-shadow: 0 10px 22px rgba(91, 48, 5, 0.22);
}

.gold-btn:hover::before,
.gold-btn:focus::before {
  opacity: 1;
}

.purple-btn {
  background: var(--plum);
  color: #fff8e8;
}

.purple-btn:hover,
.purple-btn:focus {
  background: #3c1049;
  color: #fff;
}

.hero-arrow {
  position: absolute;
  top: 54%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(35, 6, 45, 0.75);
}

.hero-prev {
  left: 10px;
}

.hero-next {
  right: 10px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 23px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}

.dot.active {
  background: #fff;
}

.intro-section {
  padding: 36px 0 28px;
  background: var(--paper);
}

.photo-tile,
.story-card,
.menu-card {
  min-height: 330px;
  border-radius: 8px;
}

#story article {
  height: 100%;
}

.photo-tile {
  background-image: url("Image.jpg");
  background-position: center 39%;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(68, 32, 10, 0.15);
}

.photo-tile.dining-room {
  background-image: url("images/dining-room.jpg");
}

.story-card {
  padding: clamp(26px, 4vw, 43px);
  background: #fffaf0;
  border: 1px solid rgba(120, 78, 30, 0.35);
  box-shadow: 0 16px 32px rgba(77, 44, 11, 0.08);
}

.eyebrow {
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-card h2,
.menu-card h2,
.location-section h2 {
  margin: 0 0 18px;
  color: #2b160c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.divider {
  width: 96px;
  height: 12px;
  margin: 17px 0 24px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid transparent;
  position: relative;
}

.divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--paper);
  transform: translateX(-50%);
}

.story-card p:not(.eyebrow),
.menu-card p {
  font-size: 0.94rem;
  line-height: 1.65;
}

.menu-card {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: clamp(25px, 4vw, 40px);
  color: #fff8e8;
  background-image: linear-gradient(180deg, rgba(18, 7, 4, 0.87) 0%, rgba(18, 7, 4, 0.56) 46%, rgba(18, 7, 4, 0.15) 100%), url("images/dishes.jpg");
  background-position: right 64%;
  background-size: cover;
}

.menu-card h2,
.menu-card p {
  color: #fff8e8;
}

.features {
  padding: 26px 0;
  color: #fff8e8;
  background: var(--plum);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 23px;
  min-height: 96px;
  padding: 12px 28px;
  border-right: 1px solid rgba(240, 198, 110, 0.28);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item i {
  width: 56px;
  color: var(--gold-light);
  font-size: 2.7rem;
  text-align: center;
}

.feature-item h3 {
  margin: 0 0 7px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
}

.feature-item p {
  margin: 0;
  color: #f8e9ce;
  font-size: 0.88rem;
  line-height: 1.45;
}

.location-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  background-image: url('images/location-bg.jpg');
  background-size: cover;
}


.location-section .container {
  position: relative;
  z-index: 1;
}

.location-section h2 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.18rem;
}

.location-section h3 {
  margin-bottom: 18px;
  color: #2d160d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #3a2014;
  font-weight: 800;
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
}

.direction-btn i {
  margin-left: 0;
}

.map-card {
  height: 205px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 13px 32px rgba(57, 32, 10, 0.14);
  background: #e9dfd1;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hours dl {
  margin: 0 0 25px;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 11px;
  color: #2a170f;
  font-size: 0.92rem;
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  margin: 0;
  font-weight: 600;
}

.welcome {
  color: #a87924;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
}

.site-footer {
  padding: 36px 0 16px;
  color: #fff8e8;
  background: #16001f;
}

.footer-brand {
  min-width: 0;
}

.site-footer h4 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
}

.site-footer a:not(.brand-mark) {
  display: block;
  width: fit-content;
  margin-bottom: 6px;
  color: #f5e6cb;
  font-size: 0.78rem;
}

.footer-text {
  margin: 0 0 6px;
  color: #f5e6cb;
  font-size: 0.78rem;
}

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

.socials {
  display: flex;
  gap: 13px;
}

.site-footer .socials a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #1b0622 !important;
  font-size: 0.95rem !important;
  line-height: 1;
}

.copyright {
  margin: 28px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 232, 0.78);
  font-size: 0.78rem;
  text-align: center;
}

.menu-page {
  min-height: 100vh;
  padding-top: 78px;
  background-image: url('images/bg.jpg');
  background-size: contain;
}

.page-bg {
  background-image: url('images/bg.jpg');
  background-size: contain;
}

.menu-gallery-section {
  padding: 48px 0;
}

.menu-page-heading {
  margin-bottom: 28px;
  text-align: center;
}

.menu-page-heading .kicker {
  margin-bottom: 8px;
}

.menu-page-heading h1, .reserve-page-heading h1{
  margin: 0;
  color: #2b160c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);

}

.menu-image-list {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.menu-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(120, 78, 30, 0.25);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(77, 44, 11, 0.1);
}

.menu-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.coming-soon-page {
  min-height: 100vh;
  padding-top: 78px;
}

.coming-soon-section {
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
}

.coming-soon-section h1 {
  margin: 0 0 14px;
  color: #2b160c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.coming-soon-section p:not(.kicker) {
  margin: 0;
  color: #5b3822;
  font-size: 1.1rem;
  font-weight: 700;
}

.gallery-page {
  min-height: 100vh;
  padding-top: 78px;
}

.gallery-hero {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 92px 0 58px;
  color: #fff8e8;
  background-color: #16001f;
  background-position: center;
  background-size: cover;
}

.gallery-hero-content {
  max-width: 670px;
}

.gallery-hero h1 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.92;
}

.gallery-hero p:not(.kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 248, 232, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.gallery-section {
  padding: 44px 0 58px;
}

.gallery-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.gallery-toolbar h2 {
  margin: 0;
  color: #2b160c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.gallery-toolbar span {
  flex: 0 0 auto;
  color: #6d3f19;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-tile {
  position: relative;
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(42, 23, 15, 0.12);
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.gallery-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.story-page {
  min-height: 100vh;
  padding-top: 78px;
}

.story-hero {
  padding: 58px 0 42px;
  background: #16001f;
  color: #fff8e8;
}

.story-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.story-hero-copy h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.98;
}

.story-hero-copy p:not(.kicker) {
  margin: 0;
  color: rgba(255, 248, 232, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.story-hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.story-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-detail-section {
  padding: 48px 0;
}

.story-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: stretch;
}

.story-detail-card,
.story-facts {
  border-radius: 8px;
  border: 1px solid rgba(120, 78, 30, 0.25);
  background: #fffaf0;
  box-shadow: 0 16px 34px rgba(77, 44, 11, 0.08);
}

.story-detail-card {
  padding: clamp(28px, 5vw, 48px);
}

.story-detail-card h2 {
  margin: 0 0 18px;
  color: #2b160c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.story-detail-card p:not(.eyebrow) {
  max-width: 760px;
  color: #4b3328;
  font-size: 1rem;
  line-height: 1.8;
}

.story-facts {
  gap: 1px;
  overflow: hidden;
  background: #fff5e5;
}

.story-facts div {
  padding: 28px;
  background: #fff5e5;
}

.story-facts strong {
  display: block;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.story-facts span {
  display: block;
  margin-top: 8px;
  color: #3a2419;
  font-size: 0.92rem;
  font-weight: 700;
}

.story-interior-carousel {
  position: relative;
  background: #16001f;
}

.story-interior-strip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.story-interior-strip::-webkit-scrollbar {
  display: none;
}

.story-interior-strip img {
  flex: 0 0 20%;
  width: 20%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  scroll-snap-align: start;
}

.story-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 232, 0.38);
  border-radius: 50%;
  background: rgba(22, 0, 31, 0.72);
  color: #fff8e8;
  transform: translateY(-50%);
}

.story-carousel-btn:hover,
.story-carousel-btn:focus {
  background: var(--gold);
  color: #1b0622;
}

.story-carousel-prev {
  left: 18px;
}

.story-carousel-next {
  right: 18px;
}

@media (max-width: 991.98px) {
  .site-nav {
    min-height: auto;
  }

  .navbar-collapse {
    padding: 18px 0 12px;
  }

  .site-nav .nav-link {
    margin: 4px 0;
    padding: 10px 0;
  }

  .site-nav .nav-order {
    display: inline-block;
    padding: 10px 18px;
  }

  .hero {
    min-height: 700px;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid rgba(240, 198, 110, 0.22);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .brand-mark {
    min-width: 0;
    gap: 8px;
  }

  .nav-logo {
    height: 48px;
    max-width: 68vw;
  }

  .brand-accent-right {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .gallery-page,
  .menu-page {
    padding-top: 68px;
  }

  .gallery-hero {
    min-height: 360px;
    padding: 74px 0 42px;
  }

  .gallery-toolbar {
    display: block;
  }

  .gallery-toolbar span {
    display: inline-block;
    margin-top: 12px;
  }

  .story-hero-grid,
  .story-detail-grid {
    grid-template-columns: 1fr;
  }

  .story-hero {
    padding-top: 42px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    columns: auto;
  }

  .gallery-tile {
    margin: 0;
  }

  .gallery-tile img {
    aspect-ratio: 1 / 1;
    height: 100%;
    object-fit: cover;
  }

  .hero-content {
    padding-right: 38px;
    padding-left: 38px;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;
  }

  .photo-tile,
  .story-card,
  .menu-card {
    min-height: 285px;
  }

  .story-interior-strip img {
    flex-basis: 50%;
    width: 50%;
  }

  .feature-item {
    padding: 18px 0;
  }

  .hours dl div {
    display: block;
  }

  .hours dd {
    margin-top: 3px;
  }
}


/* Catering */ 
    .catering-section {
        padding: 60px 0;
    }

  .catering-section h1 {
    margin: 0 0 14px;
    color: #2b160c;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
  }

    .section-subtitle {
        color: #666;
        margin-bottom: 40px;
    }

    .package-card,
    .catering-card {
        border: none;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: 0.3s;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .package-card:hover,
    .catering:hover {
        transform: translateY(-5px);
    }

    .card-header-custom {
        background: #b22222;
        color: #fff;
        padding: 16px 20px;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .price-tag {
        font-size: 1.2rem;
        font-weight: bold;
        color: #b22222;
    }

    .catering-list li {
        padding: 6px 0;
        border-bottom: 1px dashed #ddd;
    }

    .catering-list li:last-child {
        border-bottom: none;
    }

    .info-box {
        background: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 15px;
        border-radius: 10px;
        margin-top: 20px;
    }

    .note-box {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .table thead {
        background: #b22222;
        color: #fff;
    }

    .badge-custom {
        background: #b22222;
        font-size: 0.9rem;
        padding: 8px 12px;
    }