/*-----------------------------------*\
  #index.css
\*-----------------------------------*/

/**
 * 
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * COLORS
   */

  --gold-crayola: hsl(38, 61%, 73%);
  --quick-silver: hsla(0, 0%, 65%, 1);
  --davys-grey: hsla(30, 3%, 34%, 1);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-2: hsla(30, 8%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-2: hsla(210, 4%, 11%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --eerie-black-4: hsla(0, 0%, 13%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  --white-alpha-10: hsla(0, 0%, 100%, 0.1);
  --black: hsla(0, 0%, 0%, 1);
  --black-alpha-80: hsla(0, 0%, 0%, 0.8);
  --black-alpha-15: hsla(0, 0%, 0%, 0.15);

  /**
   * GRADIENT COLOR
   */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%, transparent 66.66% 75%);
  --gradient-1: linear-gradient(to top, hsla(0, 0%, 0%, 0.9), hsla(0, 0%, 0%, 0.7), transparent);

  /**
   * TYPOGRAPHY
   */

  /* font-family */
  --fontFamily-forum: 'Forum', cursive;
  --fontFamily-dm_sans: 'DM Sans', sans-serif;

  /* font-size */
  --fontSize-display-1: calc(1.3rem + 6.7vw);
  --fontSize-headline-1: calc(2rem + 2.5vw);
  --fontSize-headline-2: calc(1.3rem + 2.4vw);
  --fontSize-title-1: calc(1.6rem + 1.2vw);
  --fontSize-title-2: 2.2rem;
  --fontSize-title-3: 2.1rem;
  --fontSize-title-4: calc(1.6rem + 1.2vw);
  --fontSize-body-1: 2.4rem;
  --fontSize-body-2: 1.6rem;
  --fontSize-body-3: 1.8rem;
  --fontSize-body-4: 1.6rem;
  --fontSize-label-1: 1.4rem;
  --fontSize-label-2: 1.2rem;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-1: 1em;
  --lineHeight-2: 1.2em;
  --lineHeight-3: 1.5em;
  --lineHeight-4: 1.6em;
  --lineHeight-5: 1.85em;
  --lineHeight-6: 1.4em;

  /* letter-spacing */
  --letterSpacing-1: 0.15em;
  --letterSpacing-2: 0.4em;
  --letterSpacing-3: 0.2em;
  --letterSpacing-4: 0.3em;
  --letterSpacing-5: 3px;

  /**
   * SPACING
   */

  --section-space: 70px;

  /**
   * SHADOW
   */

  --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);

  /**
   * BORDER RADIUS
   */

  --radius-24: 24px;
  --radius-circle: 50%;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
data,
span,
input,
button,
select,
ion-icon,
textarea {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--eerie-black-1);
  color: var(--white);
  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow: hidden;
  margin: 0;
  padding: 0;
}

body.loaded {
  overflow: overlay;
}

body.nav-active {
  overflow: hidden;
}

/* Hide header and topbar when page is not loaded */
body:not(.loaded) .header,
body:not(.loaded) .topbar {
  display: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold-crayola);
}





/*-----------------------------------*\
  #TYPOGRAPHY
\*-----------------------------------*/

.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
  color: var(--white);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.display-1 {
  font-size: var(--fontSize-display-1);
  line-height: var(--lineHeight-1);
}

.headline-1 {
  font-size: var(--fontSize-headline-1);
}

.headline-2 {
  font-size: var(--fontSize-headline-2);
  line-height: var(--lineHeight-6);
}

.title-1 {
  font-size: var(--fontSize-title-1);
}

.title-2 {
  font-size: var(--fontSize-title-2);
}

.title-3 {
  font-size: var(--fontSize-title-3);
}

.title-4 {
  font-size: var(--fontSize-title-4);
}

.body-1 {
  font-size: var(--fontSize-body-1);
  line-height: var(--lineHeight-6);
}

.body-2 {
  font-size: var(--fontSize-body-2);
  line-height: var(--lineHeight-4);
}

.body-3 {
  font-size: var(--fontSize-body-3);
}

.body-4 {
  font-size: var(--fontSize-body-4);
}

.label-1 {
  font-size: var(--fontSize-label-1);
}

.label-2 {
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  color: var(--gold-crayola);
  margin-block-end: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

#contact-video {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 992px) {
  #contact-video {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-crayola);
  transform: rotate(45deg);
}

.contact-label {
  font-weight: var(--weight-bold);
}

.contact-number {
  color: var(--gold-crayola);
  max-width: max-content;
  margin-inline: auto;
}

.hover-underline {
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--gold-crayola);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-number::after {
  bottom: -5px;
}

.text-center {
  text-align: center;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.section-subtitle::after {
  content: url('../images/separator.svg');
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}

.btn {
  position: relative;
  color: var(--gold-crayola);
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid var(--gold-crayola);
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--gold-crayola);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text {
  transition: var(--transition-1);
}

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before {
  bottom: -50%;
}

.btn:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--gold-crayola);
  color: var(--black);
}

.btn-secondary::before {
  background-color: var(--smoky-black-1);
}

.btn-secondary .text-2 {
  color: var(--white);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  z-index: 1;
}

.bg-black-10 {
  background-color: var(--smoky-black-2);
}

.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine {
  position: relative;
}

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

.btn-text {
  color: var(--gold-crayola);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) {
  color: var(--white);
}

.shape {
  display: none;
  position: absolute;
  max-width: max-content;
  z-index: -1;
}

.w-100 {
  width: 100%;
}

.move-anim {
  animation: move 5s linear infinite;
}

@keyframes move {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.input-field {
  background-color: var(--eerie-black-2);
  color: var(--white);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid var(--white-alpha-10);
  margin-block-end: 20px;
  outline: none;
  transition: border-color var(--transition-2);
}

.input-field::placeholder {
  color: inherit;
}

.input-field:focus {
  border-color: var(--gold-crayola);
}

.icon-wrapper {
  position: relative;
  margin-block-end: 20px;
}

.icon-wrapper .input-field {
  margin-block-end: 0;
  padding-inline-start: 40px;
  appearance: none;
  cursor: pointer;
}

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  --ionicon-stroke-width: 50px;
  pointer-events: none;
}

.icon-wrapper ion-icon:first-child {
  left: 15px;
}

.icon-wrapper ion-icon:last-child {
  right: 10px;
}


.circle {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-circle);
  border: 3px solid var(--white);
  border-block-start-color: var(--smoky-black-3);
  margin-block-end: 45px;
  animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}

