/* Mitra Car Wash Meruya — black / gold / white */
:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --gold: #c9a227;
  --gold-bright: #e4c04a;
  --gold-dim: #8a7019;
  --white: #fafafa;
  --gray: #9a9a9a;
  --gray-dark: #4a4a4a;
  --border: rgba(201, 162, 39, 0.35);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --radius-pill: 999px;
  --header-h: 72px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.16);
  --shadow-hard: 0 26px 70px rgba(0, 0, 0, 0.24);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.88) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(0);
  transition: transform 220ms ease, background 220ms ease;
  overflow: visible;
}

body.header-hidden .site-header {
  transform: translateY(calc(-1 * var(--header-h)));
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo__brand,
.logo__brand-text {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: -0.15rem;
  margin-right: -0.15rem;
  color: var(--white);
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 160ms ease, color 160ms ease, transform 160ms ease;
}

.logo__instagram:hover {
  opacity: 1;
  color: var(--gold-dim);
}

.logo__instagram:focus-visible {
  outline: 2px solid var(--gold-dim);
  outline-offset: 3px;
  border-radius: 4px;
}

.logo__instagram-icon {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
}

.logo__img {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  border-radius: 12px;
  object-fit: contain;
  border: none;
  background: transparent;
  box-shadow: none;
  /* keep header height compact; let logo "float" */
  margin: -14px 0;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
  justify-content: center;
}

.nav-desktop a {
  color: rgba(250, 250, 250, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0.1rem;
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
}

.nav-desktop a:hover {
  color: rgba(250, 250, 250, 0.95);
  transform: translateY(-1px);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0.1rem;
  right: 0.1rem;
  bottom: 0.05rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(250, 250, 250, 0.55), transparent);
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-desktop a:hover::after {
  opacity: 1;
  transform: translateY(0px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.1rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: rgba(250, 250, 250, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
  border-color: rgba(201, 162, 39, 0.8);
}

.btn-outline-gold:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.6);
  outline-offset: 4px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--gold);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black-soft);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--white);
  padding: 0.65rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 30%, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72) 70%),
    linear-gradient(105deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.52) 55%, rgba(10, 10, 10, 0.78) 100%),
    url("../img/mitra-bengkel-dalam.png") center / cover no-repeat;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3.25rem, 7vw, 6rem) 1.25rem clamp(2.5rem, 6vw, 5.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateY(-40px);
}

@media (max-width: 520px) {
  .hero__content {
    transform: translateY(-10px);
  }
}

.hero__tag {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9.2vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  max-width: 20ch;
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.hero__title-line {
  display: block;
}

.hero__title-line--gold {
  color: var(--gold-bright);
}

.hero__lead {
  max-width: 44rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.85);
  margin-bottom: 1.75rem;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero__lead-line {
  display: block;
  margin-top: 0.25rem;
}

.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  width: fit-content;
  box-shadow: 0 14px 34px rgba(201, 162, 39, 0.22);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-gold-solid:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(201, 162, 39, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  justify-content: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.62rem 0.80rem 0.62rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--black);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 22px 58px rgba(201, 162, 39, 0.22), 0 14px 34px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(201, 162, 39, 0.55);
  width: fit-content;
  position: relative;
  isolation: isolate;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 72px rgba(201, 162, 39, 0.26), 0 18px 44px rgba(0, 0, 0, 0.32);
}

.btn-hero-primary:active {
  transform: translateY(0px);
}

.btn-hero-primary:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.6);
  outline-offset: 4px;
}

.btn-hero-primary__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.18);
  line-height: 1;
}

.btn-hero-primary__icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.26);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.hero-badge__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(201, 162, 39, 0.32);
  background: rgba(0, 0, 0, 0.3);
  font-weight: 900;
}

.hero-badge__title {
  font-weight: 800;
  color: rgba(250, 250, 250, 0.95);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  line-height: 1.15;
}

.hero-badge__sub {
  font-size: 0.74rem;
  color: rgba(250, 250, 250, 0.75);
  margin-top: 0.1rem;
  line-height: 1.15;
}

