:root {
  --ink: #16110f;
  --ivory: #f4eee8;
  --ivory-2: #ebe3da;
  --white: #fffdfb;
  --wine: #6e0f1a;
  --lacquer: #b3202e;
  --gold: #c9a56a;
  --pink: #e7b7c8;
  --blush: #f7e4eb;
  --muted: #6d5f58;
  --line: rgba(22, 17, 15, 0.08);
  --shadow: 0 14px 36px rgba(22, 17, 15, 0.08);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
  --script: "Great Vibes", cursive;
  --header: 3.85rem;
  --nav: calc(62px + env(safe-area-inset-bottom));
  --dock: calc(90px + env(safe-area-inset-bottom));
  --radius: 22px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 0.6rem);
  scroll-padding-bottom: calc(var(--dock) + 0.6rem);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  padding-bottom: var(--dock);
}

body.lock { overflow: hidden; }

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

button, input { font: inherit; color: inherit; }

a { color: inherit; }

h1, h2, h3, p { margin: 0; }

h1, h2, .choice h3, .pull, .sheet-card h3, .kursus h2, .area-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip {
  position: absolute;
  left: 0.8rem;
  top: -4rem;
  background: var(--ink);
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  z-index: 100;
}

.skip:focus { top: 0.6rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ico {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  flex: none;
}

.wrap { width: min(1120px, calc(100% - 2.2rem)); margin-inline: auto; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.4rem;
}

.script { font-family: var(--script); font-weight: 400; line-height: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0 0.85rem;
  background: rgba(244, 238, 232, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 238, 232, 0.96);
  box-shadow: 0 8px 22px rgba(22, 17, 15, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  min-width: 0;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.16rem;
  min-width: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--muted);
  white-space: nowrap;
}

.logo-img {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: block;
  flex: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(22, 17, 15, 0.12);
}

.desk-nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 0.4rem; }

.wa-btn,
.hamburger,
.menu-close,
.sheet-close {
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.wa-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--wine);
  color: white;
  text-decoration: none;
}

.wa-label { display: none; }

.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 15px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

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

.btn-wine { background: var(--wine); color: white; box-shadow: 0 8px 18px rgba(110, 15, 26, 0.18); }
.btn-hero { background: white; color: var(--ink); }
.btn-hero .ico-wa { color: #25D366; }
.btn-line { background: transparent; color: white; border-color: rgba(255, 255, 255, 0.72); }
.btn-ink { background: var(--ink); color: white; }
.btn-outline-wine {
  background: white;
  color: var(--wine);
  border-color: var(--wine);
  min-height: 54px;
  padding-inline: 1.3rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header) - var(--dock));
  display: flex;
  color: white;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }

.hero-media img {
  position: absolute;
  width: 168%;
  height: auto;
  max-width: none;
  left: -34%;
  top: -52%;
  object-fit: cover;
  animation: none;
  transform: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  padding: 7.2rem 1.1rem 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(92, 88, 84, 0) 0%,
    rgba(86, 82, 78, 0.14) 28%,
    rgba(62, 58, 54, 0.34) 52%,
    rgba(28, 26, 24, 0.52) 76%,
    rgba(8, 8, 8, 0.66) 100%
  );
}

