body {
  margin: 0;
  padding: 0;
  background: #f7f1ea;
  color: #3b2416;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  color: #2d1b10;
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 18px;
}

a {
  color: #9b5a2e;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #6f3d1d;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: #9b5a2e;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #f7f1ea;
}

.hero-bg-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  background: #fffaf4;
  z-index: 1;
}

.hero-bg-accent {
  position: absolute;
  top: 60px;
  right: 0;
  width: 34%;
  height: 420px;
  background: #d7b08a;
  z-index: 1;
  border-radius: 40px 0 0 40px;
}

.hero-image {
  position: relative;
  display: block;
  width: 58%;
  max-width: 900px;
  height: 620px;
  object-fit: cover;
  margin-left: auto;
  border-radius: 28px 0 0 28px;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  width: 520px;
  z-index: 3;
}

.hero-box {
  background: rgba(255, 250, 244, 0.96);
  padding: 48px;
  border-radius: 28px;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-subtitle {
  display: inline-block;
  margin-bottom: 18px;
  color: #9b5a2e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 24px;
  color: #3b2416;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  font-family: Georgia, serif;
}

.hero-text {
  margin-bottom: 34px;
  color: #5e4636;
  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #9b5a2e;
  color: #fff;
}

.primary-btn:hover {
  background: #7c4420;
  color: #fff;
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(59, 36, 22, 0.18);
  color: #3b2416;
  background: transparent;
}

.secondary-btn:hover {
  background: #3b2416;
  color: #fff;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 70px 20px;
  }

  .hero-bg-light,
  .hero-bg-accent {
    display: none;
  }

  .hero-image {
    width: 100%;
    height: 420px;
    border-radius: 24px;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: -60px;
    padding: 0 15px;
  }

  .hero-box {
    padding: 34px;
  }

  .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-box {
    padding: 28px 22px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }
}
.lounge-features-section {
  padding: 95px 20px;
  background: #f7f1ea;
  font-family: 'Open Sans', sans-serif;
}

.lounge-features-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lounge-features-title {
  max-width: 760px;
  margin: 0 auto 55px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 800;
}

.lounge-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lounge-feature-card {
  position: relative;
  overflow: hidden;
  padding: 38px 32px;
  background: #fffaf4;
  border-radius: 30px;
  text-align: left;
  box-shadow: 0 18px 42px rgba(59, 36, 22, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lounge-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(59, 36, 22, 0.14);
}

.feature-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 16px;
  background: rgba(155, 90, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #9b5a2e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-number {
  display: inline-block;
  margin-bottom: 12px;
  color: #c17a3a;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.lounge-feature-card h3 {
  margin: 0 0 16px;
  color: #3b2416;
  font-family: 'Montserrat', sans-serif;
  font-size: 23px;
  line-height: 1.25;
}

.lounge-feature-card p {
  margin: 0;
  color: #5e4636;
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .lounge-features-grid {
    grid-template-columns: 1fr;
  }

  .lounge-features-title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .lounge-features-section {
    padding: 70px 16px;
  }

  .lounge-feature-card {
    padding: 30px 24px;
  }

  .lounge-features-title {
    font-size: 29px;
  }
}
.booking-showcase-section {
  padding: 100px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
}

.booking-showcase-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.booking-showcase-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.booking-showcase-content {
  padding: 54px 46px;
  background: #f7f1ea;
  border-radius: 34px;
  box-shadow: 0 18px 45px rgba(59, 36, 22, 0.08);
}

.booking-showcase-content h2 {
  margin: 0 0 24px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
}

.booking-showcase-content p {
  margin: 0 0 32px;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.8;
}

.booking-showcase-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #9b5a2e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid #9b5a2e;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.booking-showcase-link:hover {
  color: #6f3d1d;
  border-color: #6f3d1d;
}

.booking-gallery {
  position: relative;
  min-height: 560px;
}

.booking-gallery-image {
  position: absolute;
  object-fit: cover;
  display: block;
  box-shadow: 0 22px 50px rgba(59, 36, 22, 0.16);
}

