:root {
  --red: #ff0000;
  --red-dark: #cc0000;
  --red-dim: rgba(255, 0, 0, 0.12);
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #222222;
  --white: #ffffff;
  --off-white: #f5f0ee;
  --gray: #888;
  --light-gray: #333;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 6%;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  transition: background 0.3s;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;

  img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }
}

/* Info Section */
.info-section {
  background-color: #0a0a0a;
}

.info-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  color: #ffffff;
}

.info-card .icon {
  width: 52px;
  height: 52px;
  background-color: #cc0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.info-card .icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

.info-card h3 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.info-card ul li,
.info-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.1rem;
}

.info-card p {
  margin-bottom: 0.5rem;
}

/* Map */
.map-container iframe {
  border-radius: 8px;
  display: block;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  background-color: #222222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.social-link:hover {
  background-color: #cc0000;
  color: #ffffff;
}

.logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-phone:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.btn-phone svg {
  transition: transform 0.3s ease;
}

.btn-phone:hover svg {
  transform: scale(1.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  padding: 170px 6% 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;
  /* Remove background image from main section, move to ::after for opacity control */
  background: none;
}

.hero-image {
  height: 500px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 99999px;
}

@media (max-width: 720px) {
  #hero {
    flex-direction: column;
  }

  .hero-image {
    width: 300px;
    height: 300px;

  }
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
  gap: 15px;
  color: var(--gray);
}

.about-list li::marker {
  color: var(--red);
}

/* make sure all children in hero are above overlays */
#hero>* {
  position: relative;
  z-index: 2;
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("image/pattern.jpg") center center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}


#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%,
      rgba(255, 0, 0, 0.06),
      transparent);
  pointer-events: none;
  background:
    linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
    radial-gradient(ellipse 60% 60% at 70% 50%,
      rgba(255, 0, 0, 0.06),
      transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  margin-top: 22px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

/* 
.hero-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 70px;
  position: relative;
  z-index: 2;
} */


.hero-img-item {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  opacity: 0;
  /* keep hidden until reveal triggered */
  z-index: 2;
}

.hero-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-item:hover img {
  transform: scale(1.05);
}

.hero-img-item:nth-child(2) {
  margin-top: -30px;
}

.hero-img-item:nth-child(4) {
  margin-top: 30px;
}

/* ---- INFO BAR ---- */
.info-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: start;
  padding: 44px 6%;
  background: var(--black-2);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.info-item {
  display: flex;
  /* align-items: center; */
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 1px solid rgba(255, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 3px;
}

.info-text p {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hours-list p {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

.hours-list p span {
  color: var(--gray);
  display: inline-block;
  min-width: 90px;
  font-weight: 400;
}

.hours-list p span::after {
  content: "";
}

/* ---- ABOUT ---- */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;

  padding: 100px 9%;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 12px;
  position: relative;
}

.about-img {
  border-radius: 4px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-img:first-child {
  aspect-ratio: 3/4;
}

.about-img:last-child {
  height: 360px;

  aspect-ratio: 3/4;
  /* margin-top: 100px; */
  margin-bottom: -80px;
  margin-left: -80px;
  align-self: end;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  border: solid 20px var(--black);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
}

.section-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.check-list a {
  text-decoration: none;
  color: var(--red);
  font-weight: 500;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.check-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- MENU ---- */
#menu {
  padding: 100px 6%;
  background: var(--black-2);
  max-width: 1200px;
  margin: 0 auto;
}

.menu-container {
  width: 100%;
  background: var(--black-2);

}

.section-header {
  margin-bottom: 40px;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 48px;
}

.tab {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid var(--light-gray);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.tab.active,
.tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--black-3);
  border-radius: 6px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.menu-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black-4);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 16px 18px 20px;
}

.menu-card-body h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.4;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars {
  color: #f5a623;
  font-size: 0.8rem;
}

.rating-count {
  font-size: 0.78rem;
  color: var(--gray);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.btn-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 3px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-cart:hover {
  background: var(--red-dark);
}

.see-more-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ---- MENU SHOWCASE ---- */
#menu-showcase {
  padding: 100px 6%;
  background: var(--black-2);
  text-align: center;
}

.menu-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .menu-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.menu-showcase-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.menu-showcase-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.menu-showcase-img:hover img {
  transform: scale(1.05);
}

/* ---- IMAGE VIEWER (LIGHTBOX) ---- */
.img-viewer {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  cursor: grab;
}

.img-viewer.open {
  display: flex;
}

.img-viewer .wrap {
  max-width: 92%;
  max-height: 92%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-viewer .wrap img {
  /* contain the image inside the viewport while maintaining aspect ratio */
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  will-change: transform;
  transform-origin: center center;
  user-select: none;
  pointer-events: none;
}

.img-viewer .controls {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 10000;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.img-viewer.grabbing {
  cursor: grabbing;
}

/* ---- HOW IT WORKS ---- */
#how {
  padding: 100px 6%;
  text-align: center;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 64px;
}

.how-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.how-item {
  text-align: left;
}

.how-col:last-child .how-item {
  text-align: right;
}

.how-num {
  width: 36px;
  height: 36px;
  background: var(--red-dim);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}

.how-col:last-child .how-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.how-item h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.how-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  max-width: 220px;
}

.how-col:last-child .how-item p {
  text-align: right;
}

.how-center-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 0, 0, 0.25);
  flex-shrink: 0;
}