.preload .text {
  background-image: var(--loading-text-gradient);
  background-size: 500%;
  font-size: calc(2rem + 3vw);
  font-weight: var(--weight-bold);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 16px;
  padding-inline-start: 16px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px var(--eerie-black-3);
  animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

/* Isolate header from hero section */
.header,
.header * {
  box-sizing: border-box;
}

.header .btn {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  z-index: 1000;
  background-color: transparent;
  /* Transparent background */
  border-block-end: 1px solid transparent;
  /* Remove border */
  transition: var(--transition-1);
  /* Hide until load */
  opacity: 0;
  visibility: hidden;
}

.header.active {
  background-color: var(--eerie-black-4);
  border-color: var(--black-alpha-15);
  padding-block: 20px;
  backdrop-filter: blur(10px);
}

body.loaded .header {
  opacity: 1;
  visibility: visible;
}

/* Desktop-only glassmorphism navbar */
@media (min-width: 992px) {
  .header {
    top: 0;
    padding-block: 10px;
    background: rgba(15, 15, 15, 0.55);
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-block-end: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  }


}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}

/* When mobile nav is open, force the header to be visible and remove
   any transform/backdrop-filter that would create a new containing block
   and break the navbar/overlay's position: fixed */
body.nav-active .header {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  backdrop-filter: none !important;
}

body.nav-active .header.hide {
  transform: none !important;
}

.header .container {
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  position: relative;
  z-index: auto;
}

/* Ensure header container doesn't affect hero */
.header .container {
  isolation: isolate;
}

/* Remove isolation when nav is active so navbar z-index works globally */
body.nav-active .header .container {
  isolation: auto;
}

.nav-open-btn {
  padding: 12px;
  padding-inline-end: 0;
  margin-right: 30px;

}

.nav-open-btn .line {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 400ms ease-in-out alternate infinite;
}

@keyframes menuBtn {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.5);
  }
}

.nav-open-btn .line-2 {
  animation-delay: 150ms;
}

.nav-open-btn .line-3 {
  animation-delay: 300ms;
}

.navbar {
  position: fixed;
  background-color: var(--smoky-black-1);
  top: 0;
  left: -360px;
  bottom: 0;
  max-width: 360px;
  width: 100%;
  padding-inline: 30px;
  padding-block-end: 50px;
  overflow-y: auto;
  visibility: hidden;
  z-index: 1002;
  transition: var(--transition-2);
  isolation: isolate;
}

.navbar.active {
  visibility: visible;
  transform: translateX(360px);
}

.navbar .close-btn {
  color: var(--white);
  border: 1px solid currentColor;
  padding: 4px;
  border-radius: var(--radius-circle);
  margin-inline-start: auto;
  margin-block: 30px 20px;
}

.navbar .close-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.navbar .close-btn:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 60px;
}

.navbar-list {
  border-block-end: 1px solid var(--white-alpha-20);
  margin-block-end: 100px;
}

.navbar-item {
  border-block-start: 1px solid var(--white-alpha-20);
}

.navbar-link {
  position: relative;
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  padding-block: 10px;
  max-width: unset;
}

.navbar-link::after {
  display: none;
}

.navbar-link .span {
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .span {
  color: var(--gold-crayola);
  transform: translateX(20px);
}

.navbar-link .separator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .separator {
  opacity: 1;
}

.navbar-title {
  margin-block-end: 15px;
}

.navbar-text {
  margin-block: 10px;
}

.navbar .body-4 {
  color: var(--quick-silver);
}

.sidebar-link {
  transition: var(--transition-1);
}

.sidebar-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .text-center .separator {
  margin-block: 30px;
  margin-inline: auto;
}

.navbar .contact-label {
  margin-block-end: 10px;
}

.navbar::-webkit-scrollbar-thumb {
  background-color: var(--white-alpha-10);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--black-alpha-80);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
  z-index: 1001;
  isolation: isolate;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero .slider-btn {
  display: none;
}

.hero {
  position: relative;
  padding-block: 120px;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.hero .slider-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-block-start: 100px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-3);
  z-index: 1;
}

.hero .slider-item.active {
  opacity: 1;
  visibility: visible;
}

.hero .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.hero .slider-item.active .slider-bg {
  animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero .section-subtitle::after {
  margin-block: 14px 20px;
}

.hero-text {
  margin-block: 10px 40px;
}

.hero .btn {
  margin-inline: auto;
}

.hero-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  background-color: var(--gold-crayola);
  width: 110px;
  height: 110px;
  padding: 12px;
  transform: scale(0.6);
}

.hero-btn img {
  margin-inline: auto;
  margin-block-end: 6px;
}

.hero-btn .span {
  color: var(--black);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-1);
  line-height: var(--lineHeight-3);
}

.hero-btn::after {
  inset: 0;
  border: 1px solid var(--gold-crayola);
  animation: rotate360 15s linear infinite;
}

.slider-reveal {
  transform: translateY(30px);
  opacity: 0;
}

.hero .slider-item.active .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero .slider-item.active .section-subtitle {
  animation-delay: 500ms;
}

.hero .slider-item.active .hero-title {
  animation-delay: 1000ms;
}

.hero .slider-item.active .hero-text {
  animation-delay: 1.5s;
}

.hero .slider-item.active .btn {
  animation-delay: 2s;
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service .section-title {
  margin-block-end: 16px;
}

.service .section-text {
  margin-block-end: 40px;
}

.service-card {
  overflow: hidden;
}

.service-card .has-before {
  padding-block: 30px;
  margin-block-end: 26px;
  z-index: 1;
}

.service-card .has-before::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 100%;
  background-image: url('../images/img-pattern.svg');
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
  transition: var(--transition-2);
  transition-delay: 0;
  z-index: -1;
  will-change: transform;
}

.service-card:is(:hover, :focus-within) .has-before::before {
  transform: rotateY(0.5turn) translateX(50%);
  transition-delay: 300ms;
}

.service-card .card-banner {
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-within) .card-banner {
  transform: scale(1.05);
}

.service .card-title {
  margin-block-end: 12px;
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .section-text {
  margin-block: 15px 30px;
}

.about .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.about .container {
  display: grid;
  gap: 120px;
}

.about-banner {
  position: relative;
  margin-block-end: 120px;
}

.about-banner>.w-100 {
  padding-inline-start: 50px;
}

.about .abs-img {
  position: absolute;
}

.about .abs-img::before {
  z-index: -1;
}

.about .abs-img-1 {
  bottom: -120px;
  left: 0;
  width: 150px;
  padding-block: 50px;
}

.about .abs-img-2 {
  top: -65px;
  right: 0;
  overflow: hidden;
}

.about .abs-img-1::before {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  background-image: url('../images/img-pattern.svg');
  background-repeat: repeat;
}

.about .abs-img-2::before {
  inset: 0;
  background-image: url('../images/badge-2-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  animation: rotate360 15s linear infinite;
}





/*-----------------------------------*\
  #SPECIAL DISH
\*-----------------------------------*/

.special-dish {
  position: relative;
  display: grid;
  gap: 0;
}

@media (min-width: 992px) {
  .special-dish {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
  }
}

.special-dish-banner {
  height: 100%;
  overflow: hidden;
}

.special-dish-banner img,
.chef-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  /* Increased scale to cover parallax shifts */
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.special-dish-content {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .special-dish-content {
    margin-inline-start: -10vw;
    background-color: var(--smoky-black-2);
    border: 1px solid var(--white-alpha-10);
    backdrop-filter: blur(20px);
    padding: 100px 60px;
    box-shadow: var(--shadow-1);
  }
}

.special-dish .abs-img {
  margin-inline: auto;
  margin-block-end: 20px;
  animation: rotate-360 20s linear infinite;
}

@keyframes rotate-360 {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.special-dish .section-text {
  margin-block: 20px 35px;
  color: var(--quick-silver);
  max-width: 50ch;
  margin-inline: auto;
}

.special-dish-content .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-block-end: 40px;
}

.special-dish-content .del {
  text-decoration: none;
  color: var(--davys-grey);
  font-size: var(--fontSize-body-3);
  position: relative;
}

.special-dish-content .del::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.special-dish-content .span {
  color: var(--gold-crayola);
  font-family: var(--fontFamily-forum);
  font-size: var(--fontSize-title-1);
}

.special-dish .btn {
  margin-inline: auto;
}


/*-----------------------------------*\
  #CHEFS
\*-----------------------------------*/

.chefs .section-title {
  margin-block-end: 20px;
}

.chefs .section-text {
  max-width: 560px;
  margin-inline: auto;
  margin-block-end: 60px;
  color: var(--quick-silver);
}

.chef-card {
  position: relative;
  background-color: var(--smoky-black-3);
  border-radius: var(--radius-24);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.chef-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black-alpha-80) 0%, transparent 40%);
  opacity: 0;
  z-index: 1;
  transition: var(--transition-2);
}