.image-main {
  right: 0;
  top: 70px;
  width: 72%;
  height: 390px;
  border-radius: 34px;
  z-index: 2;
}

.image-top {
  left: 0;
  top: 0;
  width: 46%;
  height: 230px;
  border-radius: 28px;
  z-index: 3;
}

.image-bottom {
  left: 8%;
  bottom: 0;
  width: 42%;
  height: 245px;
  border-radius: 28px;
  z-index: 1;
}

@media (max-width: 991px) {
  .booking-showcase-layout {
    grid-template-columns: 1fr;
  }

  .booking-gallery {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .booking-gallery-image,
  .image-main,
  .image-top,
  .image-bottom {
    position: static;
    width: 100%;
    height: 320px;
    border-radius: 26px;
  }
}

@media (max-width: 575px) {
  .booking-showcase-section {
    padding: 70px 16px;
  }

  .booking-showcase-content {
    padding: 34px 24px;
  }

  .booking-showcase-content h2 {
    font-size: 31px;
  }

  .booking-gallery-image,
  .image-main,
  .image-top,
  .image-bottom {
    height: 240px;
  }
}
.restaurant-highlights-section {
  padding: 95px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
}

.restaurant-highlights-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.restaurant-highlights-title {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 800;
}

.restaurant-highlights-text {
  max-width: 680px;
  margin: 0 auto 52px;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.75;
}

.restaurant-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  padding: 34px 24px;
  background: #f7f1ea;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(59, 36, 22, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(59, 36, 22, 0.14);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  border-radius: 16px;
  background: rgba(155, 90, 46, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #9b5a2e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-card h4 {
  margin: 0 0 12px;
  color: #3b2416;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.highlight-card p {
  margin: 0;
  color: #5e4636;
  font-size: 15.5px;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .restaurant-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .restaurant-highlights-title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .restaurant-highlights-section {
    padding: 70px 16px;
  }

  .restaurant-highlights-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-highlights-title {
    font-size: 29px;
  }
}
.mood-tiles-section {
  padding: 0;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
}

.mood-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 520px;
}

.mood-tile {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 42px 34px;
}

.mood-tile-image {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.mood-tile-comfort {
  background-image: url('/assets/images/comfort-table-maple.webp');
}

.mood-tile-menu {
  background-image: url('/assets/images/seasonal-menu-lane.webp');
}

.mood-tile-solid {
  background: #2d1b10;
  color: #fffaf4;
}

.mood-tile-accent {
  background: #9b5a2e;
  color: #fffaf4;
}

.mood-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 27, 16, 0.82),
    rgba(45, 27, 16, 0.25)
  );
  z-index: 1;
}

.mood-tile-content {
  position: relative;
  z-index: 2;
}

.mood-tile-number {
  display: inline-block;
  margin-bottom: 16px;
  color: #d7b08a;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.mood-tile h4 {
  margin: 0 0 16px;
  color: inherit;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 800;
}

.mood-tile p {
  margin: 0;
  color: inherit;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.92;
}

@media (max-width: 1100px) {
  .mood-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mood-tile {
    min-height: 420px;
  }
}

@media (max-width: 575px) {
  .mood-tiles-grid {
    grid-template-columns: 1fr;
  }

  .mood-tile {
    min-height: 360px;
    padding: 34px 24px;
  }
}
.experience-columns-section {
  padding: 100px 20px;
  background: #f7f1ea;
  font-family: 'Open Sans', sans-serif;
}

.experience-columns-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.experience-columns-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 34px;
  align-items: center;
}

.experience-info-card {
  position: relative;
  padding: 36px;
  background: #fffaf4;
  border-radius: 34px;
  box-shadow: 0 18px 42px rgba(59, 36, 22, 0.08);
  overflow: hidden;
}

.experience-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #9b5a2e;
}

.card-secondary::before {
  background: #c17a3a;
}

.experience-card-content {
  position: relative;
  z-index: 2;
}