/* Contact strip under hero text area */
.hero-strip {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid var(--border);
}

/* Landing-style hero: hide legacy strip */
@media (min-width: 0px) {
  .hero-strip {
    display: none;
  }
}

.hero-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: grid;
  gap: 1rem;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .hero-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .hero-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(250, 250, 250, 0.9);
}

.hero-strip__item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

/* Diagonal footer of hero */
.hero__angle {
  position: relative;
  z-index: 1;
  height: 48px;
  background: linear-gradient(
    to bottom right,
    var(--gold) 0%,
    var(--gold) 50%,
    var(--white) 50%,
    var(--white) 100%
  );
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
  margin-top: auto;
}

@media (min-width: 600px) {
  .hero__angle {
    height: 64px;
  }
}

.hero-strip__item a {
  color: rgba(250, 250, 250, 0.92);
}

.hero-strip__item a:hover {
  color: var(--gold-bright);
}

/* ---------- Section common ---------- */
.section {
  padding: 4.5rem 1.25rem;
}

#harga {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--light {
  background: #f0f0f0;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  line-height: 1.05;
}

#tim .section__title {
  text-align: center;
  font-size: clamp(1rem, 2.2vw, 1.28rem);
  font-family: "patugo-font", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}

.section__title--bar {
  position: relative;
  padding-left: 1.25rem;
}

.section__title--bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  background: var(--gold);
}

.section__text {
  color: var(--gray-dark);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.section--dark .section__text {
  color: rgba(250, 250, 250, 0.75);
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.why-visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.why-visual__gold {
  position: absolute;
  width: 90%;
  height: 86%;
  right: -7%;
  top: 7%;
  background: linear-gradient(140deg, var(--gold) 0%, #b88f0f 100%);
  border-radius: 14px;
  transform: rotate(5deg);
  z-index: 0;
}

.why-visual__img {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.12);
  box-shadow:
    0 26px 46px rgba(10, 10, 10, 0.2),
    0 10px 20px rgba(10, 10, 10, 0.12);
  transform: rotate(-2.5deg);
}

.why-visual__img img {
  display: block;
  width: 100%;
  height: auto;
}

.why-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 16px;
  box-shadow:
    0 20px 40px rgba(15, 15, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  padding: 1.2rem 1.1rem 1.25rem;
}

@media (min-width: 900px) {
  .why-content {
    padding: 1.6rem 1.7rem 1.75rem;
  }
}

.why-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6b0a;
}

.why-content .section__title {
  margin-bottom: 0.7rem;
}

.why-content .section__text {
  margin-bottom: 1.15rem;
  line-height: 1.75;
  color: #303030;
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-gold {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-ghost-dark {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold);
  cursor: pointer;
}

/* ---------- Split hero (detailing) ---------- */
.split-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 72vh;
}

@media (min-width: 900px) {
  .split-hero {
    grid-template-columns: 1.15fr minmax(300px, 400px);
    min-height: 85vh;
  }
}

.split-hero__left {
  position: relative;
  min-height: 380px;
  z-index: 1;
}

.split-hero__panel {
  position: relative;
  z-index: 1;
}

.split-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.split-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.split-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.74) 0%, rgba(6, 6, 6, 0.5) 45%, rgba(6, 6, 6, 0.66) 100%),
    radial-gradient(circle at 22% 45%, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.split-hero__photo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.split-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 58%),
    linear-gradient(100deg, rgba(7, 7, 7, 0.62) 0%, rgba(7, 7, 7, 0.28) 48%, rgba(7, 7, 7, 0.46) 100%);
  pointer-events: none;
}

.split-hero__copy {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  color: var(--white);
}

@media (min-width: 900px) {
  .split-hero__copy {
    min-height: 100%;
    padding: 3rem 2.5rem;
    max-width: 34rem;
  }
}

.split-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
}

.split-hero__lead {
  margin: 0;
  max-width: 28rem;
  font-size: 1.05rem;
  color: rgba(250, 250, 250, 0.88);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
}