.chef-card:hover {
  transform: translateY(-10px);
}

.chef-card:hover::before {
  opacity: 1;
}

.chef-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 285 / 320;
}

.chef-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chef-card:hover .chef-photo img {
  transform: scale(1.1);
}

.chef-content {
  padding: 30px 25px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition-2);
}

.chef-card:hover .chef-content {
  transform: translateY(-5px);
}

.chef-name {
  margin-block-end: 8px;
  transition: var(--transition-1);
}

.chef-card:hover .chef-name {
  color: var(--gold-crayola);
}

.chef-role {
  color: var(--gold-crayola);
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-3);
  margin-block-end: 15px;
  font-size: var(--fontSize-label-2);
}

.chef-bio {
  color: var(--quick-silver);
  font-size: var(--fontSize-body-4);
  line-height: var(--lineHeight-4);
  opacity: 0.8;
  transition: var(--transition-2);
}

.chef-card:hover .chef-bio {
  opacity: 1;
}




/*-----------------------------------*\
  #MENU (index.html card styles)
\*-----------------------------------*/

.menu .section-title {
  margin-block-end: 40px;
}

.menu .grid-list {
  margin-block-end: 50px;
}

.menu-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hover\:card .card-banner {
  background-color: var(--gold-crayola);
}

.hover\:card .card-banner .img-cover {
  transition: var(--transition-2);
}

.hover\:card:is(:hover, :focus-within) .card-banner .img-cover {
  opacity: 0.7;
  transform: scale(1.05);
}

.menu-card .card-banner {
  flex-shrink: 0;
  border-radius: var(--radius-24);
}

.menu-card .card-title {
  transition: var(--transition-1);
}

.menu-card .card-title:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.menu-card .badge {
  background-color: var(--gold-crayola);
  color: var(--eerie-black-1);
  font-family: var(--fontFamily-forum);
  max-width: max-content;
  line-height: var(--lineHeight-6);
  text-transform: uppercase;
  padding-inline: 10px;
  margin-block-start: 10px;
}

.menu-card .span {
  color: var(--gold-crayola);
  margin-block: 10px;
}

.menu-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-4);
}

.menu-text .span {
  display: inline-block;
  color: var(--gold-crayola);
}

.menu .shape {
  display: block;
  width: 70%;
}

.menu .shape-2 {
  top: 0;
  left: 0;
}

.menu .shape-3 {
  bottom: 0;
  right: 0;
}




/*-----------------------------------*\
  #MENU PAGE - CATEGORY SECTIONS
\*-----------------------------------*/

/* ---- Category Section Wrapper ---- */
.menu-category-section {
  margin-block-end: 70px;
}

/* ---- Category Header: image + title block ---- */
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-block-end: 30px;
  padding: 20px 24px;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent, #c8893a) 15%, var(--eerie-black-1)) 0%,
      var(--eerie-black-1) 100%);
  border: 1px solid color-mix(in srgb, var(--accent, #c8893a) 35%, transparent);
  border-radius: var(--radius-24);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.menu-category-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      color-mix(in srgb, var(--accent, #c8893a) 8%, transparent),
      transparent 60%);
  pointer-events: none;
}

/* ---- Category Image ---- */
.menu-category-image-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-24);
  overflow: hidden;
  position: relative;
  border: 2px solid color-mix(in srgb, var(--accent, #c8893a) 50%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent, #c8893a) 30%, transparent);
}

.menu-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.menu-category-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      color-mix(in srgb, var(--accent, #c8893a) 25%, transparent),
      transparent);
}

.menu-category-header:hover .menu-category-img {
  transform: scale(1.08);
}

/* ---- Category Title + Count ---- */
.menu-category-header-text {
  flex: 1;
  z-index: 1;
}

.menu-category-name {
  font-family: var(--fontFamily-forum);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-block-end: 6px;
}

.menu-category-count {
  font-size: var(--fontSize-label-2);
  color: color-mix(in srgb, var(--accent, #c8893a) 90%, var(--white));
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--weight-bold);
}

/* ---- Menu Items: Multi-column text list ---- */
.menu-text-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .menu-text-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }
}

.menu-item-text-only {
  padding-block: 16px;
  border-bottom: 1px solid var(--white-alpha-10);
  transition: background var(--transition-1);
}

.menu-item-text-only:last-child {
  border-bottom: none;
}

.menu-item-text-only:hover {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding-inline: 8px;
  margin-inline: -8px;
}

/* ---- Item Header row (name + dotted leader + price) ---- */
.menu-item-header {
  display: flex;
  align-items: center;
  gap: 0;
  margin-block-end: 6px;
}

.menu-item-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  max-width: 65%;
}

.menu-item-name {
  font-family: var(--fontFamily-forum);
  font-size: var(--fontSize-title-3);
  color: var(--gold-crayola);
  line-height: 1.2;
  cursor: default;
  transition: color var(--transition-1);
}

.menu-item-text-only:hover .menu-item-name {
  color: var(--white);
}

