:root {
  --bg: #fafafa;
  --navy: #0b1f3b;
  --yellow: #f4b400;
  --teal: #0ea5a4;
  --text: #111827;
  --white: #ffffff;
  --muted: #4b5563;
  --radius: 20px;
  --shadow-soft: 0 12px 30px rgba(11, 31, 59, 0.08);
  --shadow-strong: 0 16px 36px rgba(11, 31, 59, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.section-heading {
  max-width: 780px;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.section-heading p {
  color: var(--muted);
}

.intro-image {
  margin: 0 0 1rem;
  max-width: 780px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 59, 0.12);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

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

#pengenalan .container {
  position: relative;
}

.intro-layout {
  display: grid;
  gap: 1.05rem;
}

.intro-copy {
  display: grid;
  align-content: center;
  border: 1px solid rgba(11, 31, 59, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

#pengenalan .section-heading {
  margin-bottom: 0;
  max-width: unset;
}

#pengenalan .section-heading p {
  line-height: 1.8;
}

#pengenalan .intro-image {
  margin: 0;
  max-width: unset;
  border-radius: 18px;
}

#pengenalan .intro-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 420px;
  object-fit: cover;
}

.site-header {
  position: fixed;
  left: 50%;
  top: 0.8rem;
  transform: translateX(-50%);
  z-index: 1200;
  width: min(1120px, calc(100% - 1rem));
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.58rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(11, 31, 59, 0.14);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition: padding 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nav-pill.is-scrolled {
  padding: 0.42rem 0.72rem;
  box-shadow: var(--shadow-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 40px;
}

.brand__logo {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
  transform: scale(1.12);
  transform-origin: left center;
}

.nav-links {
  list-style: none;
  display: none;
  margin: 0;
  padding: 0;
  gap: 1.15rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.menu-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(11, 31, 59, 0.14);
  border-radius: 999px;
  background: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--navy);
  cursor: pointer;
}

.menu-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-drawer {
  position: fixed;
  left: 50%;
  top: 4.8rem;
  transform: translate(-50%, -135%);
  width: min(420px, calc(100% - 1rem));
  border-radius: 20px;
  border: 1px solid rgba(11, 31, 59, 0.16);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem;
  display: grid;
  gap: 0.45rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 1100;
}

.mobile-drawer.is-open {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer a {
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.7rem 0.8rem;
}

.mobile-drawer a:hover,
.mobile-drawer a:focus-visible {
  background: rgba(11, 31, 59, 0.08);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 59, 0.28);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.25s ease;
}

.menu-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

main {
  padding-top: 0;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, 92svh);
  padding: clamp(6.1rem, 11vh, 7.2rem) 0 clamp(4.8rem, 8vh, 6rem);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(14, 165, 164, 0.32) 0, transparent 42%),
    linear-gradient(135deg, rgba(11, 31, 59, 0.95), rgba(11, 31, 59, 0.8));
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 24%, rgba(14, 165, 164, 0.3) 0, transparent 44%),
    linear-gradient(135deg, rgba(11, 31, 59, 0.82), rgba(11, 31, 59, 0.66));
  pointer-events: none;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.hero.hero--video-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(244, 180, 0, 0.04),
      rgba(244, 180, 0, 0.04) 14px,
      rgba(255, 255, 255, 0.02) 14px,
      rgba(255, 255, 255, 0.02) 28px
    );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.05rem;
  justify-items: center;
  align-content: center;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 180, 0, 0.35);
  background: rgba(244, 180, 0, 0.08);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.hero__subtitle {
  max-width: 780px;
  font-size: clamp(1rem, 2.4vw, 1.28rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero__cta,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.btn {
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.93rem;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(244, 180, 0, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffc526;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  min-height: 38px;
  padding: 0.5rem 0.95rem;
  font-size: 0.84rem;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.trust-chips span {
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-chips span {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

@media (max-width: 767px) {
  .hero {
    min-height: min(700px, 88svh);
    padding: 6rem 0 4.8rem;
  }

  .hero__inner {
    gap: 0.9rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2rem, 9.4vw, 2.65rem);
  }

  .hero__subtitle {
    font-size: 1rem;
    max-width: 32ch;
  }

  .hero__cta {
    gap: 0.65rem;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .trust-chips {
    gap: 0.5rem;
  }

  .trust-chips span {
    font-size: 0.78rem;
    padding: 0.34rem 0.64rem;
  }

  .intro-copy {
    padding: 1rem;
  }

  #pengenalan .section-heading p {
    line-height: 1.72;
  }

  #pengenalan .intro-image img {
    min-height: 210px;
    max-height: 320px;
  }

}

.menu-carousel-wrap {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 980px);
  margin-inline: auto;
}

#menu-highlight .section-heading {
  margin-inline: auto;
  text-align: center;
}

#menu-highlight .section-cta {
  text-align: center;
}

.tiktok-gallery {
  display: grid;
  gap: 1rem;
}

.tiktok-gallery__grid {
  width: min(100%, 1020px);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.tiktok-gallery__embed {
  border-radius: 22px;
  border: 1px solid rgba(11, 31, 59, 0.12);
  background:
    radial-gradient(circle at 16% 12%, rgba(14, 165, 164, 0.08), transparent 45%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem;
}

.tiktok-gallery__info {
  border-radius: 22px;
  border: 1px solid rgba(11, 31, 59, 0.12);
  background:
    radial-gradient(circle at 84% 10%, rgba(244, 180, 0, 0.14), transparent 42%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
  display: grid;
  gap: 0.9rem;
}

.tiktok-gallery__info h3 {
  font-size: 1.2rem;
}

.tiktok-gallery__info p {
  color: var(--muted);
}

.tiktok-gallery__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
}

.tiktok-gallery__actions {
  margin-top: 0.2rem;
  justify-content: flex-start;
}

#galeri-tiktok .section-heading {
  margin-inline: auto;
  text-align: center;
}

#galeri-tiktok .tiktok-embed {
  margin: 0 auto !important;
}

#galeri-tiktok .btn-secondary {
  color: var(--navy);
  border-color: rgba(11, 31, 59, 0.2);
  background: var(--white);
}

