:root {
  --bg: #f8f7f4;
  --bg-soft: #f2f0ea;
  --surface: #ffffff;
  --surface-soft: #fcfaf6;
  --text: #2b241e;
  --muted: #6f6359;
  --line: #e8ddd0;
  --brand: #e2572f;
  --brand-dark: #be401f;
  --brand-soft: #fff0e6;
  --chip: #fff5ed;
  --wa: #1faa56;
  --topbar-space: 86px;
  --radius-lg: 1.2rem;
  --radius-md: 0.9rem;
  --shadow-soft: 0 14px 34px rgba(66, 42, 26, 0.08);
  --shadow-strong: 0 24px 50px rgba(34, 16, 10, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(900px 380px at 10% -12%, #ffe2c6 0%, transparent 48%),
    radial-gradient(820px 380px at 100% -8%, #ffd8c0 0%, transparent 44%),
    linear-gradient(180deg, #fff8f1 0%, var(--bg) 42%, #fffdfb 100%);
}

a {
  color: inherit;
}

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

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

#menu,
#review,
#masukan,
#kontak {
  scroll-margin-top: calc(var(--topbar-space) + 14px);
}

.topbar-wrap {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  background: linear-gradient(180deg, rgba(18, 10, 7, 0.78) 0%, rgba(18, 10, 7, 0.26) 100%);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.topbar-wrap.is-scrolled {
  background: rgba(254, 250, 244, 0.88);
  border-bottom-color: rgba(222, 202, 183, 0.8);
  box-shadow: 0 12px 30px rgba(58, 35, 21, 0.12);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: "Chewy", "Sora", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.44rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: #ffe9d7;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.topbar-wrap.is-scrolled .brand {
  color: var(--brand-dark);
  text-shadow: none;
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.menu-nav a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  color: #fff6ef;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.menu-nav a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.15);
}

.topbar-wrap.is-scrolled .menu-nav a {
  color: #735746;
  border-color: #e6d4c3;
  background: rgba(255, 255, 255, 0.9);
}

.header {
  position: relative;
  padding-top: calc(var(--topbar-space) - 0.3rem);
  background:
    radial-gradient(760px 340px at 98% -40%, rgba(255, 206, 164, 0.2) 0%, transparent 68%),
    radial-gradient(560px 280px at -10% -30%, rgba(255, 255, 255, 0.15) 0%, transparent 80%),
    linear-gradient(135deg, #26110b 0%, #6f2b16 48%, #ac4725 100%);
  color: #fff7f1;
  overflow: clip;
}

.header::before,
.header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.header::before {
  width: 480px;
  height: 480px;
  right: -220px;
  bottom: -250px;
  background: radial-gradient(circle, rgba(255, 189, 132, 0.24) 0%, transparent 70%);
}

.header::after {
  width: 280px;
  height: 280px;
  left: -120px;
  top: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 72%);
}

.promo-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, rgba(13, 8, 6, 0.56), rgba(13, 8, 6, 0.32));
}

.promo-strip p {
  margin: 0;
  padding: 0.54rem 0;
  text-align: center;
  font-size: 0.83rem;
  font-weight: 700;
  color: #ffe9d8;
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  align-items: center;
  gap: 1.35rem;
  padding: 1.6rem 0 2.3rem;
  position: relative;
  z-index: 1;
}

.hero-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-lg);
  padding: 1.18rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  margin: 0;
  padding: 0.3rem 0.68rem;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: #ffe4ce;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero h1 {
  margin: 0.6rem 0 0.45rem;
  font-family: "Chewy", "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.012em;
  color: #fff8f1;
  text-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
}

.word-sambel {
  white-space: nowrap;
}

.lightning-s {
  display: inline-block;
  width: 1.12em;
  height: 1.56em;
  vertical-align: -0.3em;
  margin-right: -0.30em;
  background: url("/images/icon-petir.svg") center / contain no-repeat;
  filter:
    drop-shadow(0 0 8px rgba(255, 224, 116, 0.95))
    drop-shadow(0 0 14px rgba(255, 119, 63, 0.85));
}

.hero p {
  margin: 0;
  color: #ffe7d7;
}

.hero-copy > p:not(.badge) {
  max-width: 58ch;
  font-size: 0.92rem;
  line-height: 1.66;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.82rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 800;
  padding: 0.66rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ef6940 0%, var(--brand) 100%);
  box-shadow: 0 10px 24px rgba(226, 87, 47, 0.34);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #e45e35 0%, #cd4b25 100%);
}

.btn-soft {
  color: #fff3e8;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero-service-info {
  margin-top: 0.82rem;
}