.how-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- BOOKING ---- */
#booking {
  padding: 90px 6%;
  background: var(--black-3);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.booking-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.booking-inner .section-title {
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

input,
select {
  width: 100%;
  padding: 14px 18px;
  background: var(--black-4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

input:focus,
select:focus {
  border-color: var(--red);
}

select {
  color: rgba(255, 255, 255, 0.5);
}

select option {
  background: var(--black-4);
  color: var(--white);
}

.btn-full {
  width: 100%;
  padding: 15px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

/* ---- TESTIMONIALS ---- */
#testimonials {
  padding: 100px 6%;
  background: var(--black-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testi-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 28px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.testi-card:hover {
  border-color: rgba(255, 0, 0, 0.2);
  transform: translateY(-2px);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red-dim);
  overflow: hidden;
  border: 2px solid rgba(255, 0, 0, 0.2);
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.testi-role {
  font-size: 0.78rem;
  color: var(--gray);
}

.testi-stars {
  color: #f5a623;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ---- NEWSLETTER ---- */
#newsletter {
  padding: 80px 6%;
  text-align: center;
  border-top: 1px solid var(--light-gray);
}

.newsletter-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.newsletter-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  border-radius: 3px 0 0 3px;
  border-right: none;
  flex: 1;
}

.newsletter-form .btn {
  border-radius: 0 3px 3px 0;
  padding: 14px 26px;
  flex-shrink: 0;
}

/* ---- FOOTER ---- */
footer {
  padding: 48px 6% 28px;
  background: var(--black);
  border-top: 1px solid var(--light-gray);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* hero images use the same reveal rules but staggered via JS timing */

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-col {
    gap: 30px;
  }

  .how-col:last-child .how-item {
    text-align: left;
    align-items: flex-start;
  }

  .how-col:last-child .how-item p {
    text-align: left;
  }

  .how-center-img {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  #about {
    grid-template-columns: 1fr;
  }

  .about-images {
    max-width: 400px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .info-bar {
    flex-direction: column;
    gap: 24px;
    padding: 32px 6%;
  }

  .hero-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-img-item:nth-child(2) {
    margin-top: 0;
  }

  .hero-img-item:nth-child(4) {
    margin-top: 0;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-images {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .about-img:last-child {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 3px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .newsletter-form .btn {
    border-radius: 3px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }
}

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--red);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 6%;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--white);
}

/* thin red line accent */
.red-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--red);
  margin-right: 12px;
  vertical-align: middle;
}