.split-hero__panel {
  background: rgba(0, 0, 0, 0.68);
  padding: 2rem 1.25rem;
  border-top: 3px solid var(--gold);
  backdrop-filter: blur(1.5px);
  display: grid;
  gap: 0.8rem;
}

.split-hero__panel h3 {
  color: var(--white);
}

@media (min-width: 900px) {
  .split-hero__panel {
    border-top: none;
    border-left: 3px solid var(--gold);
    padding: 2.5rem;
    align-content: center;
    gap: 0.95rem;
  }
}

.split-hero__stat {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin: 0;
}

.split-hero__stat-label {
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.72);
  margin: 0 0 0.35rem;
}

.panel-block {
  margin: 0;
  padding: 0.8rem 0.85rem 0.75rem;
  border-left: 2px solid rgba(214, 174, 30, 0.92);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 12px 12px 0;
}

.panel-block h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.panel-block p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.84);
}

.btn-outline-white {
  margin-top: 0.55rem;
  display: inline-flex;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  width: 100%;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

/* ---------- Services list ---------- */
.services-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .services-layout {
    grid-template-columns: minmax(240px, 340px) 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.service-row {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .service-row {
    grid-template-columns: 160px 1fr;
    align-items: start;
    gap: 1.5rem;
  }
}

.service-row__img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.service-row h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.service-row p {
  margin: 0 0 0.75rem;
  color: var(--gray-dark);
  font-size: 0.95rem;
}

.service-row a {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.service-row a:hover {
  color: var(--gold-dim);
}

/* ---------- Pricing ---------- */
.pricing-head {
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .pricing-head {
    max-width: 360px;
  }
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pricing-layout {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.price-card {
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.price-card--featured {
  background: var(--gold);
  color: var(--black);
}

.price-card--plain {
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.price-card__price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-card--plain .price-card__price {
  color: var(--gold-dim);
}

.price-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.price-card p {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.price-card .btn-outline-gold,
.price-card .btn-book {
  align-self: flex-start;
}

.price-card--featured .btn-book {
  border-color: var(--black);
  color: var(--black);
}

.price-card--featured .btn-book:hover {
  background: var(--black);
  color: var(--gold);
}

.price-card--plain .btn-book {
  border-color: var(--gold);
  color: var(--black);
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%);
}

.team-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem;
}

.team-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.team-card__body p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--gold);
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

/* ---------- Reviews embed (Google Maps) ---------- */
.reviews-embed {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 980px) {
  .reviews-embed {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.25rem;
    align-items: start;
  }
}

.reviews-tabs {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

@media (min-width: 520px) {
  .reviews-tabs {
    grid-template-columns: 1fr;
  }
}

.reviews-tab {
  text-align: left;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(20, 20, 20, 0.9);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.reviews-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.reviews-tab.is-active {
  background: rgba(201, 162, 39, 0.14);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}

.reviews-actions {
  margin-top: 1.1rem;
}

.reviews-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: rgba(50, 50, 50, 0.62);
}

.reviews-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: #000;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
  aspect-ratio: 16 / 10;
}

.reviews-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.reviews-list {
  margin-top: 0;
  display: grid;
  gap: 0;
}

.reviews-split {
  margin-top: 1.2rem;
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 960px) {
  .reviews-split {
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.reviews-summary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 245, 245, 0.93) 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  box-shadow: 0 14px 30px rgba(12, 12, 12, 0.07);
}

@media (min-width: 960px) {
  .reviews-summary {
    position: sticky;
    top: calc(var(--header-h) + 18px);
  }
}

.reviews-summary__score {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.reviews-summary__stars {
  color: #3f6482;
  letter-spacing: 0.11em;
  font-size: 1.05rem;
}

.reviews-summary__count {
  margin: 0.2rem 0 0.8rem;
  color: #666;
  font-size: 0.92rem;
}

.reviews-breakdown {
  display: grid;
  gap: 0.42rem;
}

.reviews-breakdown__row {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 0.45rem;
}

.reviews-breakdown__row span,
.reviews-breakdown__row small {
  font-size: 0.8rem;
  color: #444;
}

.reviews-breakdown__row div {
  height: 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.075);
  overflow: hidden;
}

.reviews-breakdown__row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6f89a1 0%, #88a1b8 100%);
}

.reviews-comments {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(12, 12, 12, 0.07);
  padding: 0 1.1rem;
  max-height: 610px;
  overflow-y: auto;
}

.reviews-comments::-webkit-scrollbar {
  width: 10px;
}

.reviews-comments::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
}

.reviews-comments::-webkit-scrollbar-thumb {
  background: rgba(116, 142, 165, 0.85);
  border-radius: 999px;
}

.review-card {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.review-stars {
  color: #3f6482;
  font-size: 0.95rem;
  letter-spacing: 0.17em;
  line-height: 1;
}

.review-about {
  margin: 0;
  font-size: 0.82rem;
  color: #6b6b6b;
}

.review-date {
  margin: 0 0 0 auto;
  font-size: 0.82rem;
  color: #7a7a7a;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}

.review-author h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: #121212;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.38rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: #3f6786;
}

.review-body {
  margin: 0;
  color: #2e2e2e;
  line-height: 1.62;
}

@media (max-width: 959px) {
  .reviews-comments {
    max-height: 520px;
  }
}

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.reviews-visual {
  position: relative;
}

.reviews-visual img {
  border-radius: 8px;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.reviews-visual::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40%;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
}

.review-quote {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.review-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* ---------- Contact / form ---------- */
.contact-section {
  background: linear-gradient(180deg, #f1f1f1 0%, #e9e9e9 100%);
}

.contact-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 1.35rem;
  }
}

.contact-form-wrap,
.contact-aside {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(10, 10, 10, 0.08);
}

.contact-form-wrap {
  position: relative;
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f6f6f6 0%, #ededed 100%);
  border: 1px solid #d8d8d8;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
  .contact-form-wrap {
    padding: 1.25rem 1.3rem 1.25rem;
  }
}

.contact-form-wrap .section__title {
  margin-bottom: 0.15rem;
  font-size: clamp(2.15rem, 4.6vw, 2.95rem);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.95;
}

.contact-form-wrap .section__text {
  margin-bottom: 0.95rem;
  max-width: 38rem;
  color: #111;
}

.contact-form-wrap__close {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  font-size: 1.9rem;
  line-height: 1;
  color: #1f1f1f;
  text-transform: lowercase;
  opacity: 0.9;
}

.form-grid {
  display: grid;
  gap: 0.55rem 0.75rem;
}

@media (min-width: 600px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.16rem;
  color: #191919;
}

.form-required {
  color: #d52027;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.46rem 0.08rem;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7f7f7f;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.95);
  box-shadow: none;
}

.form-field textarea {
  min-height: 56px;
  resize: vertical;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.45;
  min-height: 1.45em;
}

.form-status--success {
  color: #1b5e20;
}

.form-status--error {
  color: #b71c1c;
}

#booking-form .btn-gold-solid:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

#booking-form .btn-gold-solid {
  border-radius: 10px;
  font-size: 1.5rem;
  letter-spacing: 0;
  min-height: 54px;
  text-transform: lowercase;
  font-family: var(--font-display);
  font-weight: 400;
  background: #000;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

#booking-form .btn-gold-solid:hover {
  transform: translateY(-1px);
  background: #131313;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.contact-aside h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
  margin: 1.5rem 0 0.5rem;
}

.contact-aside h3:first-child {
  margin-top: 0;
}

.contact-aside p {
  margin: 0;
  color: #444;
  line-height: 1.55;
}

.branch-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--black);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.branch-title span {
  display: inline-block;
  line-height: 1.2;
}

.branch-instagram-icon {
  width: 16px;
  height: 16px;
  color: #c9a227;
  flex-shrink: 0;
  display: block;
}

.contact-aside {
  padding: 1.2rem 1.15rem 1.05rem;
}

@media (min-width: 900px) {
  .contact-aside {
    padding: 1.35rem 1.35rem 1.2rem;
  }
}

.contact-aside a {
  color: #1f1f1f;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  background: var(--black);
  color: var(--gray);
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-size: 0.8rem;
}

.site-footer strong {
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Buttons variant for light sections ---------- */
.btn-outline-gold--darkText {
  color: var(--black);
}

.btn-outline-gold--darkText:hover {
  color: var(--black);
}

/* ---------- Branch cards polish (uses existing blocks) ---------- */
#cabang .price-table-block {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

#cabang .price-table-block h3 {
  color: var(--black);
  margin-bottom: 0.5rem;
}

#cabang .btn-outline-gold {
  color: var(--black);
}

/* ---------- Gallery (horizontal editorial strip) ---------- */
#gallery-rail {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#gallery-rail::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

.gallery-stage {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 2rem calc(50% - 50vw) 0;
  padding: 2.5rem 0 1.25rem;
  background: linear-gradient(180deg, #f6f6f6 0%, #ececec 55%, #f0f0f0 100%);
  overflow: hidden;
}

.gallery-rail-outer {
  position: relative;
  z-index: 1;
  padding: 0 0 0.5rem;
}

.gallery-rail {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1.25rem 6vw 1.75rem;
  min-height: clamp(320px, 52vw, 460px);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gallery-strip__cell {
  position: relative;
  flex: 0 0 auto;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  background: #000;
  padding: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

button.gallery-strip__cell {
  padding: 0;
  border: none;
  cursor: pointer;
  background: #000;
  color: inherit;
  text-align: left;
}

button.gallery-strip__cell:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.gallery-strip__cell:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.gallery-strip__cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video: rasio mengikuti file (portrait/landscape) */
.gallery-strip__cell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-strip__cell--tall {
  width: clamp(200px, 22vw, 260px);
  height: clamp(300px, 42vw, 400px);
  transform: translateY(-12px);
}

.gallery-strip__cell--mid {
  width: clamp(220px, 26vw, 300px);
  height: clamp(240px, 34vw, 320px);
  transform: translateY(18px);
}

.gallery-strip__cell--wide {
  width: clamp(280px, 38vw, 420px);
  height: clamp(220px, 30vw, 300px);
  transform: translateY(6px);
}

.gallery-strip__cell--square {
  width: clamp(200px, 24vw, 280px);
  height: clamp(200px, 24vw, 280px);
  transform: translateY(-22px);
}

.gallery-strip__cell--video {
  height: clamp(200px, 28vw, 260px);
  aspect-ratio: var(--ar, 16 / 9);
  width: auto;
  min-width: clamp(200px, 26vw, 260px);
  transform: translateY(10px);
  background: #000;
}

.gallery-strip__cell--video-tall {
  height: clamp(260px, 36vw, 340px);
  aspect-ratio: var(--ar, 16 / 9);
  width: auto;
  min-width: clamp(220px, 28vw, 300px);
  transform: translateY(-8px);
}

/* Portrait videos: sedikit lebih besar */
.gallery-strip__cell--video.is-portrait {
  height: clamp(240px, 34vw, 320px);
}

.gallery-strip__cell--video-tall.is-portrait {
  height: clamp(300px, 42vw, 400px);
}

.gallery-strip__cap {
  position: absolute;
  left: 0.65rem;
  bottom: 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.gallery-timeline {
  position: relative;
  z-index: 1;
  max-width: min(920px, 88vw);
  margin: 0.25rem auto 0;
  height: 44px;
}

.gallery-timeline__ticks {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 10px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.18) 0 1px,
    transparent 1px 10px
  );
  border-radius: 2px;
  opacity: 0.55;
}

.gallery-timeline__knob {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 3px;
  height: 28px;
  margin-top: -14px;
  background: var(--black);
  border-radius: 2px;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.35);
  transition: left 0.08s linear;
  pointer-events: none;
  transform: translateX(-50%);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.82);
  z-index: 2000;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__panel {
  width: min(1100px, 100%);
  max-height: min(80vh, 720px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: #000;
  box-shadow: var(--shadow-hard);
}

.gallery-modal__panel img {
  width: 100%;
  height: 100%;
  max-height: min(80vh, 720px);
  object-fit: contain;
  background: #000;
}

.gallery-modal__panel--video {
  width: min(960px, 96vw);
  max-width: 96vw;
  padding: 0.5rem;
  background: #0a0a0a;
}

.gallery-modal__panel--video video {
  width: 100%;
  max-height: min(78vh, 860px);
  height: auto;
  display: block;
  border-radius: 10px;
}

#gallery-rail .video-preview {
  cursor: pointer;
}

.gallery-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  background: rgba(10, 10, 10, 0.85);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
}

/* ---------- Video block ---------- */
.video-block {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .video-block {
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
  }
}

.video-frame {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  padding: 0.75rem;
}

.video-frame video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  background: #000;
}