.menu-item-badge {
  background-color: var(--gold-crayola);
  color: var(--eerie-black-1);
  font-size: 0.6rem;
  font-weight: var(--weight-bold);
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-leader {
  flex: 1;
  border-bottom: 1px dashed var(--white-alpha-20);
  margin-inline: 10px;
  position: relative;
  top: 1px;
  min-width: 20px;
}

.menu-item-price {
  color: var(--white);
  font-family: var(--fontFamily-forum);
  font-size: var(--fontSize-title-3);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.menu-item-desc {
  color: var(--quick-silver);
  font-size: var(--fontSize-body-4);
  line-height: var(--lineHeight-4);
  margin-block-end: 8px;
}

/* ---- Add / Qty controls ---- */
.menu-item-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-item-add-btn {
  background-color: transparent;
  color: var(--gold-crayola);
  border: 1px solid color-mix(in srgb, var(--gold-crayola) 60%, transparent);
  padding: 3px 14px;
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: var(--transition-1);
  cursor: pointer;
}

.menu-item-add-btn:hover {
  background-color: var(--gold-crayola);
  color: var(--black);
  border-color: var(--gold-crayola);
}

/* qty buttons reuse already existing .qty-btn styles */

.menu .btn {
  margin-inline: auto;
  margin-block-start: 40px;
}





/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

.testi {
  padding-block-end: 200px;
  position: static;
}

.testi .quote {
  font-size: 7rem;
  font-family: var(--fontFamily-forum);
  line-height: 0.7em;
}

.testi .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 50px;
}

.testi .separator {
  animation: rotate360 15s linear infinite;
}

.profile .img {
  margin-inline: auto;
  border-radius: var(--radius-circle);
  margin-block-end: 15px;
}

.testi .profile-name {
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
}





/*-----------------------------------*\
  #RESERVATION
\*-----------------------------------*/

.reservation-form {
  margin-block-start: 0;
}

.form-text {
  margin-block-end: 40px;
}

.form-text .link {
  display: inline;
  color: var(--gold-crayola);
}

.form-right .headline-1 {
  margin-block-end: 40px;
}

.form-right .contact-label {
  margin-block-end: 5px;
}

.form-right .separator {
  margin: 20px auto;
}

.form-right .body-4 {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.form-right .body-4:not(:last-child) {
  margin-block-end: 25px;
}

.form-left,
.form-right {
  padding: 40px 20px 30px;
}

.input-field[type="date"] {
  text-transform: uppercase;
  padding-inline-end: 10px;
}

.input-field[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

textarea.input-field {
  resize: none;
  height: 140px;
  padding-block: 20px;
  line-height: var(--lineHeight-1);
}

.form-left .btn {
  max-width: 100%;
  width: 100%;
}

.form-right {
  background-repeat: repeat;
  background-position: top left;
}

/* Glassmorphism for Contact Section */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: var(--radius-24);
  overflow: hidden;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block-end: 30px;
  text-align: left;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white-alpha-10);
  color: var(--gold-crayola);
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  border-radius: var(--radius-circle);
  flex-shrink: 0;
  transition: var(--transition-1);
}

.contact-info-item:hover .contact-info-icon {
  background-color: var(--gold-crayola);
  color: var(--black);
}

.contact-content {
  flex-grow: 1;
}

.contact-info-item .contact-label {
  margin-block-end: 2px;
  color: var(--gold-crayola);
}

.contact-info-item .body-4,
.contact-info-item .contact-number {
  margin-inline: 0;
  color: var(--white);
}

.video-container {
  border-radius: var(--radius-24);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--white-alpha-10);
}





/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/

.features .section-title {
  margin-block-end: 40px;
}

.feature-card {
  padding: 30px 20px 40px;
}

.feature-item:nth-child(2n+1) .feature-card {
  background-color: var(--eerie-black-3);
}

.feature-item:nth-child(2n) .feature-card {
  background-color: var(--smoky-black-3);
}

.feature-card .card-icon {
  max-width: max-content;
  margin-inline: auto;
  transition: var(--transition-2);
}

.feature-card:hover .card-icon {
  transform: scale(-1) rotate(180deg);
}

.feature-card .card-title {
  margin-block: 20px;
}

.feature-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-6);
}





/*-----------------------------------*\
  #EVENT
\*-----------------------------------*/

.event .section-title {
  margin-block-end: 40px;
}

.event-card {
  position: relative;
  overflow: hidden;
}

.event-card .card-content {
  background-image: var(--gradient-1);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 35px 35px 25px;
}

.event-card .publish-date {
  position: absolute;
  top: 30px;
  left: 25px;
  padding: 5px 10px;
  color: var(--gold-crayola);
  background-color: var(--black);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-1);
  line-height: 14px;
}

.event-card .card-subtitle {
  color: var(--gold-crayola);
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 5px;
}

.event-card .card-banner .img-cover {
  transition: var(--transition-2);
}

.event-card:is(:hover, :focus-within) .img-cover {
  transform: scale(1.05);
}

.event .btn {
  margin-inline: auto;
  margin-block-start: 40px;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  margin-block-end: 70px;
}

.footer-brand {
  position: relative;
  padding: 50px 40px;
  background: var(--smoky-black-1) url("../images/footer-form-bg.png");
  background-position: center top;
  background-repeat: repeat;
}

.footer-brand::before,
.footer-brand::after {
  top: 0;
  width: 15px;
  height: 100%;
  background-image: url("../images/footer-form-pattern.svg");
}

.footer-brand::before {
  left: 0;
}

.footer-brand::after {
  right: 0;
}

.footer-brand .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 40px;
}

.footer-brand :is(.body-4, .label-1) {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.footer-brand .contact-link {
  margin-block: 6px;
  transition: var(--transition-1);
}

.footer-brand .contact-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.footer-brand .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 25px;
}

.footer-brand .separator {
  animation: rotate360 15s linear infinite;
}

.footer-brand .label-1 {
  margin-block-end: 30px;
}

.footer-brand .label-1 .span {
  display: inline;
  color: var(--white);
}

.footer-brand .icon-wrapper .input-field {
  cursor: text;
}

.footer-brand .btn {
  min-width: 100%;
}

.footer-list {
  display: grid;
  gap: 20px;
}

