.firstPart {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 100vh;
}

.heroLeft {
  position: relative;
  overflow: hidden;
}

.heroCarousel,
.heroSlides {
  width: 100%;
  height: 100%;
  position: relative;
}

.heroSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.heroSlide.is-active {
  opacity: 1;
}

.heroDots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 13px;
}

.heroDot {
  width: 12px;
  height: 12px;

  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.65);

  padding: 0;
  transition: all 0.3s ease;
}

.heroDot.is-active {
  background: var(--active-yellow);
  transform: scale(1.18);
}

.heroRight {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 100px 100px 60px 170px;
  gap: 20px;

  position: relative;

  background:
    radial-gradient(circle at 92% 72%,
      rgba(255, 153, 102, 0.95) 0%,
      rgba(255, 189, 135, 0.75) 18%,
      rgba(242, 207, 178, 0.45) 38%,
      rgba(255, 250, 244, 1) 70%
    );
}

.heroTitle1,
.heroTitle2,
.quoteMark {
  font-family: "Cormorant", serif;
  font-weight: 500;
  color: var(--text-brown);
}

.heroTitle1 {
  font-size: 96px;
  line-height: 0.95;
}

.heroTitle2 {
  font-style: italic;
  font-size: var(--title-lg);
  line-height: 0.95;
}

.quoteMark {
  font-size: 110px;
  line-height: 1;

  position: absolute;
  top: 250px;
  left: 120px;

  opacity: 0.9;
  pointer-events: none;
}

.heroSubtitle {
  font-weight: 600;
  font-size: var(--text-xl);
  margin-top: 12px;
}

.viewMenu {
  background: var(--btn-orange);
  color: var(--btn-orange-text);
  border-color: var(--btn-orange);
  width: fit-content;
  margin-top: 20px;
}

.viewMenu:hover,
.aboutBtn:hover,
.aboutButtonGroup .pillButton:hover {
  background: transparent;
  color: var(--btn-orange);
  box-shadow: 0 0 0 1px var(--btn-orange);
}

.secondPart {
  position: relative;
  background: var(--bg-light);
  padding: 135px 120px 130px;
  overflow: hidden;
  min-height: 860px;
}

.secondBg {
  position: absolute;
  inset: 0;
  background: var(--bg-light);
  z-index: 0;
}

.secondPart > * {
  position: relative;
  z-index: 1;
}

.signatureTitle {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: var(--title-md);
  text-align: center;
  margin-bottom: 115px;
  letter-spacing: 0.2px;
}

.signatureTitleStrong {
  font-style: italic;
  font-weight: 500;
}

.signatureCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
}

.sigCard {
  min-height: 380px;

  background: #FEFAF7;
  border-radius: var(--radius-main);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 165px 34px 30px;
  gap: 12px;

  position: relative;
  justify-content: space-between;
}

.dessertMaskGroup {
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);

  width: 230px;
  height: 230px;
}

.dessertImg {
  border-radius: 62% 38% 58% 42% / 45% 60% 40% 55%;
  transform: scale(1.06);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.sigLabel {
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
  text-align: center;
  margin-top: 6px;
  color: var(--text-brown);
  line-height: 1.2;
}

.sigDesc {
  font-size: var(--text-sm);
  line-height: 1.5;
  text-align: center;
  max-width: 250px;
  color: var(--text-brown);
  flex-grow: 1;
  margin: 0 auto;
}

.menuBtnSmall {
  background: var(--btn-green);
  color: var(--btn-green-text);
  border-color: var(--btn-green);
  padding: 11px 28px;
}

.menuBtnSmall:hover,
.happeningsButtons a:hover {
  background: transparent;
  color: var(--btn-green);
  box-shadow: 0 0 0 1px var(--btn-green);
}

.movingStrip {
  background: var(--brown-main);
  overflow: hidden;
  width: 100%;
}

.marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marqueeTrack {
  display: flex;
  width: max-content;
  animation: scrollStrip 35s linear infinite;
}

.marqueeItem {
  display: flex;
  align-items: center;
  gap: 46px;
  padding: 14px 40px;
}

.marqueeItem span {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--beige-text);
  white-space: nowrap;
}