.video-hint {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* ---------- Daftar harga (tabel) ---------- */
.price-board {
  display: grid;
  gap: 2rem;
  margin-top: 1rem;
}

@media (min-width: 800px) {
  .price-board {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.price-table-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 1rem;
}

.price-table-block h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(201, 162, 39, 0.92);
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

/* Rapikan tampilan harga (scoped ke section harga) */
#harga .price-board {
  gap: 1.5rem;
}

#harga .price-table-block {
  padding: 1.05rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

#harga .price-table-block h3,
#harga .price-table-block h4 {
  margin-top: 0;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.price-table th,
.price-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

#harga .price-table {
  font-size: 0.88rem;
  table-layout: fixed;
}

#harga .price-table th,
#harga .price-table td {
  padding: 0.55rem 0.45rem;
}

#harga .price-table td:first-child {
  padding-left: 0.2rem;
}

#harga .price-table td:last-child,
#harga .price-table th:last-child {
  padding-right: 0.2rem;
}

/* ---------- Pricing slider ---------- */
.pricing-stack {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.15rem;
}

.pricing-slider {
  position: relative;
  overflow: visible;
}

.pricing-rail {
  --pricing-pad: 0px;
  margin-top: 1.15rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 0.35rem 0 0.75rem;
  scroll-padding-left: 0;
  scroll-padding-right: 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pricing-rail::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

.pricing-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.pricing-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 980px) {
  .pricing-slide {
    flex-basis: 100%;
  }
}