.hero-service-chip {
  margin: 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  border: 1px solid rgba(255, 228, 205, 0.62);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 214, 182, 0.15));
  color: #fff1e3;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-service-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc38d;
  box-shadow: 0 0 0 3px rgba(255, 195, 141, 0.22);
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -0.58rem 0.7rem 0.98rem -0.74rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(150deg, rgba(255, 223, 196, 0.34), rgba(255, 255, 255, 0.08));
  transform: rotate(-2deg);
  z-index: -1;
}

.hero-media-track {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 1.2rem;
}

.hero-media-track::-webkit-scrollbar {
  display: none;
}

.hero-slide {
  margin: 0;
  min-width: 100%;
  scroll-snap-align: start;
}

.hero-slide img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 16, 12, 0.74);
  color: #fff;
  font-size: 1.03rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.hero-carousel-btn.prev {
  left: 0.74rem;
}

.hero-carousel-btn.next {
  right: 0.74rem;
}

.hero-dots {
  position: absolute;
  left: 0.86rem;
  bottom: 0.86rem;
  z-index: 3;
  display: flex;
  gap: 0.36rem;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.hero-dot.active {
  width: 18px;
  background: #ffcc76;
}

.hero-tag {
  position: absolute;
  right: 0.84rem;
  bottom: 0.84rem;
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.24px;
  color: #fff;
  background: rgba(20, 13, 9, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.section {
  padding: 3rem 0;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.28rem, 2.4vw, 1.82rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.012em;
}

.section-head p {
  margin: 0.34rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-toolbar {
  margin-bottom: 0.95rem;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  border: 1px solid #e6d5c5;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.79rem;
  font-weight: 800;
  color: #725b49;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: #dbbea5;
  background: #fff7ef;
}

.filter-btn.active {
  color: #fff;
  border-color: var(--brand);
  background: linear-gradient(180deg, #e6683f 0%, var(--brand) 100%);
  box-shadow: 0 10px 18px rgba(205, 88, 44, 0.24);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.95rem;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.menu-grid.is-filtering {
  opacity: 0.4;
  transform: translateY(4px);
}

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(93, 55, 28, 0.16);
}

.menu-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card h3 {
  margin: 0;
  padding: 0.86rem;
  font-size: 0.93rem;
  font-weight: 800;
}

.menu-badge {
  position: absolute;
  top: 0.58rem;
  left: 0.58rem;
  z-index: 2;
  border-radius: 999px;
  padding: 0.2rem 0.54rem;
  font-size: 0.66rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #f0683d 0%, var(--brand) 100%);
  box-shadow: 0 8px 14px rgba(219, 95, 50, 0.3);
}

.menu-empty {
  margin: 0.9rem 0 0;
  font-size: 0.87rem;
  color: #7c6858;
}

.review-wrap {
  background:
    radial-gradient(640px 280px at 94% -16%, #ffe8d2 0%, transparent 55%),
    linear-gradient(180deg, #fff6ec 0%, #fffdfb 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-carousel {
  position: relative;
  margin-bottom: 0.78rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.46rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.review-media {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 0.84rem;
}

.review-media::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  margin: 0;
  min-width: 100%;
  scroll-snap-align: start;
}

.review-media img {
  border-radius: 0.84rem;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
  object-fit: contain;
  background: #1f2128;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 16, 12, 0.74);
  color: #fff;
  font-size: 1.08rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn.prev {
  left: 0.72rem;
}

.carousel-btn.next {
  right: 0.72rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.36rem;
  margin-bottom: 1rem;
}

.dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: #d8c9bb;
  cursor: pointer;
}

.dot.active {
  width: 22px;
  background: var(--brand);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: linear-gradient(180deg, #fff 0%, #fffbf7 100%);
  box-shadow: var(--shadow-soft);
}

.review-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.93rem;
  font-weight: 800;
}

.review-card p {
  margin: 0;
  font-size: 0.88rem;
}

.stars {
  display: inline-block;
  margin-bottom: 0.42rem;
  border-radius: 999px;
  padding: 0.16rem 0.5rem;
  font-size: 0.74rem;
  font-weight: 800;
  color: #fff;
  background: #2e9f5d;
}

.suggestion-wrap {
  background:
    radial-gradient(560px 220px at 8% -16%, #ffe7d0 0%, transparent 62%),
    linear-gradient(180deg, #fff8f0 0%, #fffdfb 100%);
  border-bottom: 1px solid var(--line);
}

.feedback-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
  box-shadow: var(--shadow-soft);
}

.feedback-head h2 {
  margin: 0.56rem 0 0.36rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #3a281f;
}

.feedback-head p {
  margin: 0;
  color: #695b4f;
  font-size: 0.9rem;
}

.feedback-form {
  display: grid;
  gap: 0.7rem;
}

.feedback-form .btn {
  justify-self: start;
}

.feedback-status {
  margin: 0.1rem 0 0;
  width: fit-content;
  border-radius: 0.62rem;
  padding: 0.42rem 0.64rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.feedback-status.is-success {
  color: #126c3d;
  background: #eaf9ef;
  border: 1px solid #bee9cf;
}

.feedback-status.is-error {
  color: #8f3418;
  background: #fff2ea;
  border: 1px solid #f3c8b1;
}

.feedback-field {
  display: grid;
  gap: 0.35rem;
}

.feedback-field span {
  font-size: 0.78rem;
  font-weight: 800;
  color: #7f6857;
}

.feedback-field input,
.feedback-field textarea {
  width: 100%;
  border: 1px solid #ead7c8;
  border-radius: 0.82rem;
  background: #fff;
  color: #3f2d22;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  padding: 0.68rem 0.8rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feedback-field textarea {
  resize: vertical;
  min-height: 120px;
}

.feedback-field input::placeholder,
.feedback-field textarea::placeholder {
  color: #ad9582;
}

.feedback-field input:focus,
.feedback-field textarea:focus {
  border-color: #df9a71;
  box-shadow: 0 0 0 3px rgba(223, 154, 113, 0.16);
}

.contact-wrap {
  background:
    radial-gradient(560px 240px at 2% 8%, #ffe9d5 0%, transparent 70%),
    linear-gradient(180deg, #fff6ec 0%, #fffdfb 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}

.contact-main-card,
.contact-side-card,
.location-map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
  box-shadow: var(--shadow-soft);
}

.location-map-panel {
  margin-top: 1rem;
}

.contact-kicker {
  margin: 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.56rem;
  font-size: 0.71rem;
  font-weight: 800;
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.contact-main-card h3,
.contact-side-card h3,
.location-map-head h3 {
  margin: 0.56rem 0 0.34rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.contact-address,
.location-map-head p,
.contact-side-card > p {
  margin: 0;
  color: #635548;
  font-size: 0.9rem;
}

.contact-map-btn {
  margin-top: 0.82rem;
}

.contact-info-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.contact-info-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.74rem;
  background: #fff;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.88rem;
}

.contact-info-item p + p {
  margin-top: 0.34rem;
}

.contact-info-item .label {
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #8c7665;
}

.wa-text-link {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 800;
}

.contact-info-item .small {
  color: #86776a;
  font-size: 0.78rem;
}

.social-icons {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 0.62rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(104, 63, 33, 0.08);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  border-color: #e4c5ad;
  box-shadow: 0 14px 24px rgba(104, 63, 33, 0.13);
}

.icon-link svg {
  width: 29px;
  height: 29px;
}

.icon-link.instagram {
  background: linear-gradient(180deg, #fff 0%, #fff5fa 100%);
}

.icon-link.instagram svg {
  fill: #e1306c;
}

.icon-link.google svg {
  width: 32px;
  height: 32px;
}

.icon-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.location-map-frame {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.94rem;
  overflow: hidden;
  background: #f7efe7;
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 46vw, 460px);
  border: 0;
}

.footer {
  text-align: center;
  padding: 1.15rem;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #6f6054;
  font-size: 0.88rem;
  font-weight: 700;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.66rem 0.85rem;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(14, 88, 40, 0.34);
}

.wa-float:hover {
  background: #18994c;
}

.wa-float svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

@media (max-width: 860px) {
  :root {
    --topbar-space: 116px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.74rem 0;
  }

  .menu-nav {
    width: 100%;
  }

  .menu-nav a {
    font-size: 0.77rem;
    padding: 0.34rem 0.64rem;
  }

  .promo-strip p {
    font-size: 0.79rem;
    line-height: 1.5;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1.95rem;
  }

  .hero-copy {
    padding: 1rem;
  }

  .hero-copy > p:not(.badge) {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .hero-service-chip {
    font-size: 0.73rem;
    padding: 0.33rem 0.6rem;
  }

  .hero-media::before {
    inset: -0.42rem 0.42rem 0.72rem -0.42rem;
  }

  .hero-carousel-btn {
    width: 32px;
    height: 32px;
  }

  .hero-dots {
    left: 0.72rem;
    bottom: 0.72rem;
  }

  .menu-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
  }

  .menu-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
  }

  .review-media img {
    aspect-ratio: 16 / 9;
  }

  .feedback-card {
    grid-template-columns: 1fr;
    gap: 0.84rem;
    padding: 0.9rem;
  }

  .feedback-head h2 {
    font-size: 1.1rem;
  }

  .feedback-form .btn {
    width: 100%;
    justify-self: stretch;
  }

  .feedback-status {
    width: 100%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .social-icons {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
  }

  .wa-float {
    right: 0.68rem;
    bottom: 0.68rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .wa-float span {
    display: none;
  }

  .wa-float svg {
    width: 21px;
    height: 21px;
  }
}