.marqueeItem img {
  width: 60px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.dot {
  font-size: 20px;
  opacity: 0.9;
}

@keyframes scrollStrip {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.thirdPart {
  width: 100%;
  background: var(--bg-soft);
  overflow: hidden;
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.aboutBox,
.aboutImgBox,
.aboutImgBox2,
.aboutTextBox,
.aboutTextBox2 {
  height: 450px;
  overflow: hidden;
}

.aboutImgBox img,
.aboutImgBox2 img {
  object-fit: cover;
}

.aboutTextBox,
.aboutTextBox2 {
  padding: 65px 90px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    radial-gradient(circle at 12% 82%,
      rgba(255, 153, 102, 0.75) 0%,
      rgba(255, 189, 135, 0.4) 30%,
      rgba(255, 250, 244, 1) 72%
    );
}

.aboutTextBox {
  align-items: flex-end;
  text-align: right;
}

.aboutTextBox2 {
  align-items: flex-start;
  text-align: left;
}

.aboutHeading {
  font-family: "Cormorant", serif;
  font-size: var(--title-md);
  font-weight: 500;
  line-height: 1;
  color: var(--text-brown);
  margin-bottom: 16px;
}

.aboutHeadingStrong {
  font-style: italic;
}

.aboutBody {
  font-size: var(--text-sm);
  line-height: 1.5;
  max-width: 560px;
  margin-bottom: 18px;
}

.aboutBtn,
.aboutButtonGroup .pillButton {
  background: var(--btn-orange);
  color: var(--btn-orange-text);
  border-color: var(--btn-orange);
}

.openingHoursBtn {
  width: fit-content;
  padding: 10px 22px;
  margin-bottom: 8px;

  background: transparent;
  color: var(--text-brown);

  border: 2px solid var(--text-brown);
  border-radius: var(--btn-radius);

  transition: all 0.3s ease;
}

.openingHoursBtn:hover {
  background: var(--text-brown);
  color: var(--beige-text);
}

.phoneWhatsapp {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--text-brown);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;

  margin-top: 5px;
  margin-bottom: 23px;
}

.phoneWhatsapp img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.phoneWhatsapp span {
  text-decoration: underline;
}

.phoneWhatsapp:hover {
  color: var(--btn-orange);
}

.aboutButtonGroup {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.fourthPart {
  overflow: hidden;
  padding: 80px 0 0;
  text-align: center;

  background:
    radial-gradient(circle at 50% 82%,
      rgba(255, 153, 102, 0.95) 0%,
      rgba(255, 189, 135, 0.55) 28%,
      rgba(255, 250, 244, 1) 70%
    );
}

.happeningsTitle {
  font-family: "Cormorant", serif;
  font-size: var(--title-md);
  font-weight: 500;
  color: var(--text-brown);
  margin-bottom: 18px;
}

.happeningsButtons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 55px;
}

.happeningsButtons a {
  background: var(--btn-green);
  color: var(--btn-green-text);
  border: 2px solid var(--btn-green);
  border-radius: var(--btn-radius);
  padding: 11px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.happeningsButtons a:hover {
  background: transparent;
  color: var(--btn-green);
  box-shadow: 0 0 0 1px var(--btn-green);
}

.happeningsMarquee {
  width: 100%;
  overflow: hidden;
  padding-bottom: 150px;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 250, 244, 0) 0%,
      rgba(255, 153, 102, 0.5) 45%,
      var(--brown-main) 100%
    );
}

.happeningsTrack {
  display: flex;
  gap: 34px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.fourthPart.show .happeningsTrack {
  animation: happeningsLoop 42s linear infinite;
}

.happeningsTrack:hover {
  animation-play-state: paused;
}

.happeningCard {
  position: relative;
  display: block;
  flex: 0 0 auto;

  width: 260px;
  height: 360px;

  overflow: hidden;
  border-radius: var(--radius-main);

  box-shadow: 0 18px 35px rgba(110, 55, 27, 0.26);
  transition: box-shadow 0.3s ease;
}

.happeningCard:hover {
  box-shadow: 0 26px 55px rgba(110, 55, 27, 0.42);
}

.happeningCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-main);
  display: block;
}

.playIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;

  width: 62px;
  height: 62px;

  transform: translate(-50%, -50%);

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.playIcon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;

  transform: translate(-50%, -50%);

  width: 0;
  height: 0;

  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--btn-orange);
}

.photoCard .playIcon {
  display: none;
}

@keyframes happeningsLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 17px), 0, 0);
  }
}