.pricing-slide > * {
  margin-top: 0;
}

.pricing-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.pricing-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.12);
  cursor: pointer;
  padding: 0;
}

.pricing-dot.is-active {
  width: 22px;
  background: rgba(201, 162, 39, 0.75);
}

.pricing-dot:focus-visible {
  outline: 2px solid rgba(201, 162, 39, 0.55);
  outline-offset: 3px;
}

.pricing-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  z-index: 2;
  border: none;
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: opacity 160ms ease, filter 160ms ease;
}

.pricing-nav span {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 900;
  color: currentColor;
}

.pricing-nav:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.pricing-nav--prev {
  left: -24px;
}

.pricing-nav--next {
  right: -24px;
}

.pricing-nav:hover {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55));
}

.pricing-nav:disabled {
  opacity: 0;
  pointer-events: none;
  filter: none;
}

@media (max-width: 720px) {
  .pricing-nav {
    width: 40px;
  }
  .pricing-rail {
    --pricing-pad: 0px;
  }
  .pricing-nav--prev {
    left: -18px;
  }
  .pricing-nav--next {
    right: -18px;
  }
  .pricing-nav span {
    font-size: 1.5rem;
  }
}

.price-table th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--gold-bright);
  white-space: nowrap;
}

.price-table tbody tr:hover {
  background: rgba(201, 162, 39, 0.08);
}