.footer-link {
  color: var(--quick-silver);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-4);
  margin-inline: auto;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.copyright {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.copyright .link {
  display: inline;
  color: var(--gold-crayola);
  text-decoration: underline;
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--gold-crayola);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-number {
    --fontSize-body-1: 3rem;
  }



  /**
   * TOPBAR
   */

  .topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    padding-block: 8px;
    background-color: transparent;
    /* Transparent topbar */
    border-block-end: 1px solid transparent;
    z-index: 1002;
    transition: var(--transition-1);
    /* Hide until load */
    opacity: 0;
    visibility: hidden;
  }

  body.loaded .topbar {
    opacity: 1;
    visibility: visible;
  }

  .topbar:has(~ .header.active) {
    transform: translateY(-100%);
  }

  .topbar-item:not(.link),
  .topbar .separator {
    display: none;
  }

  .topbar .container,
  .topbar-item {
    display: flex;
    align-items: center;
  }

  .topbar .container {
    justify-content: center;
    gap: 30px;
  }

  .topbar-item {
    gap: 6px;
  }

  .topbar-item ion-icon {
    --ionicon-stroke-width: 60px;
  }

  .topbar-item .span {
    font-size: var(--fontSize-label-1);
  }

  .topbar .link {
    transition: var(--transition-1);
  }

  .topbar .link:is(:hover, :focus-visible) {
    color: var(--gold-crayola);
  }



  /**
   * HEADER
   */

  .header {
    top: 0;
  }

  .header.active {
    top: 0;
  }

  .header .btn {
    display: block;
    margin-inline-start: auto;
  }



  /**
   * HERO
   */

  .hero-btn {
    transform: scale(0.7);
  }



  /**
   * SERVICE
   */

  .service .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about .container {
    gap: 80px;
  }

  .about-banner>.w-100 {
    padding-inline-start: 90px;
  }

  .about .abs-img-1 {
    width: 285px;
  }

  .about .contact-number {
    --fontSize-body-1: 2.4rem;
  }



  /**
   * MENU
   */

  .menu-card .title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .menu-card .badge {
    margin-block-start: 0;
  }

  .menu-card .span {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .menu-card .span::before {
    content: "";
    height: 6px;
    flex-grow: 1;
    border-block: 1px solid var(--white-alpha-20);
  }



  /**
   * EVENT
   */

  .event .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .footer-brand>* {
    max-width: 460px;
    margin-inline: auto;
  }

  .footer .input-wrapper {
    position: relative;
  }

  .footer .input-field {
    margin-block-end: 0;
    padding-inline-end: 205px;
  }

  .footer-brand .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: max-content;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  :is(.service, .event) .container {
    max-width: 820px;
  }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .navbar-list {
    margin-inline: 30px;
  }



  /**
   * HERO
   */

  .hero .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: var(--gold-crayola);
    font-size: 2.4rem;
    border: 1px solid var(--gold-crayola);
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
  }

  .hero .slider-btn ion-icon {
    transform: rotate(-45deg);
  }

  .hero .slider-btn.prev {
    left: 30px;
  }

  .hero .slider-btn.next {
    right: 30px;
  }

  .hero .slider-btn:is(:hover, :focus-visible) {
    background-color: var(--gold-crayola);
    color: var(--black);
  }



  /**
   * RESERVATION
   */

  .reservation .input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .reservation .input-wrapper:nth-child(4) {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * FOOTER
   */

  .footer-brand {
    grid-column: 1 / 3;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-space: 100px;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container {
    max-width: unset;
  }

  :is(.service, .chefs, .event) .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }



  /**
   * TOPBAR
   */

  .topbar-item:not(.link) {
    display: flex;
  }

  .topbar .item-2 {
    margin-inline-end: auto;
  }



  /**
   * SERVICE
   */

  .service .shape {
    display: block;
  }

  .service .shape-1 {
    bottom: 0;
    left: 0;
  }

  .service .shape-2 {
    top: 0;
    right: 0;
  }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 0.7fr 1fr;
    gap: 30px;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .special-dish-content {
    padding-inline: 50px 25px;
  }

  .special-dish-content .container {
    position: relative;
  }

  .special-dish .section-subtitle::after,
  .special-dish .btn {
    margin-inline: 0;
  }

  .special-dish-content .wrapper {
    justify-content: flex-start;
  }

  .special-dish .abs-img {
    position: absolute;
    top: 10px;
    left: -40px;
    animation: move 5s linear infinite;
  }



  /**
   * MENU
   */

  .menu .grid-list {
    position: relative;
    column-gap: 90px;
  }

  .menu .grid-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-inline-start: 1px solid var(--white-alpha-20);
  }



  /**
   * TESTIMONIALS
   */

  .testi-text {
    max-width: 910px;
    margin-inline: auto;
  }



  /**
   * RESERVATION
   */

  .reservation-form {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
  }



  /**
   * FOOTER
   */

  .footer .grid-list {
    grid-template-columns: 0.45fr 1fr 0.45fr;
    align-items: center;
  }

  .footer-brand {
    grid-column: auto;
    order: 1;
    padding-block: 100px;
  }

  .footer-list:last-child {
    order: 2;
  }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-title-2: 2.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * TOPBAR
   */

  .topbar .container {
    max-width: unset;
  }

  .topbar .separator {
    display: block;
  }



  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar>*:not(.navbar-list),
  .header .overlay {
    display: none;
  }

  .header .container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
  }

  .navbar,
  .navbar.active {
    margin-inline: auto;
  }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar .separator {
    display: none;
  }

  .navbar-link:is(:hover, :focus-visible, .active) .span {
    transform: unset;
  }

  .navbar-link {
    font-weight: var(--weight-bold);
    letter-spacing: var(--letterSpacing-1);
  }

  .navbar-link::after {
    display: block;
  }

  .navbar-link.active::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .header .btn {
    margin-inline-start: 0;
  }



  /**
   * HERO
   */

  .hero {
    height: 880px;
  }

  .hero-btn {
    bottom: 50px;
    right: 50px;
    transform: scale(1);
  }



  /**
   * SERVICE
   */

  .service .grid-list {
    gap: 150px;
  }

  .service .grid-list li:nth-child(2n+1) {
    transform: translateY(-160px);
  }

  .service .section-text {
    margin-block-end: 75px;
  }



  /**
   * ABOUT
   */

  .about {
    padding-block: 170px 100px;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish-content {
    padding: 150px 100px;
    padding-inline-end: 0;
  }

  .special-dish-content .container {
    max-width: 460px;
    margin-inline: 0;
  }



  /**
   * MENU
   */

  .menu .grid-list {
    gap: 55px 200px;
    margin-block-end: 55px;
  }



  /**
   * TESTIMONIALS
   */

  .form-left,
  .form-right {
    padding: 75px 60px;
  }




  /**
   * FEATURES
   */

  .features .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

}





/**
 * responsive for larger than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * HEADER
   */

  .navbar {
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about-content {
    padding-inline-end: 90px;
  }

  .about .shape {
    display: block;
    top: 46%;
    left: 0;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish {
    overflow: visible;
    position: relative;
  }

  .special-dish .shape {
    display: block;
    right: 0;
    z-index: 1;
  }

  .special-dish .shape-1 {
    top: 45%;
  }

  .special-dish .shape-2 {
    bottom: 0;
    transform: translateY(50%);
    width: max-content;
  }



  /**
   * FEATURES
   */

  .features {
    overflow: visible;
  }

  .features .shape {
    display: block;
  }

  .features .shape-1 {
    top: -100px;
    right: 0;
  }

  .features .shape-2 {
    bottom: 80px;
    left: 0;
  }

}

/*-----------------------------------*\
  #HERO 3D
\*-----------------------------------*/

/* Isolate hero section from header */
.hero-3d,
.hero-3d * {
  margin-top: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent header styles from affecting hero - hero-3d-content has its own padding system */

.hero-3d {
  position: relative;
  background-color: var(--eerie-black-1);
  background-image: url('../images/copper_chimney_hero_branded.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: visible;
  height: 100vh;
  min-height: 700px;
  display: flex !important;
  /* Ensure it's not hidden */
  align-items: center;
  z-index: 1;
}

.hero-3d::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
  pointer-events: none;
}

#hero-3d-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-3d-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Centered vertically as requested */
  align-items: flex-start;
  pointer-events: none;
  padding-left: 5%;
  padding-right: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  isolation: isolate;
  box-sizing: border-box;
  opacity: 1;
}

.hero-3d-content>* {
  box-sizing: border-box;
}

.hero-3d-content .section-subtitle,
.hero-3d-content .hero-title,
.hero-3d-content .hero-text {
  width: 100%;
  max-width: 100%;
}

/* Ensure hero-3d-content is completely independent from header */
.hero-3d-content * {
  position: relative;
  z-index: auto;
}

/* Prevent any header styles from leaking into hero */
.hero-3d .header,
.hero-3d .navbar,
.hero-3d .overlay {
  display: none !important;
}

/* Prevent any hero styles from affecting header */
.header .hero-3d,
.header .hero-3d-content,
.header #hero-3d-container,
.header #hero-canvas {
  display: none !important;
}