@media screen and (max-width: 1100px) {
  .firstPart {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .heroLeft {
    height: 520px;
  }

  .heroRight {
    min-height: 420px;
    padding: 70px 12%;
  }

  .quoteMark {
    top: 70px;
    left: 9%;
  }

  .secondPart {
    padding: 120px 44px 110px;
    min-height: 780px;
  }

  .signatureCards {
    gap: 24px;
  }

  .sigCard {
    min-height: 350px;
    padding: 150px 24px 26px;
  }

  .dessertMaskGroup {
    width: 205px;
    height: 205px;
  }

  .sigLabel {
    font-size: 15px;
  }

  .sigDesc {
    max-width: 230px;
  }

  .aboutBox,
  .aboutImgBox,
  .aboutImgBox2,
  .aboutTextBox,
  .aboutTextBox2 {
    height: 420px;
  }

  .aboutTextBox,
  .aboutTextBox2 {
    padding: 48px 50px;
  }

  .happeningsMarquee {
    padding-bottom: 130px;
  }
}

@media screen and (max-width: 600px) {
  .firstPart {
    grid-template-columns: 1fr;
  }

  .heroLeft {
    height: 285px;
  }

  .heroDots {
    bottom: 18px;
    gap: 8px;
  }

  .heroDot {
    width: 7px;
    height: 7px;
  }

  .heroRight {
    min-height: 230px;
    padding: 34px 34px 40px;
    gap: 8px;

    background:
      radial-gradient(circle at 95% 80%,
        rgba(255, 153, 102, 0.85) 0%,
        rgba(255, 189, 135, 0.55) 34%,
        rgba(255, 238, 223, 1) 72%
      );
  }

  .quoteMark {
    position: static;
    font-size: 80px;
    line-height: 0.8;
  }

  .heroTitle1 {
    font-size: 55px;
  }

  .heroTitle2 {
    font-size: 60px;
  }

  .heroSubtitle {
    font-size: 15px;
    margin-top: 8px;
  }

  .viewMenu {
    margin-top: 8px;
  }

  .secondPart {
    padding: 90px 26px 95px;
    min-height: auto;
  }

  .signatureTitle {
    font-size: 32px;
    margin-bottom: 78px;
  }

  .signatureCards {
    grid-template-columns: 1fr;
    max-width: 265px;
    gap: 86px;
  }

  .sigCard {
    min-height: 290px;
    padding: 116px 20px 20px;
    border-radius: 24px;
  }

  .signatureCards .sigCard:nth-child(1),
  .signatureCards .sigCard:nth-child(3) {
    display: none;
  }

  .dessertMaskGroup {
    top: -60px;
    width: 165px;
    height: 165px;
  }

  .sigLabel {
    font-size: 15px;
    white-space: nowrap;
  }

  .sigDesc {
    font-size: 15px;
    line-height: 1.45;
    max-width: 180px;
  }

  .menuBtnSmall {
    padding: 9px 20px;
  }

  .marqueeItem {
    gap: 30px;
    padding: 11px 24px;
  }

  .marqueeItem span {
    font-size: 13px;
  }

  .marqueeItem img {
    width: 44px;
  }

  .aboutGrid {
    grid-template-columns: 1fr;
  }

  .aboutTextBox {
    order: 2;
  }

  .aboutImgBox {
    order: 1;
  }

  .aboutImgBox2 {
    order: 3;
  }

  .aboutTextBox2 {
    order: 4;
  }

  .aboutBox,
  .aboutImgBox,
  .aboutImgBox2,
  .aboutTextBox,
  .aboutTextBox2 {
    height: auto;
    min-height: unset;
  }

  .aboutImgBox,
  .aboutImgBox2 {
    height: 210px;
  }

  .aboutTextBox,
  .aboutTextBox2 {
    padding: 36px 30px;
    text-align: left;
    align-items: flex-start;

    background:
      radial-gradient(circle at 90% 80%,
        rgba(255, 153, 102, 0.42) 0%,
        rgba(255, 238, 223, 1) 65%
      );
  }

  .aboutTextBox {
    text-align: right;
    align-items: flex-end;
  }

  .aboutHeading {
    font-size: 32px;
  }

  .aboutBody {
    font-size: 15px;
    line-height: 1.45;
    max-width: 100%;
  }

  .openingHoursBtn {
    padding: 7px 16px;
    font-size: 15px;
  }

  .phoneWhatsapp {
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 23px;
  }

  .phoneWhatsapp img {
    width: 15px;
    height: 15px;
  }

  .aboutButtonGroup {
    gap: 8px;
  }

  .aboutButtonGroup .pillButton {
    padding: 10px 18px;
  }

  .fourthPart {
    padding-top: 48px;
  }

  .happeningsTitle {
    font-size: 32px;
  }

  .happeningsButtons {
    gap: 8px;
    margin-bottom: 34px;
  }

  .happeningsButtons a {
    padding: 10px 18px;
    font-size: 10px;
  }

  .happeningsMarquee {
    padding-bottom: 110px;
  }

  .happeningsTrack {
    gap: 18px;
  }

  .fourthPart.show .happeningsTrack {
    animation-duration: 28s;
  }

  .happeningCard {
    width: 150px;
    height: 210px;
    border-radius: 20px;
  }

  .happeningCard img {
    border-radius: 20px;
  }

  .playIcon {
    width: 42px;
    height: 42px;
  }

  .playIcon::before {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .backToTop {
    display: none;
  }
}