#galeri-tiktok .btn-secondary:hover,
#galeri-tiktok .btn-secondary:focus-visible {
  background: rgba(11, 31, 59, 0.06);
}

.menu-carousel {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(11, 31, 59, 0.12);
  background:
    radial-gradient(circle at 12% 16%, rgba(14, 165, 164, 0.12), transparent 44%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-soft);
  padding: 0.7rem;
}

.menu-carousel__viewport {
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
}

.menu-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.menu-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
}

.menu-carousel__zoom {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.menu-carousel__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.menu-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 59, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(11, 31, 59, 0.18);
  z-index: 3;
  cursor: pointer;
}

.menu-carousel__btn--prev {
  left: 1rem;
}

.menu-carousel__btn--next {
  right: 1rem;
}

.menu-carousel__btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.menu-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(11, 31, 59, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.menu-carousel__dot.is-active {
  background: var(--teal);
  transform: scale(1.18);
}

.menu-carousel__dot:hover,
.menu-carousel__dot:focus-visible {
  background: var(--yellow);
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(3, 9, 20, 0.86);
  backdrop-filter: blur(3px);
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.6rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.menu-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-lightbox__image {
  grid-column: 2;
  width: min(1200px, calc(100vw - 8rem));
  max-height: calc(100vh - 7rem);
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
  background: #0b1f3b;
  touch-action: pan-y;
}

.menu-lightbox__close,
.menu-lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-lightbox__close {
  position: absolute;
  top: max(0.8rem, env(safe-area-inset-top));
  right: max(0.8rem, env(safe-area-inset-right));
  width: 42px;
  height: 42px;
}

.menu-lightbox__nav {
  width: 46px;
  height: 46px;
}

.menu-lightbox__nav--prev {
  grid-column: 1;
}

.menu-lightbox__nav--next {
  grid-column: 3;
}

.menu-lightbox__close svg,
.menu-lightbox__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-lightbox__counter {
  position: absolute;
  bottom: max(0.8rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
}

body.menu-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu-carousel {
    padding: 0.45rem;
    border-radius: 18px;
  }

  .menu-carousel__slide img {
    aspect-ratio: 5 / 4;
  }

  .menu-carousel__btn {
    width: 38px;
    height: 38px;
  }

  .menu-carousel__btn--prev {
    left: 0.5rem;
  }

  .menu-carousel__btn--next {
    right: 0.5rem;
  }

  .menu-carousel__btn svg {
    width: 20px;
    height: 20px;
  }

  .menu-lightbox {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0.75rem;
  }

  .menu-lightbox__image {
    grid-column: 1;
    width: calc(100vw - 1.5rem);
    max-height: calc(100vh - 9rem);
  }

  .menu-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
  }

  .menu-lightbox__nav--prev {
    left: 0.6rem;
  }

  .menu-lightbox__nav--next {
    right: 0.6rem;
  }

  .menu-lightbox__counter {
    bottom: max(0.55rem, env(safe-area-inset-bottom));
    font-size: 0.78rem;
  }

  .tiktok-gallery__embed {
    padding: 0.5rem;
    border-radius: 18px;
  }

  .tiktok-gallery__info {
    border-radius: 18px;
    padding: 1rem;
  }

  .tiktok-gallery__actions .btn {
    width: 100%;
  }
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.usp-grid,
.review-fallback {
  grid-template-columns: 1fr;
}

.card {
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid rgba(11, 31, 59, 0.11);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card p {
  color: var(--muted);
}

.card strong {
  color: var(--teal);
  font-size: 0.95rem;
}

.card:hover,
.card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 164, 0.3);
  box-shadow: 0 18px 34px rgba(11, 31, 59, 0.14);
}

.section-cta {
  margin-top: 1.2rem;
}

.section-cta a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.section-cta a:hover,
.section-cta a:focus-visible {
  color: var(--teal);
}

.walkin-banner {
  margin-top: 1.2rem;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(14, 165, 164, 0.35);
  background: rgba(14, 165, 164, 0.08);
  color: #065f5e;
  font-weight: 600;
}

#kenapa-kami .section-heading,
#review .section-heading {
  margin-inline: auto;
  text-align: center;
}