/* Delivery section styles */
#delivery-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  background-color: transparent;
  /* Reset delivery background */
}

.delivery-img {
  display: none;
}

@media (min-width: 575px) {
  .hero-3d-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-3d-content .section-subtitle,
  .hero-3d-content .hero-title,
  .hero-3d-content .hero-text {
    text-align: left;
    align-self: flex-start;
  }
}

@media (min-width: 768px) {
  .hero-3d-content {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hero-3d-content .section-subtitle,
  .hero-3d-content .hero-title,
  .hero-3d-content .hero-text {
    text-align: left;
    align-self: flex-start;
  }
}

@media (min-width: 992px) {
  .hero-3d-content {
    padding-left: 80px;
    padding-right: 80px;
  }

  .hero-3d-content .section-subtitle,
  .hero-3d-content .hero-title,
  .hero-3d-content .hero-text {
    text-align: left;
    align-self: flex-start;
  }
}

@media (min-width: 1200px) {
  .hero-3d-content {
    padding-left: calc((100vw - 1200px) / 2 + 20px);
    padding-right: 60px;
    max-width: 600px;
  }

  .hero-3d-content>* {
    max-width: 100%;
  }

  .hero-3d-content .hero-text:last-of-type {
    max-width: 550px;
  }
}

.hero-3d-content>* {
  pointer-events: auto;
}

.hero-3d-content .section-subtitle {
  margin-bottom: 20px;
  margin-top: 0;
  display: block;
  width: 100%;
  text-align: left;
  align-self: flex-start;
}

.hero-3d-content .hero-title {
  max-width: 100%;
  width: 100%;
  margin-bottom: 25px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.1;
  text-align: left;
  align-self: flex-start;
  letter-spacing: -2px;
  font-family: 'Playfair Display', serif;
  /* Stylish Font */
  font-weight: 700;
  font-style: italic;
  font-size: calc(var(--fontSize-display-1) * 0.9);
}

.hero-3d-content .hero-text {
  max-width: 100%;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
  text-align: left;
  align-self: flex-start;
}

.hero-3d-content .hero-text:last-of-type {
  max-width: 550px;
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.hero-3d-content .btn {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: auto;
  align-self: flex-start;
}

@media (max-width: 767px) {

  /* =====================
     HERO 3D - MOBILE
     ===================== */

  /* Hide the 3D canvas on mobile */
  #hero-canvas {
    display: none !important;
  }

  .hero-3d {
    min-height: 85vh;
    height: auto;
  }

  .hero-3d-content {
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 120px 24px 60px;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.75) 100%);
  }

  .hero-3d-content .hero-title {
    font-size: calc(var(--fontSize-display-1) * 0.55);
    letter-spacing: -1px;
  }

  .hero-3d-content .hero-text {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .hero-3d-content .section-subtitle,
  .hero-3d-content .hero-title,
  .hero-3d-content .hero-text {
    max-width: 100%;
    width: 100%;
    text-align: center;
    align-self: center;
  }

  .hero-3d-content .hero-text:last-of-type {
    max-width: 100%;
    width: 100%;
  }

  .hero-3d-content .btn {
    align-self: center;
    margin: 20px auto 0;
  }

  /* =====================
     SERVICE - MOBILE
     ===================== */

  .service .container {
    max-width: 100%;
    padding-inline: 20px;
  }

  .service .grid-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service .grid-list li:nth-child(2n+1) {
    transform: none;
  }

  .service .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }

  .service .section-text {
    margin-block-end: 30px;
    max-width: 100%;
  }

  .service-card .has-before {
    padding-block: 20px;
    margin-block-end: 20px;
  }

  /* =====================
     ABOUT - MOBILE
     ===================== */

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-banner {
    margin-block-end: 60px;
  }

  .about-banner>.w-100 {
    padding-inline-start: 30px;
  }

  .about .abs-img-1 {
    width: 120px;
    bottom: -60px;
  }

  .about .abs-img-2 {
    top: -40px;
  }

  .about .section-text {
    max-width: 100%;
  }

  /* =====================
     CHEFS - MOBILE
     ===================== */

  .chefs .grid-list {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin-inline: auto;
  }

  .chefs .section-text {
    max-width: 100%;
    margin-block-end: 30px;
  }

  .chef-content {
    padding: 20px 16px;
  }

  .chef-card:hover {
    transform: none;
  }

  /* =====================
     SPECIAL DISH - MOBILE
     ===================== */

  .special-dish {
    grid-template-columns: 1fr;
  }

  .special-dish-banner {
    max-height: 300px;
  }

  .special-dish-content {
    padding: 50px 20px;
  }

  .special-dish .section-text {
    max-width: 100%;
  }

  /* =====================
     MENU - MOBILE
     ===================== */

  .menu .grid-list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-block-end: 30px;
  }

  .menu .grid-list::before {
    display: none;
  }

  .menu-card {
    gap: 14px;
  }

  .menu-card .card-banner {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

  .menu-card .title-wrapper {
    flex-wrap: wrap;
    gap: 8px;
  }

  .menu .shape {
    display: none;
  }

  /* =====================
     DELIVERY - MOBILE
     ===================== */

  .delivery-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .delivery-copy {
    max-width: 100%;
    order: 1;
  }

  .delivery-panel {
    order: 2;
  }

  /* Hide the 3D canvas on mobile */
  #delivery-canvas {
    display: none !important;
  }

  .delivery-visual {
    min-height: 180px;
    display: none;
  }

  .delivery-stats {
    padding: 12px;
    gap: 8px;
  }

  .delivery-chip {
    min-width: 100px;
    padding: 8px 10px;
  }

  .delivery-steps {
    gap: 10px;
    margin-block-end: 20px;
  }

  .delivery-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .delivery-actions .btn {
    width: 100%;
    text-align: center;
  }

  .delivery-ghost-btn {
    width: 100%;
    text-align: center;
  }

  /* =====================
     TESTIMONIALS - MOBILE
     ===================== */

  .testi {
    padding-block-end: 100px;
  }

  .testi .quote {
    font-size: 5rem;
  }

  .testi-text {
    font-size: calc(var(--fontSize-headline-2) * 0.75);
    max-width: 100%;
  }

  .testi .wrapper {
    margin-block: 24px 30px;
  }

  .profile .img {
    width: 70px;
    height: 70px;
  }

  /* =====================
     RESERVATION - MOBILE
     ===================== */

  .reservation-form {
    grid-template-columns: 1fr;
  }

  .form-left,
  .form-right {
    padding: 30px 16px 24px;
  }

  .reservation .input-wrapper {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reservation .input-wrapper:nth-child(4) {
    grid-template-columns: 1fr;
  }

  textarea.input-field {
    height: 100px;
  }

  /* =====================
     FEATURES - MOBILE
     ===================== */

  .features .grid-list {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .feature-card {
    padding: 20px 14px 28px;
  }

  .feature-card .card-icon img {
    width: 60px;
    height: auto;
  }

  .feature-card .card-title {
    font-size: 1.8rem;
    margin-block: 12px;
  }

  .feature-card .card-text {
    font-size: 1.2rem;
  }

  /* =====================
     EVENT - MOBILE
     ===================== */

  .event .container {
    max-width: 100%;
  }

  .event .grid-list {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin-inline: auto;
  }

  .event .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }

  .event-card .card-content {
    padding: 24px 20px 18px;
  }

  /* =====================
     FOOTER - MOBILE
     ===================== */

  .footer .grid-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
    padding: 30px 20px;
  }

  .footer-brand>* {
    max-width: 100%;
  }

  .footer-brand .logo {
    margin-block-end: 20px;
  }

  .footer-brand .wrapper {
    margin-block: 24px 16px;
  }

  .footer-brand .label-1 {
    margin-block-end: 16px;
  }

  .footer-brand .btn {
    min-width: 100%;
  }

  .footer .input-field {
    padding-inline-end: 15px;
  }

  .footer .input-wrapper {
    flex-direction: column;
    position: relative;
  }

  .footer-brand .btn {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
  }

  .footer-list {
    gap: 14px;
  }

  .footer-top {
    margin-block-end: 40px;
  }

  /* =====================
     MODAL - MOBILE
     ===================== */

  .modal {
    padding: 12px;
  }

  .modal-content {
    padding: 30px 16px;
    max-height: 95vh;
  }

  /* =====================
     BACK TO TOP - MOBILE
     ===================== */

  .back-top-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 15px;
    right: 15px;
  }

  /* =====================
     TOPBAR - MOBILE
     ===================== */

  .topbar {
    display: none !important;
  }

  .header {
    top: 0;
    padding-block: 12px;
  }

  .header.active {
    top: 0;
  }

  /* =====================
     GENERAL - MOBILE
     ===================== */

  .section {
    padding-block: 50px;
  }

  .container {
    padding-inline: 16px;
  }

  .headline-1 {
    font-size: calc(var(--fontSize-headline-1) * 0.8);
  }

  .shape {
    display: none !important;
  }
}