.experience-card-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #9b5a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.experience-info-card h5 {
  margin: 0 0 18px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
}

.experience-info-card p {
  margin: 0;
  color: #5e4636;
  font-size: 16px;
  line-height: 1.8;
}

.experience-heading-block {
  text-align: center;
  padding: 20px;
}

.experience-heading-block h3 {
  margin: 18px 0 0;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
}

@media (max-width: 991px) {
  .experience-columns-grid {
    grid-template-columns: 1fr;
  }

  .experience-heading-block {
    order: -1;
    padding: 0 10px 12px;
  }

  .experience-heading-block h3 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .experience-columns-section {
    padding: 70px 16px;
  }

  .experience-info-card {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .experience-heading-block h3 {
    font-size: 29px;
  }

  .experience-info-card h5 {
    font-size: 22px;
  }
}
.restaurant-benefits-section {
  position: relative;
  padding: 110px 20px;
  background-image: url('/assets/images/restaurant-evening-bg.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
}

.restaurant-benefits-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(32, 18, 10, 0.622),
    rgba(59, 36, 22, 0.292)
  );
}

.restaurant-benefits-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.light-label {
  color: #d7b08a;
}

.restaurant-benefits-title {
  max-width: 820px;
  margin: 0 auto 60px;
  color: #fffaf4;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 800;
}