#kenapa-kami .usp-grid {
  max-width: 980px;
  margin-inline: auto;
}

#kenapa-kami .walkin-banner {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 59, 0.14);
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
}

#lokasi .section-heading {
  margin-inline: auto;
  text-align: center;
}

#lokasi .map-wrap {
  max-width: 980px;
  margin-inline: auto;
  border-radius: 22px;
}

#lokasi .button-row {
  margin-top: 1rem;
}

#lokasi .button-row .btn {
  min-width: 220px;
}

#lokasi .button-row .btn-secondary {
  background: #ffffff;
  color: var(--navy);
  border-color: rgba(11, 31, 59, 0.26);
  box-shadow: 0 10px 24px rgba(11, 31, 59, 0.1);
}

#lokasi .button-row .btn-secondary:hover,
#lokasi .button-row .btn-secondary:focus-visible {
  background: #f2f6fc;
  color: var(--navy);
}

#lokasi .note {
  text-align: center;
}

.review-embed {
  max-width: 980px;
  margin-inline: auto;
  border-radius: 20px;
  border: 1px solid rgba(11, 31, 59, 0.14);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 0.75rem;
}

#review .section-cta {
  text-align: center;
}

.review-embed [class*="EmbedRoot__Root"] {
  margin-inline: auto !important;
}

.review-embed .elfsight-app-b6c5d12a-f17f-4d7b-901f-f49f41fc7011 {
  min-height: 360px;
}

/* Elfsight visual overrides for better fit with page branding */
.review-embed [class*="WidgetTitle__Container"] {
  display: none !important;
}

.review-embed [class*="Main__Content"] {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.review-embed [class*="HeaderComponent__Top"] {
  margin-bottom: 0.9rem !important;
}

.review-embed [class*="HeaderContainer__Inner"] {
  background: #ffffff !important;
  border: 1px solid rgba(11, 31, 59, 0.1) !important;
  border-radius: 16px !important;
  padding: 1rem !important;
}

.review-embed [class*="HeaderHeading__Text"] {
  color: var(--navy) !important;
  font-weight: 800 !important;
}

.review-embed [class*="Carousel__CarouselContainer"] {
  gap: 0.85rem !important;
}

.review-embed [class*="Carousel__CarouselOuter"] {
  padding-inline: 1.1rem !important;
}

.review-embed [class*="Carousel__CarouselArrowControlContainer"] {
  width: 36px !important;
  height: 36px !important;
  flex-basis: 36px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 3 !important;
}

.review-embed [class*="Carousel__CarouselArrowControlContainer"][aria-label="Previous"] {
  left: 8px !important;
}

.review-embed [class*="Carousel__CarouselArrowControlContainer"][aria-label="Next"] {
  right: 8px !important;
}

.review-embed [class*="ArrowControl__ArrowControlContainer"] {
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(11, 31, 59, 0.2) !important;
  background: #ffffff !important;
  color: var(--navy) !important;
  box-shadow: 0 6px 16px rgba(11, 31, 59, 0.14) !important;
}

.review-embed [class*="ArrowControl__ArrowControlIcon"] {
  color: var(--navy) !important;
}

.review-embed [class*="ArrowControl__ArrowControlIcon"] svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor !important;
}