/* =====================
   EXTRA SMALL SCREENS
   ===================== */

@media (max-width: 575px) {

  .hero-3d-content .hero-title {
    font-size: calc(var(--fontSize-display-1) * 0.45);
  }

  .hero-3d-content .hero-text {
    font-size: 1.3rem;
  }

  .hero-3d-content .section-subtitle {
    font-size: var(--fontSize-label-2);
  }

  /* Features: single column on very small */
  .features .grid-list {
    grid-template-columns: 1fr;
  }

  .menu-card .card-banner {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .special-dish-banner {
    max-height: 220px;
  }

  .delivery-chip {
    min-width: 80px;
    font-size: 0.9em;
  }

  .reservation .headline-1 {
    font-size: calc(var(--fontSize-headline-1) * 0.7);
  }
}

/* =====================
   VERY SMALL SCREENS (iPhone SE etc.)
   ===================== */

@media (max-width: 375px) {

  .hero-3d {
    min-height: 80vh;
  }

  .hero-3d-content {
    padding: 100px 16px 40px;
  }

  .hero-3d-content .hero-title {
    font-size: calc(var(--fontSize-display-1) * 0.38);
  }

  .hero-3d-content .hero-text {
    font-size: 1.2rem;
  }

  .headline-1 {
    font-size: calc(var(--fontSize-headline-1) * 0.65);
  }

  .chef-content {
    padding: 14px 12px;
  }

  .form-left,
  .form-right {
    padding: 20px 12px;
  }
}

/* Trigger slider-reveal animations in hero-3d section */
.hero-3d .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

.hero-3d .section-subtitle {
  animation-delay: 500ms;
}

.hero-3d .hero-title {
  animation-delay: 750ms;
}

.hero-3d .hero-text {
  animation-delay: 1000ms;
}

.hero-3d .hero-text:nth-of-type(2) {
  animation-delay: 1250ms;
}

.hero-3d .btn {
  animation-delay: 1500ms;
}

/*-----------------------------------*\
  #MODAL
\*-----------------------------------*/

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--black-alpha-80);
  backdrop-filter: blur(5px);
  z-index: -1;
}

.modal-content {
  background-color: var(--eerie-black-2);
  padding: 50px 30px;
  width: 100%;
  max-width: 600px;
  position: relative;
  border: 1px solid var(--white-alpha-10);
  overflow-y: auto;
  max-height: 90vh;
  transform: translateY(20px);
  transition: var(--transition-2);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--white);
  border: 1px solid var(--white-alpha-20);
  padding: 8px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.modal-close-btn:is(:hover, :focus-visible) {
  background-color: var(--gold-crayola);
  color: var(--black);
}

.modal .reservation-form {
  margin-block-start: 30px;
  display: block;
  /* Override grid from general styles if needed */
  margin: 0;
}

.modal .input-wrapper {
  display: grid;
  gap: 20px;
  margin-block-end: 20px;
}

.modal .input-field {
  margin-block-end: 0;
  color: var(--white);
}

.modal .btn {
  width: 100%;
  margin-inline: auto;
  margin-block-start: 20px;
}

@media (min-width: 768px) {
  .modal .input-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/*-----------------------------------*\
  #DELIVERY – NEW THEME
\*-----------------------------------*/

.delivery {
  position: relative;
  padding-block: var(--section-space);
  z-index: 1;
}

.delivery::before {
  content: "";
  position: absolute;
  inset-inline: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-crayola), transparent);
  opacity: 0.6;
}

.delivery .container {
  position: relative;
  z-index: 2;
}

.delivery-layout {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .delivery-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
  }
}

.delivery-copy {
  max-width: 520px;
}

.delivery-kicker {
  color: var(--gold-crayola);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  margin-block-end: 10px;
}

.delivery-title {
  margin-block-end: 18px;
}

.delivery-text {
  color: var(--quick-silver);
  margin-block-end: 26px;
}

.delivery-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-block-end: 30px;
  border-left: 1px solid var(--white-alpha-10);
  padding-left: 16px;
}

.delivery-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: flex-start;
}

.delivery-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--white-alpha-20);
  font-size: var(--fontSize-label-1);
  letter-spacing: 1px;
  color: var(--gold-crayola);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 70%);
}

.delivery-step-body h3 {
  text-transform: none;
  letter-spacing: 0;
  margin-block-end: 3px;
}

.delivery-step-body p {
  color: var(--quick-silver);
}

