.front-banner{
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: visible;
}
.front-banner .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.banner-content{
  max-width: 28%;
}
.banner-headline{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.banner-subtitle{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 22px;
  color: rgba(255,255,255,0.95);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.3;
}
.btn-primary{
  background: #EF3200;
  color: #fff;
  border: none;
}
.front-features{
  background: #EEDAB3;
  padding: 135px 0;
  overflow: visible;
}
.feature-title{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #EF3200;
  margin: 0 0 6px;
}
.feature-sub{
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #333;
  margin: 0;
  font-size: 20px;
}
.front-features .features-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1300px; margin: 0 auto; }
.front-features .feature {
  position: relative;
  padding: 0 20px;
}
/* vertical divider between feature columns (desktop) */
.front-features .feature:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  /* fixed divider height and position */
  height: 37px;
  top: 10%;
  background: rgba(0,0,0,0.40); /* rgb(0 0 0 / 40%) */
}
.banner-badge{
  position: absolute;
  right: 50px;
  bottom: -105px;
  z-index: 30;
}
.banner-badge img{
  height: auto;
  max-width: 220px;
}

/* Next section (two images + description) */
.front-next-section{
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
  overflow: visible;
  padding-bottom: 80px; /* ensure space before footer */
}
.front-next-section .next-inner{
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.front-next-section .next-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
}
.front-next-section .next-images img{
  width: 100%;
  height: 795px; /* desktop height */
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.front-next-section .next-left,
.front-next-section .next-right,
.front-next-section .flip-card {
  height: 795px;
}
.front-next-section .next-description{
  margin-top: 20px;
  max-width: 100%;
  color: #333;
  padding: 48px 20px;
  position: relative;
  z-index: 20; /* bring above images/footer if needed */
  clear: both;
}
.front-next-section .next-date{ color: #777; font-size: 13px; margin-bottom: 8px; }
.front-next-section .next-text{ font-size: 16px; line-height: 1.6; }

/* Theme-red background for the description area with white bold text at 25px */
.front-next-section .next-description.theme-red {
  background: #EF3200;
  color: #ffffff;
  padding: 56px;
  /* border-radius: 6px; */
  /* max-width: 1260px; */
  margin: 0px;
  box-sizing: border-box;
  padding-right: 150px;
  padding-left: 150px;
}
.front-next-section .next-description.theme-red .next-text{
  color: #ffffff;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.25;
  margin: 0;
}
.front-next-section .next-description.theme-red .next-date{
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* Flip card styles for hover effect */
.flip-card{
  width: 100%;
  height: 100%;
  perspective: 1200px;
}
.flip-inner{
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}
.flip-card:hover .flip-inner{
  transform: rotateY(180deg);
}
.flip-front, .flip-back{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flip-front img, .flip-back img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flip-back{
  transform: rotateY(180deg);
}

/* Three features (3 images + text) */
.front-three-features{ padding-bottom: 100px; }
.front-three-features .three-inner{ max-width: 1260px; margin: 0 auto; padding: 0 20px; }
.front-three-features .features-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 30px;
  row-gap: 30px;
  align-items: start;
}
/* Scroll-in: card 1 from left, card 2 image from top / text from bottom, card 3 from right */
.front-three-features .features-grid .feature-card:nth-child(1){
  opacity: 0;
  transform: translateX(-80px);
}
.front-three-features .features-grid .feature-card:nth-child(2) .card-image{
  opacity: 0;
  transform: translateY(-60px);
}
.front-three-features .features-grid .feature-card:nth-child(2) .card-text{
  opacity: 0;
  transform: translateY(60px);
}
.front-three-features .features-grid .feature-card:nth-child(3){
  opacity: 0;
  transform: translateX(80px);
}
.front-three-features.in-view .features-grid .feature-card:nth-child(1){
  animation: three-card-from-left 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.front-three-features.in-view .features-grid .feature-card:nth-child(2) .card-image{
  animation: three-card-from-top 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.front-three-features.in-view .features-grid .feature-card:nth-child(2) .card-text{
  animation: three-card-from-bottom 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
.front-three-features.in-view .features-grid .feature-card:nth-child(3){
  animation: three-card-from-right 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes three-card-from-left {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes three-card-from-top {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes three-card-from-bottom {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes three-card-from-right {
  to { opacity: 1; transform: translateX(0); }
}
.feature-card{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.feature-card .card-image{
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  will-change: transform;
  transition: transform 450ms cubic-bezier(.2,.8,.2,1), box-shadow 450ms ease;
}
.feature-card .card-image img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.feature-card .card-image::after{
  /* shimmer overlay */
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 55%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%) rotate(0deg);
  opacity: 0;
  transition: opacity 350ms ease;
}
/* glow + scale on hover with shimmer */
.feature-card .card-image:hover{
  transform: scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.feature-card .card-image:hover::after{
  animation: shimmer 1s ease;
  opacity: 1;
}
@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(0deg); }
  100% { transform: translateX(100%) rotate(0deg); }
}

/* also apply a subtle hover for flip cards */
.flip-card:hover .flip-front img,
.flip-card:hover .flip-back img{
  transform: scale(1.02);
  transition: transform 500ms ease;
}
.feature-card .card-text{
  background: #EF3200;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}
/* Second card: text first then image (reverse order) and different background color */
.front-three-features .features-grid .feature-card:nth-child(2){
  flex-direction: column-reverse;
}
.front-three-features .features-grid .feature-card:nth-child(2) .card-text{
  background: #EEDAB3;
  color: #333;
}

/* About section: image left, content + 5 cards right */
.front-about-section{
  width: 100%;
  margin: 0;
  padding: 0;
  
}
.front-about-section .about-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}
.front-about-section .about-image-col{
  overflow: hidden;
}
.front-about-section .about-image-col img{
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.front-about-section .about-content-col{
  background: linear-gradient(180deg, #FBF1D5 0%, #F0E2C0 100%);
  padding: 56px 48px;
  display: flex;
  align-items: center;
}
.front-about-section .about-content-wrap{
  max-width: 100%;
}
.front-about-section .about-heading{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  color: #EF3200; /* theme red */
  margin: 0 0 24px;
}
.front-about-section .about-text{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0 0 32px;
}
.front-about-section .about-cards{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 16px;
  row-gap: 16px;
}
.front-about-section .about-card{
  background: #EF3200; /* theme red */
  color: #fff;
  padding: 24px 16px;
  border-radius: 12px;
  text-align: center;
  /* initial state before scroll-into-view */
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.front-about-section.in-view .about-card{
  animation: about-card-shuffle 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.front-about-section.in-view .about-card:nth-child(1){ animation-delay: 0.15s; }
.front-about-section.in-view .about-card:nth-child(2){ animation-delay: 0.3s; }
.front-about-section.in-view .about-card:nth-child(3){ animation-delay: 0.45s; }
.front-about-section.in-view .about-card:nth-child(4){ animation-delay: 0.6s; }
.front-about-section.in-view .about-card:nth-child(5){ animation-delay: 0.75s; }
@keyframes about-card-shuffle {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.front-about-section .about-card-icon{
  margin-bottom: 12px;
}
.front-about-section .about-card-icon img{
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.front-about-section .about-card-title{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 4px;
}
.front-about-section .about-card-subtitle{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.9;
  margin: 0;
}

/* Vision & Mission: split layout, scroll-in animation, hover effects */
:root{
  --vm-theme: #EF3200;
  --vm-beige: #EEDAB3;
  --vm-dark: #000000;
  --vm-white: #ffffff;
}
.front-vision-mission{
  position: relative;
  width: 100%;
  padding: 120px 24px 100px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--vm-beige) 0%, rgba(238,218,179,0.6) 50%, rgba(239,50,0,0.08) 100%);
  color: var(--vm-dark);
}
.front-vision-mission .vision-mission-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.vision-mission-shape{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: vm-shape-drift 18s ease-in-out infinite;
}
.vision-mission-shape-1{
  width: 400px;
  height: 400px;
  background: var(--vm-theme);
  top: -100px;
  left: -80px;
  animation-delay: 0s;
}
.vision-mission-shape-2{
  width: 350px;
  height: 350px;
  background: var(--vm-beige);
  bottom: -80px;
  right: -60px;
  animation-delay: -6s;
}
@keyframes vm-shape-drift{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  33%{ transform: translate(20px, -15px) scale(1.05); }
  66%{ transform: translate(-15px, 10px) scale(0.98); }
}
.vision-mission-noise{
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.front-vision-mission .vision-mission-inner{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.vision-mission-card{
  position: relative;
  padding: 48px 40px;
  border-radius: 20px;
  background: #EF3200;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  overflow: hidden;
}
.vision-mission-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.8s ease-in-out;
  pointer-events: none;
}
.vision-mission-card:hover,
.vision-mission-card:focus-within{
  box-shadow: 0 20px 48px rgba(239,50,0,0.15);
  border-color: rgba(239,50,0,0.35);
}
.front-vision-mission.in-view .vision-card:hover,
.front-vision-mission.in-view .mission-card:hover{
  transform: translateY(0) scale(1.03);
}
.vision-mission-card:hover::before{
  background-position: 0 0;
}
.vision-mission-card-inner{
  position: relative;
  z-index: 1;
}
.front-vision-mission .vision-mission-icon{
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease-in-out;
}
.vision-mission-card:hover .vision-mission-icon{
  transform: scale(1.1);
}
.vision-mission-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vision-mission-icon-svg{
  color: var(--vm-white);
}
.vision-mission-icon img{
  filter: brightness(0) invert(1);
}
.vision-mission-heading{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--vm-white);
  letter-spacing: -0.02em;
}
.vision-mission-text{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.95);
  margin: 0;
}
.vision-mission-text p{
  margin: 0 0 12px;
}
.vision-mission-text p:last-child{ margin-bottom: 0; }
/* Scroll-in: Vision first, Mission with delay */
.front-vision-mission .vision-card{
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out, box-shadow 0.4s ease-in-out;
}
.front-vision-mission .mission-card{
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-in-out 0.15s, transform 0.7s ease-in-out 0.15s, box-shadow 0.4s ease-in-out;
}
.front-vision-mission.in-view .vision-card{
  opacity: 1;
  transform: translateY(0);
}
.front-vision-mission.in-view .mission-card{
  opacity: 1;
  transform: translateY(0);
}

/* Dish Gallery: full-width bg + horizontal scrollable cards */
.front-dish-gallery{
  position: relative;
  width: 100%;
  min-height: 130vh;
  overflow: hidden;
}
.dish-gallery-bg-wrap{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.dish-gallery-bg-layer{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(1);
}
.dish-gallery-bg-layer.active{
  opacity: 1;
  transform: scale(1.05);
  z-index: 1;
}
.dish-gallery-bg-layer:not(.active){
  opacity: 0;
  z-index: 0;
}
.dish-gallery-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.dish-gallery-cards-wrap{
  position: absolute;
  z-index: 3;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 48px 24px 48px 24px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  align-items: center;
}
.dish-gallery-cards-wrap::-webkit-scrollbar{
  display: none;
}
.dish-gallery-cards-wrap:active{ cursor: grabbing; }
.dish-gallery-cards-inner{
  display: flex;
  gap: 24px;
  padding-left: 24px;
  padding-right: 24px;
  width: max-content;
  min-width: 100%;
  justify-content: flex-start;
}

/* Card width so visible area shows exactly 3 full cards (desktop); overridden in media for 2 / 1 */
.dish-gallery-card{
  flex: 0 0 calc((50vw - 96px) / 3);
  width: calc((50vw - 96px) / 3);
  min-width: 260px;
  max-width: 380px;
  background: transparent;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, z-index 0s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.dish-gallery-card:hover{
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  z-index: 5;
}
.dish-gallery-card.active{
  transform: scale(1.03);
  box-shadow: 0 20px 56px rgba(0,0,0,0.22);
  z-index: 4;
}
.dish-gallery-card .dish-card-image{
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.dish-gallery-card .dish-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Text area: soft off-white, large rounded bottom corners, depth, clean separation */
.dish-gallery-card .dish-card-body{
  flex: 1;
  background: linear-gradient(180deg, #fdf4f2 0%, #fffaf4 100%);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px 26px 20px;
  border-radius: 0 0 20px 20px;
  text-align: left;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  min-height: 120px;
}
/* Category: small uppercase, letter-spaced, accent */
.dish-gallery-card .dish-card-category{
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c45c2a;
  margin-bottom: 10px;
}
.dish-gallery-card.active .dish-card-category{ color: #b35422; }
/* Main title: bold, high contrast, accent rule under */
.dish-gallery-card .dish-card-title{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(196, 92, 42, 0.35);
}
.dish-gallery-card.active .dish-card-title{ color: #000; }
/* Description: medium-light, comfortable line height, 2–3 lines */
.dish-gallery-card .dish-card-desc{
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #5a5a5a;
  margin: 0;
  overflow: visible;
}
.dish-gallery-card.active .dish-card-desc{ color: #444; }
/* Optional metadata bottom right */
.dish-gallery-card .dish-card-meta{
  margin-top: auto;
  padding-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #999;
  text-align: right;
}

/* Our Team section — full-width, centered heading, grid of cards */
:root {
  --team-primary: #EF3200;
  --team-beige: #EEDAB3;
  --team-neutral: #f8f8f8;
}
.front-team-section{
  width: 100%;
  background: #ffffff;
  padding: 100px 24px 120px;
}
.front-team-section .team-inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.front-team-section .team-heading{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 1.2;
  color: var(--team-primary);
  margin: 0 0 12px;
}
.front-team-section .team-subtitle{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #777;
  margin: 0 0 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.front-team-section .team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
}
/* 1–3 members: center cards in the div */
.front-team-section .team-grid.team-count-1{
  grid-template-columns: repeat(1, minmax(200px, 280px));
  justify-content: center;
}
.front-team-section .team-grid.team-count-2{
  grid-template-columns: repeat(2, minmax(200px, 280px));
  justify-content: center;
}
.front-team-section .team-grid.team-count-3{
  grid-template-columns: repeat(3, minmax(200px, 280px));
  justify-content: center;
}
.front-team-section .team-card{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: box-shadow 350ms ease-out, transform 350ms ease-out;
  cursor: pointer;
  min-height: 320px;
}
.front-team-section .team-card:hover{
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.front-team-section .team-card-image-wrap{
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
}
.front-team-section .team-card-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 350ms ease-out;
}
.front-team-section .team-card:hover .team-card-image-wrap img{
  transform: scale(1.05);
}
.front-team-section .team-card-placeholder{
  width: 100%;
  height: 100%;
  background: var(--team-neutral);
  min-height: 200px;
}
.front-team-section .team-card-bio{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms ease-out, transform 350ms ease-out;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.front-team-section .team-card:hover .team-card-bio{
  opacity: 1;
  transform: translateY(0);
}
.front-team-section .team-card-body{
  padding: 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.front-team-section .team-card-name{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--team-primary);
  margin: 0 0 4px;
  transition: color 350ms ease-out;
}
.front-team-section .team-card:hover .team-card-name{
  color: #c42900;
}
.front-team-section .team-card-role{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
  margin: 0;
}
/* Scroll-in animation */
.front-team-section .team-card{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 350ms ease-out;
}
.front-team-section.in-view .team-card{
  opacity: 1;
  transform: translateY(0);
}
.front-team-section.in-view .team-card:nth-child(1){ transition-delay: 0.05s; }
.front-team-section.in-view .team-card:nth-child(2){ transition-delay: 0.1s; }
.front-team-section.in-view .team-card:nth-child(3){ transition-delay: 0.15s; }
.front-team-section.in-view .team-card:nth-child(4){ transition-delay: 0.2s; }
.front-team-section.in-view .team-card:nth-child(5){ transition-delay: 0.25s; }
.front-team-section.in-view .team-card:nth-child(6){ transition-delay: 0.3s; }
.front-team-section.in-view .team-card:nth-child(7){ transition-delay: 0.35s; }
.front-team-section.in-view .team-card:nth-child(8){ transition-delay: 0.4s; }

/* Our Trusted Clients — testimonial section (SaaS-style, minimal, trust-focused) */
.front-testimonials-section{
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #fafbfc 0%, #f5f6f8 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 24px 120px;
  overflow: hidden;
}
.front-testimonials-section[style*="background-image"]{
  background-color: #333;
}
.front-testimonials-section .testimonials-section-overlay{
  position: absolute;
  inset: 0;
  background: rgba(239, 50, 0, 0.75);
  z-index: 1;
  pointer-events: none;
}
.front-testimonials-section:not([style*="background-image"]) .testimonials-section-overlay{
  display: none;
}
.front-testimonials-section .testimonials-inner{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.front-testimonials-section[style*="background-image"] .testimonials-heading{
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.front-testimonials-section[style*="background-image"] .testimonials-subtext{
  color: rgba(255, 255, 255, 0.9);
}
.front-testimonials-section .testimonials-heading{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
  color: #1a1a2e;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.front-testimonials-section .testimonials-subtext{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 56px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.front-testimonials-section .testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.front-testimonials-section .testimonial-card{
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 28px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transform: translateY(0) rotate(-0.5deg);
  transition: transform 400ms ease-out, box-shadow 400ms ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.front-testimonials-section .testimonial-card::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(239,50,0,0.04) 100%);
  pointer-events: none;
}
.front-testimonials-section .testimonial-card:hover{
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.06);
}
.front-testimonials-section .testimonial-card-image-wrap{
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 20px;
  border: 3px solid #f0f1f3;
  background: #f8f9fa;
}
.front-testimonials-section .testimonial-card-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.front-testimonials-section .testimonial-card-placeholder{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}
.front-testimonials-section .testimonial-card-name{
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.front-testimonials-section .testimonial-card-role{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #9ca3af;
  margin: 0 0 20px;
}
.front-testimonials-section .testimonial-card-content{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
  text-align: center;
  flex: 1;
}
.front-testimonials-section .testimonial-card-content p{
  margin: 0 0 10px;
}
.front-testimonials-section .testimonial-card-content p:last-child{
  margin-bottom: 0;
}
.front-testimonials-section .testimonial-card-quote{
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #EF3200;
}
/* Fade-up animation on scroll */
.front-testimonials-section .testimonial-card{
  opacity: 0;
  transform: translateY(32px) rotate(-0.5deg);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms ease-out;
}
.front-testimonials-section.in-view .testimonial-card{
  opacity: 1;
  transform: translateY(0) rotate(-0.5deg);
}
.front-testimonials-section.in-view .testimonial-card:hover{
  transform: translateY(-8px) rotate(0deg);
}
.front-testimonials-section.in-view .testimonial-card:nth-child(1){ transition-delay: 0.05s; }
.front-testimonials-section.in-view .testimonial-card:nth-child(2){ transition-delay: 0.12s; }
.front-testimonials-section.in-view .testimonial-card:nth-child(3){ transition-delay: 0.19s; }
.front-testimonials-section.in-view .testimonial-card:nth-child(4){ transition-delay: 0.26s; }
.front-testimonials-section.in-view .testimonial-card:nth-child(5){ transition-delay: 0.33s; }
.front-testimonials-section.in-view .testimonial-card:nth-child(6){ transition-delay: 0.4s; }

/* ========== RESPONSIVE BREAKPOINTS (consolidated) ========== */
@media (max-width: 1200px){
  .banner-badge img{ max-width: 160px; }
  .front-features .features-inner{ grid-template-columns: repeat(2,1fr); }
  .front-next-section .next-left,
  .front-next-section .next-right,
  .front-next-section .flip-card{ height: auto; }
  .front-three-features{ padding: 0 50px 65px; }
  .front-about-section .about-cards{ grid-template-columns: repeat(3, 1fr); }
  .front-dish-gallery{ overflow: hidden; }
  .dish-gallery-bg-layer.active{ transform: scale(1); }
}
@media (max-width: 1024px){
  .front-next-section .next-images{ display: flex; flex-direction: column; }
  .front-next-section .next-images > img{ object-fit: contain; height: auto; width: 100%; max-width: 100%; }
  .front-next-section .flip-card{ width: 100%; aspect-ratio: 4/3; height: auto; }
  .front-next-section .flip-inner{ height: 100%; }
  .front-next-section .flip-front,
  .front-next-section .flip-back{ position: absolute; inset: 0; }
  .front-next-section .flip-front img,
  .front-next-section .flip-back img{ width: 100%; height: 100%; object-fit: cover; }
  .front-about-section .about-inner{ display: flex; flex-direction: column; min-height: 0; }
  .front-about-section .about-cards{ grid-template-columns: repeat(3, 1fr); }
  .front-dish-gallery{ min-height: auto; padding-bottom: 140px; overflow: visible; }
  .dish-gallery-cards-wrap{ position: relative; left: 0; right: auto; top: auto; bottom: auto; width: 100%; padding: 40px 24px 100px 24px; overflow-y: visible; }
  /* Tablet: 2 full cards in visible area */
  .dish-gallery-card{ flex: 0 0 calc((100vw - 72px) / 2); width: calc((100vw - 72px) / 2); min-width: 240px; max-width: 420px; }
  .front-team-section .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .front-team-section .team-grid.team-count-1{ grid-template-columns: repeat(1, minmax(200px, 280px)); justify-content: center; }
  .front-team-section .team-grid.team-count-2{ grid-template-columns: repeat(2, minmax(200px, 280px)); justify-content: center; }
  .front-team-section .team-grid.team-count-3{ grid-template-columns: repeat(3, minmax(160px, 200px)); justify-content: center; }
  .front-testimonials-section .testimonials-grid{ grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 900px){
  .front-features .feature:not(:nth-child(2n))::after{ display: block; }
  .front-features .feature:nth-child(2n)::after{ display: none; }
  .banner-content{ max-width: 100%; }
  .front-features .features-inner{ grid-template-columns: repeat(2,1fr); }
  .banner-badge{ right: 10%; bottom: -23%; width: 120px; position: absolute; }
  .front-next-section .next-images{ grid-template-columns: 1fr; }
  .front-next-section .flip-card{ width: 100%; aspect-ratio: 4/3; }
  .front-next-section .flip-inner{ height: 100%; }
  .front-next-section .flip-front,
  .front-next-section .flip-back{ position: absolute; inset: 0; }
  .front-next-section .flip-front img,
  .front-next-section .flip-back img{ width: 100%; height: 100%; object-fit: cover; }
  .front-three-features .features-grid{ grid-template-columns: repeat(2,1fr); }
  .feature-card .card-image img{ height: 320px; }
}
@media (max-width: 769px){
  .feature-title{ font-size: 20px; }
  .feature-sub{ font-size: 18px; }
  .front-next-section .next-description.theme-red{ padding-right: 50px!important; padding-left: 50px!important; }
}
@media (max-width: 768px){
  .front-about-section .about-inner{ grid-template-columns: 1fr; }
  .front-about-section .about-image-col img{ min-height: 320px; }
  .front-about-section .about-content-col{ padding: 40px 24px; }
  .front-about-section .about-heading{ font-size: 28px; }
  .front-about-section .about-cards{ grid-template-columns: repeat(2, 1fr); }
  .front-vision-mission{ padding: 80px 20px 60px; }
  .front-vision-mission .vision-mission-inner{ grid-template-columns: 1fr; gap: 24px; }
  .vision-mission-card{ padding: 36px 28px; }
  .vision-mission-heading{ font-size: 24px; }
  /* Mobile: 1 full card in visible area */
  .dish-gallery-card{ flex: 0 0 calc(100vw - 40px); width: calc(100vw - 40px); min-width: 280px; max-width: none; }
  .dish-gallery-card .dish-card-image{ height: 180px; }
  .dish-gallery-card .dish-card-body{ padding: 20px 22px 18px; }
  .dish-gallery-cards-wrap{ padding: 32px 20px 90px 20px; }
  .front-dish-gallery{ overflow: visible; }
}
@media (max-width: 600px){
  .front-team-section{ padding: 60px 20px 80px; }
  .front-team-section .team-heading{ font-size: 28px; }
  .front-team-section .team-subtitle{ font-size: 15px; margin-bottom: 36px; }
  .front-team-section .team-grid{ grid-template-columns: 1fr; gap: 20px; }
  .front-team-section .team-grid.team-count-1,
  .front-team-section .team-grid.team-count-2,
  .front-team-section .team-grid.team-count-3{ grid-template-columns: 1fr; justify-content: center; }
  .front-team-section .team-card{ min-height: 280px; }
  .front-testimonials-section{ padding: 60px 20px 80px; }
  .front-testimonials-section .testimonials-heading{ font-size: 26px; }
  .front-testimonials-section .testimonials-subtext{ font-size: 15px; margin-bottom: 40px; }
  .front-testimonials-section .testimonials-grid{ grid-template-columns: 1fr; gap: 24px; }
  .front-testimonials-section .testimonial-card{ padding: 32px 24px 44px; transform: none; }
  .front-testimonials-section.in-view .testimonial-card{ transform: none; }
  .front-testimonials-section.in-view .testimonial-card:hover{ transform: translateY(-6px); }
}
@media (max-width: 480px){
  .front-features .feature::after{ display: none; }
  .front-features .feature + .feature{ border-top: 1px solid rgba(0,0,0,0.06); padding-top: 18px; margin-top: 18px; }
  .banner-headline{ font-size: 28px; }
  .front-features .features-inner{ grid-template-columns: 1fr; }
  .banner-badge img{ max-width: 100%; }
  .banner-badge{ height: 40%; right: 20%; }
  .front-dish-gallery{ overflow: visible; }
  .dish-gallery-bg-wrap{ overflow: visible; }
  .dish-gallery-cards-wrap{ overflow-x: auto; overflow-y: visible; }
  .front-next-section .next-description.theme-red .next-text{ font-size: 18px; }
  .front-next-section .next-left,
  .front-next-section .next-right{ width: 100%; }
  .front-next-section .flip-card{ width: 100%; aspect-ratio: 4/3; }
  .front-next-section .flip-inner{ height: 100%; }
  .front-next-section .flip-front,
  .front-next-section .flip-back{ position: absolute; inset: 0; }
  .front-next-section .flip-front img,
  .front-next-section .flip-back img{ width: 100%; height: 100%; object-fit: cover; }
  .front-three-features .features-grid{ grid-template-columns: 1fr; }
  .feature-card .card-image img{ height: 220px; }
  .front-about-section .about-cards{ grid-template-columns: 1fr; }
}