.hero .eyebrow { color: #f6eadc; }

.hero h1 {
  font-size: 3.05rem;
  line-height: 0.94;
  margin: 0.2rem 0 0.7rem;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.hero-script {
  margin: 0.85rem 0 0;
  text-align: right;
  font-size: 1.85rem;
  color: #fff8f3;
  transform: rotate(-6deg);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.75rem;
  margin: 0.7rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.perks li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
}

.perks .ico { margin-top: 0.05rem; color: var(--gold); }

.section { padding: 1.7rem 0 0.4rem; }

.sec-head { margin-bottom: 0.95rem; }

.sec-head h2,
.about h2,
.studio h2,
.harga h2,
.kursus h2,
.booking h2 {
  font-size: 2.45rem;
  line-height: 1.05;
  margin-bottom: 0.45rem;
}

.sec-head p:last-child,
.about-copy,
.studio p,
.harga p,
.kursus p,
.booking p,
.area-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.choices { display: grid; gap: 0.85rem; }

.choice {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.choice-photo { position: relative; height: 188px; }

.choice-photo img:not(.photo-logo),
.about-photo img:not(.photo-logo),
.studio-photo img,
.kursus img,
.tile-open img,
.svc img,
.ask-list img,
.sheet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choice-photo-pink img { object-position: 50% 70%; }

img.photo-logo {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 95px;
  height: 95px;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(22, 17, 15, 0.16);
}

.choice-body { padding: 0.95rem 1rem 1.15rem; display: flex; flex-direction: column; align-items: flex-start; }
.choice .btn { align-self: center; }

.choice-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--wine);
  margin-bottom: 0.25rem;
}

.choice h3, .area-card h3 {
  font-size: 1.7rem;
  line-height: 1.05;
  margin-bottom: 0.55rem;
}

.choice ul {
  list-style: none;
  margin: 0 0 0.95rem;
  padding: 0;
  display: grid;
  gap: 0.32rem;
}

.choice li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.choice li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.svc-list { display: grid; gap: 0.7rem; }

.svc {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-decoration: none;
  min-height: 124px;
}

.svc img {
  width: 112px;
  height: 112px;
  border-radius: 16px;
}

.svc-copy { display: grid; gap: 0.2rem; min-width: 0; }
.svc-copy strong { font-size: 1.05rem; }
.svc-copy span { color: var(--muted); font-size: 0.86rem; line-height: 1.35; }

.arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-right: 0.25rem;
}

.nudge {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  background: white;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.nudge strong { display: block; font-size: 0.92rem; }
.nudge span span, .nudge > span { color: var(--muted); font-size: 0.82rem; }

.nudge-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
}

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

.filter {
  border: 1px solid rgba(22, 17, 15, 0.14);
  background: var(--white);
  border-radius: 999px;
  min-height: 36px;
  padding: 0 0.72rem;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 650;
  cursor: pointer;
}

.filter.is-on {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #e7ddd4;
}

.tile-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  text-align: left;
}

.tile-open img {
  aspect-ratio: 1 / 1.08;
  transition: transform 0.5s ease;
}

.tile-open::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background: linear-gradient(to top, rgba(16, 10, 8, 0.62), transparent);
  pointer-events: none;
}

.tile-meta {
  position: absolute;
  z-index: 1;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.45rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
}