.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
}

.delivery-ghost-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--white-alpha-20);
  background-color: transparent;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-size: var(--fontSize-label-2);
  transition: background-color var(--transition-1), color var(--transition-1), border-color var(--transition-1);
}

.delivery-ghost-btn:hover,
.delivery-ghost-btn:focus-visible {
  background-color: var(--white-alpha-10);
  border-color: var(--gold-crayola);
  color: var(--gold-crayola);
}

@media (max-width: 575px) {
  .delivery-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.delivery-panel {
  display: grid;
  gap: 18px;
}

.delivery-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 20px;
}

.delivery-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--white-alpha-10);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  text-align: center;
  min-width: 120px;
}

.delivery-chip span {
  display: block;
  color: var(--quick-silver);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-size: var(--fontSize-label-2);
  margin-block-end: 2px;
}

.delivery-chip p {
  line-height: 1.2;
}

.delivery-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--white-alpha-10);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 70%),
    linear-gradient(160deg, #151515 0%, #050505 60%, #151515 100%);
  min-height: 260px;
}

.delivery-visual canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.delivery-visual-overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 18px;
  background-color: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--white-alpha-10);
  backdrop-filter: blur(14px);
}

.delivery-visual-overlay .label-2 {
  color: var(--gold-crayola);
  margin-block-end: 4px;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
}

.delivery-visual-overlay .body-4 {
  color: var(--quick-silver);
}

@media (min-width: 768px) {
  .delivery-visual {
    min-height: 340px;
  }
}

@media (min-width: 1200px) {
  .delivery-visual {
    min-height: 420px;
  }
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  padding-block: 120px;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.hero-slider .slider-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-block-start: 100px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-3);
  z-index: 1;
}

.hero-slider .slider-item.active {
  opacity: 1;
  visibility: visible;
}

.hero-slider .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.15);
  pointer-events: none;
  user-select: none;
  z-index: -1;
  filter: blur(3px);
  opacity: 0.7;
}

.hero-slider .slider-item.active .slider-bg {
  animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-slider .section-subtitle::after {
  margin-block: 14px 20px;
}

.hero-slider .hero-text {
  margin-block: 10px 40px;
}

.hero-slider .btn {
  margin-inline: auto;
}

.hero-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: var(--white);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--white);
  transition: var(--transition-1);
  z-index: 2;
}

.hero-slider .slider-btn ion-icon {
  font-size: 2rem;
}

.hero-slider .slider-btn.prev {
  left: 20px;
}

.hero-slider .slider-btn.next {
  right: 20px;
}

.hero-slider .slider-btn:is(:hover, :focus-visible) {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-crayola);
  color: var(--gold-crayola);
}

/* Trigger slider-reveal animations in hero slider section */
.hero-slider .slider-reveal {
  animation: sliderReveal 1s ease forwards;
  animation-delay: 500ms;
}

@keyframes sliderReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider .section-subtitle {
  animation-delay: 600ms;
}

.hero-slider .hero-title {
  animation-delay: 700ms;
}

.hero-slider .hero-text {
  animation-delay: 800ms;
}

.hero-slider .btn {
  animation-delay: 900ms;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-slider {
    padding-block: 100px;
    min-height: 90vh;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    padding-block: 60px;
    min-height: 100vh;
  }
  
  .hero-slider .slider-item {
    padding-block-start: 50px;
    width: 90%;
    max-width: 400px;
    margin-inline: auto;
  }
  
  .hero-slider .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .hero-slider .slider-btn.prev {
    left: 10px;
  }
  
  .hero-slider .slider-btn.next {
    right: 10px;
  }
  
  .hero-slider .slider-btn ion-icon {
    font-size: 1.5rem;
  }
  
  .hero-slider .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    line-height: 1.1;
    text-align: center;
    margin-inline: auto;
    max-width: 100%;
  }
  
  .hero-slider .hero-text {
    font-size: 1.2rem;
    margin-block: 12px 20px;
  }
  
  .hero-slider .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-slider .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    padding-block: 60px;
    min-height: 70vh;
  }
  
  .hero-slider .slider-item {
    padding-block-start: 40px;
  }
  
  .hero-slider .slider-btn {
    width: 35px;
    height: 35px;
  }
  
  .hero-slider .slider-btn.prev {
    left: 5px;
  }
  
  .hero-slider .slider-btn.next {
    right: 5px;
  }
  
  .hero-slider .slider-btn ion-icon {
    font-size: 1.2rem;
  }
  
  .hero-slider .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.1;
  }
  
  .hero-slider .hero-text {
    font-size: 1.2rem;
    margin-block: 12px 25px;
  }
  
  .hero-slider .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-slider .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-slider {
    padding-block: 50px;
    min-height: 60vh;
  }
  
  .hero-slider .slider-item {
    padding-block-start: 30px;
  }
  
  .hero-slider .hero-title {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
  }
  
  .hero-slider .hero-text {
    font-size: 1.1rem;
    margin-block: 10px 20px;
  }
}

/* Beautified Testimonials Styles */
.testimonials-beautified {
  padding-block: 120px;
  position: relative;
  overflow: hidden;
}

.testimonials-beautified .section-title .span {
  color: var(--gold-crayola);
}

.testimonial-wrapper {
  max-width: 800px;
  margin: auto;
  position: relative;
  padding: 60px 40px;
}

.quote-icon {
  font-size: 120px;
  line-height: 1;
  color: var(--gold-crayola);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fontFamily-forum);
}

.testimonial-text {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.6;
  font-family: var(--fontFamily-dm_sans);
  color: var(--white);
  margin-block: 40px 30px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.testimonial-rating {
  font-size: 1.5rem;
  color: var(--gold-crayola);
  letter-spacing: 3px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-crayola);
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--fontFamily-forum);
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: var(--letterSpacing-2);
}

.author-title {
  font-size: 1rem;
  color: var(--white);
  opacity: 0.8;
  font-family: var(--fontFamily-dm_sans);
}

.testimonial-nav-avatars {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.nav-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-1);
  opacity: 0.6;
}

.nav-avatar.active {
  opacity: 1;
  border-color: var(--gold-crayola);
  transform: scale(1.1);
}

.nav-avatar:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .testimonials-beautified {
    padding-block: 80px;
  }
  
  .testimonial-wrapper {
    padding: 40px 20px;
  }
  
  .quote-icon {
    font-size: 80px;
    top: -10px;
  }
  
  .testimonial-text {
    font-size: 1.25rem;
    margin-block: 30px 20px;
  }
  
  .testimonial-author {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .author-avatar {
    width: 70px;
    height: 70px;
  }
  
  .nav-avatar {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-nav-avatars {
    gap: 12px;
    margin-top: 40px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: var(--transition-1);
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #128C7E;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }
}

/* Mobile Feature */
.nav-open-btn {
  display: block;
  font-size: 3.5rem;
  color: var(--white);
  z-index: 1001;
}

@media (min-width: 1200px) {
  .nav-open-btn {
    display: none;
  }
}