.review-embed [class*="ArrowControl__ArrowControlIcon"] path {
  fill: currentColor !important;
}

.review-embed [class*="ReviewBackground__Container"] {
  background: #ffffff !important;
  border: 1px solid rgba(11, 31, 59, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 22px rgba(11, 31, 59, 0.08) !important;
}

.review-embed [class*="ReviewAuthorName__AuthorName"] {
  color: var(--navy) !important;
  font-weight: 700 !important;
}

.review-embed [class*="DateTime__Time"] {
  color: #6b7280 !important;
}

.review-embed [class*="ShortenedText__ShortenedTextComponent"] {
  color: var(--text) !important;
}

.review-embed [class*="ReviewImages__ReviewImageContainer"] {
  border-radius: 12px !important;
  overflow: hidden !important;
}

.review-embed [class*="ReviewImages__ReviewImage"] img {
  max-height: 220px !important;
  object-fit: cover !important;
}

@media (max-width: 767px) {
  .review-embed {
    padding: 0.45rem;
  }

  .review-embed [class*="HeaderContainer__Inner"] {
    padding: 0.75rem !important;
  }

  .review-embed [class*="HeaderWriteReviewButton__Component"] {
    display: none !important;
  }

  .review-embed [class*="Carousel__CarouselArrowControlContainer"] {
    display: none !important;
  }
}

.note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-banner {
  border-radius: 24px;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(14, 165, 164, 0.16), transparent 40%),
    linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid rgba(11, 31, 59, 0.11);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.2rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.icon-link,
.social-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 59, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.icon-link:hover,
.icon-link:focus-visible,
.social-item:hover .icon,
.social-item:focus-visible .icon {
  color: var(--teal);
  border-color: rgba(14, 165, 164, 0.55);
  transform: translateY(-2px);
}

.icon-link svg,
.social-item .icon svg,
.floating-whatsapp svg,
.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-row--labeled {
  margin-top: 0.4rem;
  gap: 0.85rem;
}

.social-item {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.75rem;
}

.site-footer {
  background: var(--navy);
  color: #e5e7eb;
  padding: 2.8rem 0 6rem;
}

.site-footer h2 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-wrap {
  display: grid;
  gap: 1.2rem;
}

.site-footer .icon-link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.site-footer .icon-link:hover,
.site-footer .icon-link:focus-visible {
  color: var(--yellow);
  border-color: rgba(244, 180, 0, 0.7);
}

.icon-credits {
  font-size: 0.77rem;
  color: #d1d5db;
  display: grid;
  gap: 0.2rem;
}

.icon-credits a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.icon-credits a:hover,
.icon-credits a:focus-visible {
  color: var(--yellow);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
  z-index: 1000;
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.floating-whatsapp span {
  display: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 5.1rem);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 59, 0.2);
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .section {
    padding: 5.4rem 0;
  }

  .hero {
    min-height: min(760px, 90svh);
    padding: 5.8rem 0 4.9rem;
  }

  .intro-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: start;
    gap: 1.35rem;
  }

  .intro-copy {
    padding: 1.35rem;
  }

  .menu-carousel-wrap {
    max-width: 940px;
    margin-inline: auto;
  }

  .tiktok-gallery__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 1.15rem;
  }

  .menu-carousel__slide img {
    aspect-ratio: 16 / 9;
  }

  .usp-grid,
  .review-fallback {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-banner {
    padding: 2rem;
  }

  .footer-wrap {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
  }

  .floating-whatsapp {
    width: auto;
    height: auto;
    min-height: 50px;
    padding: 0.55rem 0.9rem;
    justify-content: center;
    gap: 0.4rem;
  }

  .floating-whatsapp span {
    display: inline;
  }

  .brand__logo {
    height: 44px;
  }

  .brand {
    height: 44px;
  }
}

@media (min-width: 1024px) {
  .menu-carousel__btn {
    width: 46px;
    height: 46px;
  }

  .menu-carousel__btn svg {
    width: 24px;
    height: 24px;
  }

  .brand {
    height: 48px;
  }

  .brand__logo {
    height: 48px;
  }

  .nav-links {
    display: flex;
  }

  .menu-button,
  .mobile-drawer,
  .menu-overlay {
    display: none;
  }

  .review-fallback {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .back-to-top {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