.cat {
  background: rgba(255, 252, 249, 0.94);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.18rem 0.48rem;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.book-mini {
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.heart {
  position: absolute;
  z-index: 2;
  top: 0.4rem;
  right: 0.4rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 252, 249, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.heart.is-on { background: var(--wine); color: white; }
.heart.is-on .ico { fill: currentColor; }
.heart.is-on use { fill: currentColor; }

.more-btn { display: flex; margin: 0.9rem auto 0; }

.ba-frame {
  position: relative;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #f7f1eb 0 50%, #f6e3ea 50% 100%);
  box-shadow: var(--shadow);
}

.ba-after-img,
.ba-before { display: none; }

.ba.is-live .ba-after-img,
.ba.is-live .ba-before { display: block; }

.ba.is-live .ba-empty { display: none; }

.ba-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 58%;
  overflow: hidden;
}

.ba-before-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.ba-tag {
  position: absolute;
  top: 0.75rem;
  z-index: 3;
  background: rgba(255, 252, 249, 0.94);
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-tag-before { left: 0.75rem; }
.ba-tag-after { right: 0.75rem; }

.ba-handle {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 2px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle span,
.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(22, 17, 15, 0.16);
}

.ba-handle span {
  width: 16px;
  height: 16px;
  background:
    linear-gradient(90deg, transparent 40%, var(--wine) 40% 48%, transparent 48% 52%, var(--wine) 52% 60%, transparent 60%);
  box-shadow: none;
}

.ba-empty {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-empty div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  gap: 0.15rem;
}

.ba-empty strong {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
}

.ba-empty span { color: var(--muted); font-size: 0.8rem; }

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.ba:not(.is-live) .ba-range { pointer-events: none; }

.ba .btn { margin-top: 0.85rem; }

.about-photo,
.studio-photo,
.kursus figure {
  margin: 0.9rem 0 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.about-photo img:not(.photo-logo) {
  height: min(300px, calc(100svh - var(--header) - var(--dock) - 22rem));
}
.studio-photo img { height: 360px; }
#tentang { scroll-margin-bottom: calc(var(--dock) + 1rem); }

.about-copy { margin-top: 0.35rem; }

.pull {
  margin: 1rem 0 0;
  padding: 0.15rem 0 0.15rem 0.9rem;
  border-left: 2px solid var(--gold);
  font-size: 1.35rem;
  line-height: 1.2;
  font-style: italic;
}

.pull cite {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}

.studio {
  margin: 1.4rem 0.7rem 0.2rem;
  padding: 1.25rem 0 1.3rem;
  border-radius: 28px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255, 255, 255, 0.45), transparent 50%),
    linear-gradient(180deg, #f8e7ee 0%, #f3d6e1 100%);
}

.studio .wrap { width: min(1120px, calc(100% - 1.5rem)); }

.studio .eyebrow { color: #7a3044; }

.studio-points {
  list-style: none;
  margin: 0.9rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.studio-points li {
  background: rgba(255, 253, 251, 0.72);
  border-radius: 16px;
  padding: 0.7rem 0.8rem;
}

.studio-points strong { display: block; font-size: 0.95rem; }
.studio-points span { color: var(--muted); font-size: 0.84rem; }

.studio-photo { order: -1; margin: 0 0 0.85rem; }
.studio-photo img { height: 230px; object-position: 50% 62%; }

.harga-layout { display: grid; gap: 0.85rem; }

.ask-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ask-list a {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.45rem;
  background: var(--white);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.ask-list img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
}

.ask-list strong { display: block; }
.ask-list small { color: var(--muted); }

.ask-list em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--wine);
  padding-right: 0.35rem;
}

.kursus-grid { display: grid; gap: 0.3rem; }
.kursus img { height: 280px; border-radius: 24px; }
.kursus .btn { margin-top: 0.9rem; }
.kursus h2 { font-size: 2.2rem; }

.soc-row { display: grid; gap: 0.65rem; }

.soc {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  background: var(--white);
  border-radius: 18px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.soc-ico {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--ivory-2);
  color: white;
}

.soc-ico .ico { width: 34px; height: 34px; }

.brand-ig {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 46%, #6228d7 100%);
  color: #fff;
}

.brand-tt {
  background: #111;
  color: #fff;
}

.brand-tt .ico {
  filter: drop-shadow(-1.5px -1.2px 0 #25f4ee) drop-shadow(1.5px 1.2px 0 #fe2c55);
}

.brand-wa {
  background: #25d366;
  color: #fff;
}

.btn .ico-wa { width: 1.45rem; height: 1.45rem; color: #25d366; }

.soc small { display: block; color: var(--muted); font-size: 0.75rem; }
.soc strong { font-size: 1.02rem; }

.booking-card {
  background: var(--white);
  border-radius: 26px;
  padding: 1.2rem 1rem 1.15rem;
  box-shadow: var(--shadow);
}

.booking-actions { margin-top: 1rem; display: grid; justify-items: start; gap: 0.55rem; }

.phone {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.4rem;
}

.quick a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.orb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: var(--ivory);
}

.area-grid { display: grid; gap: 0.7rem; }

.area-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.area-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  color: var(--wine);
  font-weight: 750;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer {
  margin-top: 1.6rem;
  padding: 1.4rem 0 1.6rem;
  background: #efe6de;
}

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

.footer-script {
  margin-top: 0.7rem;
  font-size: 1.8rem;
  color: var(--lacquer);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.35rem;
}

.footer a { text-decoration: none; font-size: 0.92rem; }
.footer-contact a { font-weight: 650; }

.dock {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(22, 17, 15, 0.06);
}

.tabbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0.28rem 0.15rem calc(0.32rem + env(safe-area-inset-bottom));
  background: #fffdfb;
}

.tabbar a,
.tabbar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  min-height: 44px;
  border: 0;
  background: none;
  text-decoration: none;
  color: #8d7e76;
  font-size: 0.68rem;
  font-weight: 650;
  cursor: pointer;
}

.tabbar .ico { width: 1.05rem; height: 1.05rem; }
.tabbar .is-active { color: var(--wine); }

.float-book { display: none; }

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: var(--nav);
  z-index: 80;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  transform: translateX(104%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: auto;
  padding: 0.85rem 1.1rem 1.2rem;
}

.menu.is-open {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.menu-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
}

.menu-list { margin-top: 0.6rem; display: grid; }

.menu-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 650;
  font-size: 1.02rem;
}

.menu-list .chev { margin-left: auto; color: #b3a49c; }

.menu-social { margin-top: 1.2rem; }
.menu-social p {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--muted);
}

.menu-social div { display: flex; gap: 0.5rem; margin-top: 0.55rem; }

.menu-social a {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 0;
  background: white;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: white;
}

.menu-social a .ico { width: 30px; height: 30px; }

.menu-social a.brand-ig { background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 46%, #6228d7 100%); }
.menu-social a.brand-tt { background: #111; }
.menu-social a.brand-wa { background: #25d366; }

.menu-script {
  margin: auto 0 0.2rem;
  padding-top: 1.4rem;
  text-align: center;
  font-size: 2.15rem;
  color: var(--lacquer);
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.sheet.is-open { opacity: 1; pointer-events: auto; }

.sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(22, 17, 15, 0.48);
  cursor: pointer;
}

.sheet-card {
  position: relative;
  background: var(--ivory);
  border-radius: 24px 24px 0 0;
  padding: 1rem 1rem calc(1.1rem + env(safe-area-inset-bottom));
  transform: translateY(22px);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.sheet.is-open .sheet-card { transform: none; }

.sheet-card img {
  height: 240px;
  border-radius: 18px;
  margin-bottom: 0.75rem;
}

.sheet-card h3 { font-size: 2rem; line-height: 1; margin-bottom: 0.3rem; }
.sheet-card p { color: var(--muted); margin-bottom: 0.85rem; }
.sheet-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 253, 251, 0.92);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in { opacity: 1; transform: none; }

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

::selection { background: #e7b7c8; color: var(--ink); }

@keyframes settle { to { transform: scale(1); } }

@media (hover: hover) {
  .tile:hover img { transform: scale(1.045); }
  .choice:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(22, 17, 15, 0.1); }
  .choice:hover .choice-photo img:not(.photo-logo) { transform: scale(1.05); }
  .svc:hover,
  .soc:hover,
  .area-card:hover,
  .ask-list a:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(22, 17, 15, 0.09); }
}

@media (min-width: 480px) {
  .wa-btn {
    width: auto;
    padding: 0 0.85rem;
    gap: 0.35rem;
    display: inline-flex;
    align-items: center;
  }
  .wa-label { display: inline; font-size: 0.82rem; font-weight: 700; }
}

@media (min-width: 768px) {
  :root { --dock: 0px; --nav: 0px; }
  .dock { display: none; }
  .wrap { width: min(1120px, calc(100% - 3rem)); }
  .hero h1 { font-size: 4.4rem; }
  .hero-media img { top: -70%; left: -18%; }
  .choices,
  .area-grid,
  .soc-row,
  .kursus-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .svc-list { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .about-grid,
  .studio-grid,
  .harga-layout,
  .booking-card,
  .footer-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.6rem;
    align-items: center;
  }
.about-photo,
.studio-photo,
.kursus figure { margin-top: 0; }
.studio-photo { order: 0; }
  .kursus figure { order: -1; }
  .booking-actions { margin-top: 0; justify-items: start; }
  .ba-frame { height: 420px; }
  .sec-head h2,
  .about h2,
  .studio h2,
  .harga h2,
  .booking h2 { font-size: 3.1rem; }
  .studio { margin: 2rem 1.2rem; padding: 2rem 0; }
}

@media (min-width: 1024px) {
  :root { --dock: 0px; --nav: 0px; --header: 5rem; }
  .brand-name { font-size: 1.2rem; }
  .brand-sub { font-size: 0.64rem; }
  .logo-img { width: 54px; height: 54px; }
  body { padding-bottom: 0; }
  .dock { display: none; }
  .hamburger { display: none; }
  .desk-nav { display: flex; align-items: center; gap: 1.15rem; }
  .desk-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 650;
    color: #5e514b;
  }
  .desk-nav a.is-active,
  .desk-nav a:hover { color: var(--wine); }
  .site-header { padding-inline: 1.6rem; }
  .float-book {
    position: fixed;
    z-index: 45;
    right: 1.4rem;
    bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 58px;
    padding: 0.45rem 1rem 0.45rem 0.5rem;
    border-radius: 999px;
    background: var(--wine);
    color: white;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(110, 15, 26, 0.28);
  }
  .float-book .ico { width: 38px; height: 38px; padding: 0.55rem; background: rgba(255,255,255,0.12); border-radius: 50%; }
  .float-book small { display: block; opacity: 0.86; font-weight: 500; font-size: 0.78rem; }
  .hero {
    display: grid;
    grid-template-columns: minmax(440px, 0.92fr) 1.08fr;
    min-height: calc(100svh - var(--header));
    color: var(--ink);
    background: var(--ivory);
  }
  .hero-media { position: relative; min-height: 0; }
  .hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: none;
    transform: none;
    object-position: 50% 30%;
  }
  .hero-copy {
    order: -1;
    margin: 0;
    background: none;
    padding: 6vh 5vw 6vh 6vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero .eyebrow { color: var(--wine); }
  .hero h1 {
    font-size: clamp(4.2rem, 5vw, 5.6rem);
    color: var(--ink);
    text-shadow: none;
    max-width: 12ch;
  }
  .hero { overflow: visible; }
  .hero-copy { padding-top: 4vh; padding-bottom: 4vh; }
  .hero-lead { color: var(--muted); font-size: 1.08rem; }
  .btn-hero { background: var(--wine); color: white; }
  .hero .btn-line { color: var(--ink); border-color: rgba(22, 17, 15, 0.22); }
  .hero-script { color: var(--lacquer); text-shadow: none; text-align: left; font-size: 2.4rem; }
  .perks {
    color: var(--ink);
    border-top-color: var(--line);
    grid-template-columns: repeat(4, 1fr);
    max-width: 640px;
  }
  .choice-photo { height: 230px; }
  .svc-list { grid-template-columns: repeat(5, 1fr); align-items: stretch; }
  .svc {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    align-items: stretch;
    padding: 0.5rem 0.5rem 0.85rem;
    min-height: 100%;
  }
  .svc img { width: 100%; height: 190px; }
  .arrow { justify-self: end; margin: 0.35rem 0.2rem 0; }
  .mosaic { grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
  .about-photo img:not(.photo-logo),
  .studio-photo img { height: 520px; }
  img.photo-logo { width: 126px; height: 126px; }
  .studio {
    margin: 2.4rem 0 0;
    border-radius: 0;
    padding: 3.2rem 0;
  }
  .studio .wrap { width: min(1120px, calc(100% - 4rem)); }
  .sheet { align-items: center; justify-items: center; }
  .sheet-card {
    width: min(440px, calc(100% - 2rem));
    border-radius: 24px;
    padding-bottom: 1.2rem;
  }
  .footer { padding: 2.4rem 0; }
}

@media (min-width: 1440px) {
  .wrap,
  .studio .wrap { width: min(1200px, calc(100% - 8rem)); }
  .hero-copy { padding-left: 7vw; }
  .hero h1 { font-size: 5.5rem; }
  .sec-head h2,
  .about h2,
  .studio h2,
  .harga h2,
  .booking h2 { font-size: 3.6rem; }
  .svc img { height: 220px; }
  .choice-photo { height: 260px; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes riseScript {
  from { opacity: 0; transform: translateY(12px) rotate(-6deg); }
  to { opacity: 1; transform: rotate(-6deg); }
}

@keyframes menuIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.16); }
  100% { transform: scale(1); }
}

.hero-copy > * {
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > :nth-child(1) { animation-delay: 0.08s; }
.hero-copy > :nth-child(2) { animation-delay: 0.16s; }
.hero-copy > :nth-child(3) { animation-delay: 0.24s; }
.hero-copy > :nth-child(4) { animation-delay: 0.32s; }
.hero-copy > :nth-child(5) { animation-delay: 0.4s; }
.hero-copy > :nth-child(6) { animation-delay: 0.48s; }
.hero-copy > .hero-script { animation-name: riseScript; }

.choice,
.svc,
.soc,
.area-card,
.ask-list a {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.choice-photo img:not(.photo-logo) {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter {
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.filter:active { transform: scale(0.96); }

.tabbar a,
.tabbar button {
  transition: color 0.25s ease, transform 0.25s ease;
}

.tabbar a:active,
.tabbar button:active { transform: scale(0.94); }

.heart {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, color 0.25s ease;
}

.heart.is-on { animation: pop 0.35s cubic-bezier(0.22, 1, 0.36, 1); }

.choices .reveal:nth-child(2) { transition-delay: 0.1s; }
.svc-list .reveal:nth-child(2) { transition-delay: 0.07s; }
.svc-list .reveal:nth-child(3) { transition-delay: 0.14s; }
.svc-list .reveal:nth-child(4) { transition-delay: 0.21s; }
.svc-list .reveal:nth-child(5) { transition-delay: 0.28s; }
.soc-row .reveal:nth-child(2) { transition-delay: 0.1s; }
.ask-list .reveal:nth-child(2) { transition-delay: 0.06s; }
.ask-list .reveal:nth-child(3) { transition-delay: 0.12s; }
.ask-list .reveal:nth-child(4) { transition-delay: 0.18s; }
.ask-list .reveal:nth-child(5) { transition-delay: 0.24s; }

.menu.is-open .menu-list a {
  animation: menuIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.menu.is-open .menu-list a:nth-child(1) { animation-delay: 0.04s; }
.menu.is-open .menu-list a:nth-child(2) { animation-delay: 0.08s; }
.menu.is-open .menu-list a:nth-child(3) { animation-delay: 0.12s; }
.menu.is-open .menu-list a:nth-child(4) { animation-delay: 0.16s; }
.menu.is-open .menu-list a:nth-child(5) { animation-delay: 0.2s; }
.menu.is-open .menu-list a:nth-child(6) { animation-delay: 0.24s; }
.menu.is-open .menu-list a:nth-child(7) { animation-delay: 0.28s; }
.menu.is-open .menu-list a:nth-child(8) { animation-delay: 0.32s; }

.nav-veil {
  position: fixed;
  top: var(--header);
  right: 0;
  bottom: var(--nav);
  left: 0;
  z-index: 35;
  background: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease;
}

body.is-nav .nav-veil {
  opacity: 1;
  pointer-events: auto;
}

.is-arrived {
  animation: rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-copy > *,
  .hero-media img,
  .tile-open img,
  .choice-photo img,
  .btn,
  .menu,
  .menu-list a,
  .menu-social a,
  .sheet,
  .sheet-card,
  .choice,
  .svc,
  .soc,
  .area-card,
  .ask-list a,
  .filter,
  .heart,
  .tabbar a,
  .tabbar button,
  .site-header,
  .nav-veil,
  .is-arrived {
    animation: none;
    transition: none;
  }
  .reveal,
  .hero-copy > *,
  .menu-list a { opacity: 1; transform: none; }
  .hero-script { transform: rotate(-6deg); }
  .menu { transform: none; visibility: hidden; }
  .menu.is-open { visibility: visible; }
}