#harga .price-table tbody tr.price-row-action {
  cursor: pointer;
}

#harga .promo-coating.price-row-action {
  cursor: pointer;
}

.section--dark .price-table td:first-child {
  color: rgba(250, 250, 250, 0.92);
}

.section--dark .price-table th {
  color: rgba(250, 250, 250, 0.5);
  border-bottom-color: rgba(201, 162, 39, 0.35);
}

.pricing-cta {
  margin-top: 2rem;
}

.price-packages {
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.price-packages__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--white);
  font-size: 1.5rem;
}

.price-packages__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 980px) {
  .price-packages__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    align-items: start;
  }
}

/* ---------- Salon packages (single card) ---------- */
.wash-card,
.salon-card {
  padding: 1.15rem 1.1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.wash-card {
  /* samakan tinggi dengan card lain di slider */
  min-height: 460px;
}

.salon-card__title {
  margin: 0 0 1rem;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--white);
  font-size: 2.2rem;
}

.salon-card__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.75rem;
}

@media (min-width: 980px) {
  .salon-card__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.salon-card__col {
  padding: 0.65rem 0.65rem 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: rgba(0, 0, 0, 0.15);
}

.salon-card__col h4 {
  margin: 0 0 0.75rem;
}

.promo-coating {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 1.15rem 1.1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  background:
    linear-gradient(130deg, rgba(6, 6, 6, 0.84) 12%, rgba(6, 6, 6, 0.6) 55%, rgba(6, 6, 6, 0.78) 100%),
    url("../img/promo-coating-bg.png") center / cover no-repeat;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-coating::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(214, 174, 30, 0.14), rgba(214, 174, 30, 0) 42%);
  pointer-events: none;
}