.restaurant-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.benefit-box {
  padding: 34px 24px;
  background: rgba(255, 250, 244, 0.95);
  border-radius: 28px;
  backdrop-filter: blur(6px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: rgba(155, 90, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #9b5a2e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-box h4 {
  margin: 0;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

@media (max-width: 991px) {
  .restaurant-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .restaurant-benefits-title {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .restaurant-benefits-section {
    padding: 80px 16px;
  }

  .restaurant-benefits-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-benefits-title {
    font-size: 29px;
  }

  .benefit-box {
    padding: 28px 22px;
  }
}
.guest-review-section {
  padding: 100px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
}

.guest-review-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.guest-review-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: #f7f1ea;
  border-radius: 38px;
  box-shadow: 0 20px 48px rgba(59, 36, 22, 0.08);
}

.guest-review-avatar-wrapper {
  display: flex;
  justify-content: center;
}

.guest-review-avatar {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(155, 90, 46, 0.12);
  box-shadow: 0 18px 42px rgba(59, 36, 22, 0.14);
}

.guest-review-content {
  position: relative;
}

.guest-review-quote-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  border-radius: 18px;
  background: rgba(155, 90, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-review-quote-icon svg {
  width: 26px;
  height: 26px;
  fill: #9b5a2e;
}

.guest-review-text {
  margin: 0 0 32px;
  color: #4d382b;
  font-size: 20px;
  line-height: 1.9;
  font-style: italic;
}

.guest-review-author h5 {
  margin: 0 0 6px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.guest-review-author span {
  color: #9b5a2e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .guest-review-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 38px 28px;
  }

  .guest-review-quote-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .guest-review-text {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .guest-review-section {
    padding: 70px 16px;
  }

  .guest-review-avatar {
    width: 170px;
    height: 170px;
  }

  .guest-review-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .guest-review-author h5 {
    font-size: 22px;
  }
}
.restaurant-story-section {
  padding: 100px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
}

.restaurant-story-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.restaurant-story-heading {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.restaurant-story-heading h2 {
  margin: 18px 0 22px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
}

.restaurant-story-heading p {
  margin: 0;
  color: #5e4636;
  font-size: 18px;
  line-height: 1.8;
}

.restaurant-story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.story-stat-card {
  padding: 38px 24px;
  background: #f7f1ea;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(59, 36, 22, 0.08);
}

.story-stat-number {
  display: block;
  margin-bottom: 14px;
  color: #9b5a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.story-stat-card p {
  margin: 0;
  color: #4d382b;
  font-size: 15px;
  line-height: 1.7;
}

.restaurant-gallery-section {
  padding: 0 20px 100px;
  background: #fffaf4;
}

.restaurant-gallery-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.restaurant-gallery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border-radius: 34px;
  background-image: url('/assets/images/lounge-evening-maple.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.gallery-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(32, 18, 10, 0.88),
    rgba(32, 18, 10, 0.25)
  );
}

.gallery-feature-content {
  position: relative;
  z-index: 2;
  padding: 42px;
  color: #fffaf4;
}

.gallery-feature-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #d7b08a;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-feature-content h2 {
  margin: 0 0 20px;
  color: #fffaf4;
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.gallery-feature-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery-image {
  overflow: hidden;
  border-radius: 28px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

.image-large {
  grid-column: 1 / -1;
  height: 390px;
}

.image-small {
  height: 232px;
}

@media (max-width: 991px) {
  .restaurant-story-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .restaurant-gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-feature-card {
    min-height: 520px;
  }

  .restaurant-story-heading h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .restaurant-story-section {
    padding: 70px 16px;
  }

  .restaurant-gallery-section {
    padding: 0 16px 70px;
  }

  .restaurant-story-stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .image-large,
  .image-small {
    height: 240px;
  }

  .gallery-feature-card {
    min-height: 420px;
  }

  .gallery-feature-content {
    padding: 28px 24px;
  }

  .gallery-feature-content h2,
  .restaurant-story-heading h2 {
    font-size: 29px;
  }
}
.restaurant-team-section {
  padding: 100px 20px;
  background: #f7f1ea;
  font-family: 'Open Sans', sans-serif;
}

.restaurant-team-inner,
.reservation-gallery-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.restaurant-team-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.restaurant-team-heading h2 {
  margin: 18px 0 22px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
}

.restaurant-team-heading p {
  margin: 0;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.8;
}

.restaurant-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-member-card {
  padding: 30px 24px;
  background: #fffaf4;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 16px 42px rgba(59, 36, 22, 0.08);
  transition: transform 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-6px);
}

.team-member-photo {
  width: 170px;
  height: 170px;
  margin: 0 auto 24px;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid rgba(155, 90, 46, 0.12);
}

.team-member-card h5 {
  margin: 0 0 8px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.team-member-card span {
  color: #9b5a2e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reservation-gallery-section {
  padding: 0 20px 100px;
  background: #f7f1ea;
}

.reservation-gallery-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.reservation-gallery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.reservation-gallery-main {
  grid-column: 1 / -1;
  height: 420px;
  overflow: hidden;
  border-radius: 30px;
}

.reservation-gallery-small {
  height: 240px;
  overflow: hidden;
  border-radius: 26px;
}

.reservation-gallery-main img,
.reservation-gallery-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reservation-info-card {
  padding: 48px;
  background: #fffaf4;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 46px rgba(59, 36, 22, 0.08);
}

.reservation-info-card h3 {
  margin: 18px 0 24px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 800;
}

.reservation-info-card p {
  margin: 0 0 32px;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.8;
}

.reservation-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 40px;
  background: #9b5a2e;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.reservation-info-btn:hover {
  background: #6f3d1d;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .restaurant-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reservation-gallery-layout {
    grid-template-columns: 1fr;
  }

  .reservation-info-card h3,
  .restaurant-team-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .restaurant-team-section,
  .reservation-gallery-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .restaurant-team-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .reservation-gallery-section {
    padding-bottom: 70px;
  }

  .restaurant-team-grid,
  .reservation-gallery-images {
    grid-template-columns: 1fr;
  }

  .reservation-gallery-main,
  .reservation-gallery-small {
    height: 240px;
  }

  .reservation-info-card {
    padding: 34px 24px;
  }

  .reservation-info-card h3,
  .restaurant-team-heading h2 {
    font-size: 29px;
  }
}
.restaurant-faq-section {
  padding: 100px 20px;
  background: #fffaf4;
  font-family: 'Open Sans', sans-serif;
}

.restaurant-faq-inner {
  max-width: 980px;
  margin: 0 auto;
}

.restaurant-faq-heading {
  text-align: center;
  margin-bottom: 56px;
}

.restaurant-faq-heading h2 {
  max-width: 760px;
  margin: 18px auto 22px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
}

.restaurant-faq-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #5e4636;
  font-size: 17px;
  line-height: 1.8;
}

.custom-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #f7f1ea;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(59, 36, 22, 0.06);
}

.faq-question {
  width: 100%;
  min-height: 82px;
  padding: 0 30px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(155, 90, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #9b5a2e;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 30px 28px;
}

.faq-answer p {
  margin: 0;
  color: #5e4636;
  font-size: 16px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

@media (max-width: 575px) {
  .restaurant-faq-section {
    padding: 70px 16px;
  }

  .restaurant-faq-heading h2 {
    font-size: 30px;
  }

  .faq-question {
    padding: 0 22px;
    min-height: 76px;
  }

  .faq-question span {
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 22px 24px;
  }
}
.restaurant-contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2d1b10, #4d2f1e);
  font-family: 'Open Sans', sans-serif;
}

.restaurant-contact-inner,
.restaurant-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.restaurant-contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
}

.restaurant-contact-info {
  color: #fffaf4;
}

.restaurant-contact-title {
  margin: 18px 0 42px;
  color: #fffaf4;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
}

.restaurant-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  backdrop-filter: blur(6px);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #d7b08a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card h5 {
  margin: 0 0 8px;
  color: #fffaf4;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.contact-info-card p {
  margin: 0;
  color: rgba(255, 250, 244, 0.88);
  line-height: 1.7;
}

.restaurant-contact-form-box {
  padding: 44px;
  background: #fffaf4;
  border-radius: 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.restaurant-contact-form-box h3 {
  margin: 18px 0 30px;
  color: #2d1b10;
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}

.restaurant-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.newsletter-field label {
  display: block;
  margin-bottom: 10px;
  color: #2d1b10;
  font-size: 14px;
  font-weight: 700;
}

.newsletter-field input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(59, 36, 22, 0.14);
  border-radius: 16px;
  background: #f7f1ea;
  color: #2d1b10;
  font-size: 15px;
  outline: none;
}

.newsletter-field input:focus {
  border-color: #9b5a2e;
}

.newsletter-submit-btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 18px;
  background: #9b5a2e;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-submit-btn:hover {
  background: #6f3d1d;
}

.newsletter-privacy-text {
  margin: 0;
  color: #7b6658;
  font-size: 13px;
  text-align: center;
}

.restaurant-map-section iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

.restaurant-footer {
  padding: 60px 20px;
  background: #20120a;
  text-align: center;
}

.restaurant-footer-brand h4 {
  margin: 0 0 14px;
  color: #fffaf4;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
}

.restaurant-footer-brand p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.8;
}

.restaurant-footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}

.restaurant-footer-links a,
.restaurant-footer-copy {
  color: rgba(255, 250, 244, 0.72);
}

.restaurant-cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 420px;
  max-width: calc(100% - 32px);
  padding: 22px;
  background: #fffaf4;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.restaurant-cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.restaurant-cookie-content {
  display: flex;
  gap: 16px;
}

.restaurant-cookie-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(155, 90, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.restaurant-cookie-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #9b5a2e;
  stroke-width: 1.8;
}

.restaurant-cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  height: 48px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-decline {
  background: #ece4dc;
  color: #2d1b10;
}

.cookie-accept {
  background: #9b5a2e;
  color: #fff;
}

@media (max-width: 991px) {
  .restaurant-contact-layout {
    grid-template-columns: 1fr;
  }

  .restaurant-contact-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .restaurant-contact-section {
    padding: 70px 16px;
  }

  .restaurant-contact-form-box {
    padding: 32px 22px;
  }

  .restaurant-contact-title,
  .restaurant-contact-form-box h3 {
    font-size: 29px;
  }

  .restaurant-cookie-banner {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 16px;
  }

  .restaurant-cookie-actions {
    flex-direction: column;
  }
}