.promo-coating > * {
  position: relative;
  z-index: 1;
}

.salon-card {
  min-height: 460px;
}

@media (max-width: 520px) {
  .price-packages__title {
    font-size: 1.35rem;
  }
  .promo-coating__title {
    font-size: 1.95rem;
  }
  .salon-card__title {
    font-size: 1.75rem;
  }
  .wash-card,
  .salon-card,
  .promo-coating {
    min-height: 400px;
  }
}

.promo-coating__eyebrow {
  margin: 0;
  color: rgba(201, 162, 39, 0.92);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.promo-coating__title {
  margin: 0.35rem 0 0.35rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--white);
  font-size: 2.45rem;
}

.promo-coating__price {
  margin: 0;
  color: rgba(250, 250, 250, 0.9);
  font-size: 1.2rem;
}

.promo-coating__price strong {
  color: var(--gold-bright);
}

.promo-coating__list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: rgba(250, 250, 250, 0.9);
  display: grid;
  gap: 0.55rem;
  font-size: 1.15rem;
  line-height: 1.5;
}

@media (max-width: 520px) {
  .promo-coating {
    min-height: 280px;
  }
}

/* ---------- Fasilitas / tim (satu foto outlet) ---------- */
.facility-showcase {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.facility-showcase img {
  width: 100%;
  height: clamp(320px, 46vw, 520px);
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

.facility-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 520px at 30% 20%, rgba(201, 162, 39, 0.10), transparent 55%),
    linear-gradient(to top, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.15) 46%, transparent 70%);
  pointer-events: none;
}

.facility-showcase__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.35rem 1.25rem 1.15rem;
  backdrop-filter: blur(10px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.facility-showcase__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.06em;
  color: var(--white);
}

.facility-showcase__body p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(250, 250, 250, 0.85);
  max-width: 46rem;
}

/* ---------- Facility icons ---------- */
.facility-icons {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .facility-icons {
    gap: 0.85rem;
  }
}

.facility-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.92rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: transform 160ms ease, background 160ms ease;
}

.facility-icon__badge {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: none;
  color: var(--gold-bright);
  background: transparent;
  box-shadow: none;
}

.facility-icon__badge img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(74%) sepia(64%) saturate(544%) hue-rotate(8deg) brightness(95%)
    contrast(95%);
}

.facility-icon__label {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
  color: rgba(250, 250, 250, 0.92);
}

.facility-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.02);
}

.facility-cafe {
  margin-top: 1.35rem;
  padding: 1.15rem 1.1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

.facility-cafe__head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--white);
  font-size: 1.6rem;
}

.facility-cafe__head p {
  margin: 0 0 1rem;
  color: rgba(250, 250, 250, 0.82);
  max-width: 56rem;
}

.facility-cafe__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .facility-cafe__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.facility-cafe__grid img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, 0.16);
  background: #000;
}
