/* ============================================================
   MILIA — Pro Audio & Lighting
   Type: Space Grotesk (display) · Inter (body) · Space Mono (label)
   Tokens: design/brand-tokens.md
   ============================================================ */

@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/spacegrotesk-500.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/spacegrotesk-600.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/spacegrotesk-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Space Mono'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/spacemono-700.woff2') format('woff2'); }

:root {
  /* brand */
  --gold: #D4BC0D;          /* kuning logo */
  --gold-bright: #F2D64B;   /* highlight di layar gelap */
  --amber: #E0A81F;         /* ujung hangat gradasi */

  /* netral warm-dark */
  --bg: #0B0B0C;
  --bg-2: #121213;
  --bg-3: #191919;
  --paper: #F4F3EF;
  --muted: rgba(244, 243, 239, .62);
  --muted-2: rgba(244, 243, 239, .42);
  --line: rgba(244, 243, 239, .10);
  --line-2: rgba(244, 243, 239, .18);

  --display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --chamfer: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  --nav-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--gold); color: #0B0B0C; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 26px; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; letter-spacing: -0.025em; line-height: 1.06; }
h2 { font-size: clamp(30px, 4.1vw, 50px); margin-bottom: 18px; line-height: 1.1; }
h3 { font-size: 20px; letter-spacing: -0.015em; line-height: 1.28; }
.accent { color: var(--gold-bright); }

.eyebrow {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; flex: none; opacity: .8; }
.eyebrow.dark { color: rgba(11, 11, 12, .72); }

.lead { font-size: clamp(15.5px, 1.75vw, 18.5px); line-height: 1.66; color: var(--muted); max-width: 620px; }
.body { color: var(--muted); margin-bottom: 22px; }
.fineprint { font-size: 12px; color: var(--muted-2); margin: 14px 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(102deg, var(--gold-bright), var(--amber));
  color: #0B0B0C;
  box-shadow: 0 10px 30px -8px rgba(226, 181, 31, .55);
}
.btn-gold:hover { box-shadow: 0 16px 40px -10px rgba(226, 181, 31, .7); }
.btn-gold .arw { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.btn-gold:hover .arw { transform: translateX(3px); }
.btn-line {
  border: 1px solid var(--line-2);
  color: var(--paper);
  background: rgba(244, 243, 239, .03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-line:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-dark { background: #0B0B0C; color: var(--paper); box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .6); }
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 30px; font-size: 15.5px; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.cta-row.center { justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(11, 11, 12, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 11px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; }
/* logo lockup 2 baris (wordmark + tagline) — butuh tinggi cukup supaya taglinenya terbaca */
.nav-logo img { height: 46px; width: auto; transition: height .35s ease; }
.nav.scrolled .nav-logo img { height: 38px; }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 243, 239, .03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--paper); background: rgba(244, 243, 239, .07); }

/* tombol hamburger — hanya tampil di mobile */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: 10px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(11, 11, 12, .5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--paper);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* panel menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 96px 26px calc(30px + env(safe-area-inset-bottom));
  background: rgba(8, 8, 9, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.8,.3,1);
}
.mobile-menu.open { opacity: 1; transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 8vw, 34px);
  letter-spacing: -0.03em;
  color: var(--paper);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(-14px);
}
.mobile-menu.open nav a { animation: mmIn .45s cubic-bezier(.2,.8,.3,1) forwards; }
.mobile-menu.open nav a:nth-child(1) { animation-delay: .04s; }
.mobile-menu.open nav a:nth-child(2) { animation-delay: .09s; }
.mobile-menu.open nav a:nth-child(3) { animation-delay: .14s; }
.mobile-menu.open nav a:nth-child(4) { animation-delay: .19s; }
.mobile-menu.open nav a:nth-child(5) { animation-delay: .24s; }
.mobile-menu.open nav a:nth-child(6) { animation-delay: .29s; }
@keyframes mmIn { to { opacity: 1; transform: none; } }
.mm-no {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: .8px var(--gold-bright);
}
.mm-foot { display: flex; flex-direction: column; gap: 12px; }
.mm-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.mm-foot .btn { width: 100%; }
.mm-social { font-size: 13px; color: var(--muted); }
.mm-social a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(242, 214, 75, .5); }
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 54px) 0 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("../img/hero-stage.jpg") center 34% / cover no-repeat;
  filter: brightness(1.16) contrast(1.06) saturate(1.06);
  transform: scale(1.04);
  animation: heroDrift 70s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.07) translate3d(-0.5%, -0.6%, 0); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 80% at 74% 12%, rgba(226, 181, 31, .22) 0%, transparent 58%),
    linear-gradient(100deg, rgba(11, 11, 12, .94) 6%, rgba(11, 11, 12, .74) 34%, rgba(11, 11, 12, .18) 66%, rgba(11, 11, 12, .58) 100%),
    linear-gradient(180deg, rgba(11, 11, 12, .68) 0%, transparent 24%, transparent 56%, var(--bg) 98%);
}

/* ---------- Lampu sorot panggung (global, mengikuti scroll) ----------
   Layer fixed di atas background section tapi di bawah nav. mix-blend-mode:screen
   membuatnya hanya menambah cahaya, jadi teks tetap terbaca. */
.stagelight {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: .68;
  transition: opacity .5s ease;
}
.sl {
  position: absolute;
  top: -22vh;
  width: 26vw;
  height: 150vh;
  transform-origin: top center;
  /* kerucut: sempit di sumber lampu, melebar ke bawah */
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg,
    rgba(242, 214, 75, .26) 0%,
    rgba(242, 214, 75, .11) 34%,
    rgba(242, 214, 75, .035) 64%,
    transparent 86%);
  filter: blur(16px);
  will-change: transform;
  overflow: hidden;
  /* napas cahaya sengaja sangat lambat & rentangnya tipis — hadir, tapi tidak menarik perhatian */
  animation: slBreathe 26s ease-in-out infinite;
}
.sl-2 { animation-duration: 83.20s; animation-delay: -9s; }
@keyframes slBreathe {
  0%, 100% { opacity: var(--sl-op, .8); }
  50%      { opacity: calc(var(--sl-op, .8) * 1.08); }
}

/* asap/haze yang mengalir di dalam sorotan — inilah yang bikin beam terlihat "isi" */
.sl .haze {
  position: absolute;
  left: -40%;
  top: -25%;
  width: 180%;
  height: 150%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='700'%3E%3Cfilter id='s' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.009 0.022' numOctaves='4' seed='7'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 0.92  0 0 0 0 0.58  1.1 0 0 0 -0.34'/%3E%3C/filter%3E%3Crect width='700' height='700' filter='url(%23s)'/%3E%3C/svg%3E");
  background-size: 62% auto;
  mix-blend-mode: screen;
  opacity: .38;
  animation: hazeDrift 70s linear infinite;
  will-change: transform;
}
.sl .haze.h2 {
  background-size: 108% auto;
  opacity: .22;
  filter: blur(7px);
  animation: hazeDrift2 95s linear infinite;
}
@keyframes hazeDrift {
  0%   { transform: translate3d(-3%, -6%, 0) scale(1.06); }
  50%  { transform: translate3d(2%, 4%, 0) scale(1.12); }
  100% { transform: translate3d(-3%, -6%, 0) scale(1.06); }
}
@keyframes hazeDrift2 {
  0%   { transform: translate3d(3%, 5%, 0) scale(1.22); }
  50%  { transform: translate3d(-3%, -4%, 0) scale(1.14); }
  100% { transform: translate3d(3%, 5%, 0) scale(1.22); }
}

/* inti beam yang lebih terang + titik sumber lampu */
.sl .core {
  position: absolute;
  top: 0; left: 50%;
  width: 26%;
  height: 78%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 244, 196, .5), rgba(242, 214, 75, .1) 45%, transparent 80%);
  filter: blur(12px);
}
.sl::after {
  content: "";
  position: absolute;
  top: -16px; left: 50%;
  width: 88px; height: 44px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 200, .62), transparent 70%);
  filter: blur(9px);
  z-index: 2;
}
/* dua beam simetris dari sudut atas kiri & kanan — sengaja tidak menyilang
   tengah halaman supaya tidak mengganggu keterbacaan konten */
.sl-1 { left: -11%; --sl-op: .78; opacity: .78; }
.sl-2 { left: 84%; --sl-op: .68; opacity: .68; }

/* ---------- Sound wave (tepi kiri & kanan) ---------- */
.eq {
  position: fixed;
  top: 50%;
  z-index: 38;
  display: flex;
  flex-direction: column;
  gap: 7px;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .34;
  transition: transform .5s ease-out, opacity .4s ease;
}
.eq-left  { left: 0;  transform: translateY(-50%) scaleX(var(--eq-boost, 1)); transform-origin: left center; }
.eq-right { right: 0; transform: translateY(-50%) scaleX(var(--eq-boost, 1)); transform-origin: right center; }
.eq span {
  display: block;
  height: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(90deg, var(--gold-bright), rgba(242, 214, 75, 0));
  animation: eqPulse 1.7s ease-in-out infinite;
  transform-origin: left center;
}
.eq-right span {
  border-radius: 3px 0 0 3px;
  background: linear-gradient(270deg, var(--gold-bright), rgba(242, 214, 75, 0));
  transform-origin: right center;
  margin-left: auto;
}
/* panjang & tempo tiap bar dibuat beda supaya terlihat seperti level audio */
.eq span:nth-child(1)  { width: 26px; animation-duration: 3.90s;  animation-delay: -.2s; }
.eq span:nth-child(2)  { width: 44px; animation-duration: 5.46s;  animation-delay: -.9s; }
.eq span:nth-child(3)  { width: 34px; animation-duration: 3.38s;  animation-delay: -.5s; }
.eq span:nth-child(4)  { width: 58px; animation-duration: 4.94s;  animation-delay: -1.4s; }
.eq span:nth-child(5)  { width: 30px; animation-duration: 4.16s;  animation-delay: -.3s; }
.eq span:nth-child(6)  { width: 66px; animation-duration: 6.24s;  animation-delay: -1.1s; }
.eq span:nth-child(7)  { width: 38px; animation-duration: 3.64s;  animation-delay: -.7s; }
.eq span:nth-child(8)  { width: 54px; animation-duration: 5.20s;  animation-delay: -1.7s; }
.eq span:nth-child(9)  { width: 28px; animation-duration: 4.68s;  animation-delay: -.4s; }
.eq span:nth-child(10) { width: 46px; animation-duration: 5.72s;  animation-delay: -1.2s; }
.eq span:nth-child(11) { width: 32px; animation-duration: 3.90s;  animation-delay: -.8s; }
.eq span:nth-child(12) { width: 22px; animation-duration: 4.42s;  animation-delay: -.1s; }
@keyframes eqPulse {
  0%, 100% { transform: scaleX(.62); opacity: .5; }
  50%      { transform: scaleX(1);   opacity: .8; }
}

/* Kedip per-section sengaja DIHILANGKAN — terlalu menarik perhatian saat scroll.
   Class .flash masih di-set JS tapi tidak lagi mengubah apa pun. */

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  gap: 56px;
  align-items: center;
  flex: 1;
  padding-bottom: 40px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(244, 243, 239, .78);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  background: rgba(11, 11, 12, .42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 26px;
}
.tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(242, 214, 75, .6);
  animation: pulse 5s ease-out infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(242, 214, 75, .4); }
  70%  { box-shadow: 0 0 0 6px rgba(242, 214, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 214, 75, 0); }
}

.hero h1 {
  font-size: clamp(37px, 4.9vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.hero h1 .line { display: block; }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--gold-bright);
  text-stroke: 1.4px var(--gold-bright);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
  position: relative;
}
.hero .lead { margin-top: 24px; }

/* kartu spesifikasi kaca */
.spec-card {
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(244, 243, 239, .07), rgba(244, 243, 239, .015));
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  padding: 26px 24px 20px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .85);
}
.spec-head {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.spec-list { list-style: none; }
.spec-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "k v" "k m";
  column-gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.spec-list li:first-child { border-top: 0; padding-top: 0; }
.spec-list .k {
  grid-area: k;
  align-self: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: .8px rgba(242, 214, 75, .85);
}
.spec-list .v { grid-area: v; font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.spec-list .m { grid-area: m; font-size: 12.5px; color: var(--muted-2); }
.spec-cta {
  display: inline-flex;
  gap: 7px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-bright);
  text-decoration: none;
}
.spec-cta span { transition: transform .2s ease; display: inline-block; }
.spec-cta:hover span { transform: translate(2px, -2px); }

/* bar bawah hero */
.hero-bar { border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(11, 11, 12, .5)); }
.hero-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 26px; }
.hero-stats { list-style: none; display: flex; gap: 42px; }
.hero-stats b {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold-bright);
  line-height: 1.1;
}
.hero-stats span { font-size: 12px; color: var(--muted-2); }
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}
.scroll-cue:hover { color: var(--gold-bright); }
.scroll-cue svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; animation: bob 3.4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(2px); } }

/* ---------- Running text (ticker) ---------- */
.ticker { position: relative; z-index: 4; }
.ticker-row { overflow: hidden; }
.ticker-row.gold {
  background: linear-gradient(96deg, var(--gold-bright), var(--amber));
  transform: rotate(-1.1deg) scale(1.04);
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, .85);
  position: relative;
  z-index: 2;
}
.ticker-row.dark {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(-1.1deg) scale(1.04);
  margin-top: -2px;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  padding: 11px 0;
  animation: tickerRun 34s linear infinite;
  will-change: transform;
}
.ticker-track.rev { animation-direction: reverse; animation-duration: 42s; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.ticker-row.gold span { color: #0B0B0C; }
.ticker-row.dark span { color: var(--muted); }
.ticker-track i { font-style: normal; padding: 0 22px; opacity: .55; font-size: 9px; }
.ticker-row.dark i { color: var(--gold-bright); opacity: .9; }
@keyframes tickerRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--gold-bright), var(--amber));
  box-shadow: 0 0 12px rgba(242, 214, 75, .55);
  transition: width .12s linear;
}

/* ---------- Sections ---------- */
.section { padding: 112px 0; position: relative; overflow: hidden; }
.section.alt { background: var(--bg-2); }
.section .container { position: relative; z-index: 1; }

.wm::before {
  content: attr(data-wm);
  position: absolute;
  top: 30px;
  right: -1.5vw;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(88px, 14.5vw, 200px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(244, 243, 239, .045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.grid-2 { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 60px; align-items: center; }

/* ---------- Tentang ---------- */
.quote {
  font-family: var(--display);
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.02em;
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 26px 0;
}
.quote cite { display: block; font-family: var(--mono); font-style: normal; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-top: 10px; }

.facts { display: flex; gap: 40px; margin-top: 30px; }
.facts dt { font-family: var(--display); font-size: 34px; font-weight: 700; letter-spacing: -0.03em; color: var(--gold-bright); line-height: 1.1; }
.facts dd { font-size: 12.5px; color: var(--muted-2); max-width: 130px; line-height: 1.5; margin-top: 4px; }

.about-stack { position: relative; }
.about-photo, .clients-photo { position: relative; }
.about-photo img, .clients-photo img { width: 100%; height: 520px; object-fit: cover; border-radius: 14px; }
.clients-photo img { height: 450px; }
.about-photo::after, .clients-photo::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(242, 214, 75, .3);
  border-radius: 14px;
  z-index: -1;
}
.about-photo figcaption, .clients-photo figcaption { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-top: 14px; }
.about-photo-sm {
  position: absolute;
  left: -52px;
  top: 44%;
  width: 42%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  box-shadow: 0 34px 64px -26px rgba(0, 0, 0, .95);
}
.about-photo-sm img { width: 100%; height: 190px; object-fit: cover; }
.about-photo-sm figcaption {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 9px 12px;
}

.vm-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px; margin-top: 80px; }
.panel {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 34px 32px;
}
.panel h3 { margin-bottom: 12px; font-size: 22px; }
.panel p { color: var(--muted); }
.missions { list-style: none; counter-reset: misi; }
.missions li { counter-increment: misi; color: var(--muted); padding: 11px 0 11px 42px; position: relative; font-size: 15px; }
.missions li + li { border-top: 1px solid var(--line); }
.missions li::before {
  content: "0" counter(misi);
  position: absolute; left: 0; top: 13px;
  font-family: var(--mono);
  font-weight: 700; font-size: 13px;
  color: transparent;
  -webkit-text-stroke: .8px var(--gold-bright);
}
.missions b { color: var(--paper); font-weight: 600; }

/* ---------- Layanan ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), border-color .35s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 3;
}
.card:hover { transform: translateY(-8px); border-color: rgba(242, 214, 75, .4); }
.card:hover::before { opacity: 1; }

.card-photo { position: absolute; inset: 0; z-index: 0; }
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .16;
  transform: scale(1.06);
  transition: opacity .45s ease, transform .7s cubic-bezier(.2,.8,.3,1);
}
.card:hover .card-photo img { opacity: .34; transform: scale(1.14); }
.card-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.86) 55%, var(--bg-3) 100%);
}
.card-body { position: relative; z-index: 2; padding: 32px 28px 30px; }
.card-no {
  position: absolute;
  top: 26px; right: 26px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: .8px rgba(242, 214, 75, .75);
}
.card .icon { width: 40px; height: 40px; stroke: var(--gold-bright); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 20px; transition: transform .35s cubic-bezier(.2,.8,.3,1); }
.card:hover .icon { transform: translateY(-3px) scale(1.06); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.card-tags li {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 9px;
  transition: border-color .3s ease, color .3s ease;
}
.card:hover .card-tags li { border-color: rgba(242, 214, 75, .3); color: var(--muted); }
.swipe-hint { display: none; }
.services-note {
  margin-top: 40px;
  color: var(--muted);
  font-size: 15px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 620px;
}

/* ---------- Keunggulan ---------- */
.why-section { padding-top: 118px; padding-bottom: 118px; }
.why-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.why-bg img { width: 100%; height: 130%; object-fit: cover; opacity: .1; }
.why-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(11,11,12,.86) 40%, var(--bg) 100%);
}
.why-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 60px; align-items: start; }
.why-intro { position: sticky; top: 120px; }
.why-list { list-style: none; counter-reset: none; }
.why-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 20px 26px 0;
  border-top: 1px solid var(--line);
  border-radius: 12px;
  transition: background .35s ease, padding .35s ease;
}
.why-row:last-child { border-bottom: 1px solid var(--line); }
.why-row:hover { background: linear-gradient(90deg, rgba(242,214,75,.07), transparent 70%); padding-left: 18px; }
.why-row .num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-bright);
  transition: color .35s ease;
}
.why-row:hover .num { color: rgba(242, 214, 75, .18); }
.why-row h3 { font-size: 19px; margin-bottom: 7px; }
.why-row p { font-size: 14.5px; color: var(--muted); line-height: 1.62; max-width: 520px; }

/* ---------- Klien ---------- */
.client-title {
  margin-top: 68px;
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.client-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.client-cell {
  background: var(--bg-2);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 108px;
  justify-content: center;
  position: relative;
  transition: background .3s ease;
}
.client-cell::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold-bright);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.client-cell:hover { background: #1C1C1B; }
.client-cell:hover::after { transform: scaleY(1); }
.cc-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(17px, 1.7vw, 21px);
  letter-spacing: -0.02em;
  color: var(--paper);
}
.cc-type {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: .75;
}

/* ---------- Wedding ---------- */
.wedding { padding: 30px 0 112px; }
.wedding-panel {
  position: relative;
  background: linear-gradient(102deg, var(--gold-bright), var(--amber));
  color: #0B0B0C;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: stretch;
  overflow: hidden;
}
.wedding-copy { padding: 54px 50px; }
.wedding-panel h2 { margin-bottom: 14px; }
.wedding-panel p { max-width: 520px; color: rgba(11, 11, 12, .78); font-weight: 500; margin-bottom: 26px; }
.wedding-photo { position: relative; overflow: hidden; min-height: 300px; }
.wedding-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1s cubic-bezier(.2,.8,.3,1);
  mix-blend-mode: multiply;
  opacity: .92;
}
.wedding-panel:hover .wedding-photo img { transform: scale(1.12); }

/* ---------- Kontak ---------- */
.contact { text-align: center; }
.contact-glow {
  position: absolute;
  left: 50%; top: 42%;
  width: min(900px, 96vw);
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(242, 214, 75, .16) 0%, transparent 70%);
  filter: blur(20px);
  opacity: .8;
  pointer-events: none;
  z-index: 0;
}
/* glowPulse dihapus — glow di section kontak sekarang diam (opacity tetap) */
.contact-inner { max-width: 760px; }
.contact .lead { margin: 0 auto; }
.contact .eyebrow { justify-content: center; }
.socials { margin-top: 26px; font-size: 14.5px; color: var(--muted); display: flex; gap: 12px; justify-content: center; }
.socials a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(242, 214, 75, .5); transition: color .2s ease; }
.socials a:hover { color: var(--gold-bright); }

/* ---------- Footer ---------- */
.footer { background: #070708; border-top: 1px solid var(--line); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr); gap: 44px; padding-bottom: 54px; }
.f-brand img { height: 58px; width: auto; margin-bottom: 20px; }
.f-brand p { font-size: 14px; color: var(--muted); max-width: 300px; }
.f-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.f-col a { display: block; font-size: 14px; color: var(--muted); text-decoration: none; margin-bottom: 11px; transition: color .18s ease; }
.f-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px; padding-bottom: 26px;
  font-size: 12px; color: var(--muted-2);
}
.fb-note { opacity: .7; }
.powered {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-decoration: none;
  transition: color .3s ease;
  flex: none;
}
.powered img { height: 18px; width: auto; opacity: .8; transition: opacity .3s ease; }
.powered:hover { color: var(--muted); }
.powered:hover img { opacity: 1; }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  gap: 10px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(11, 11, 12, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-2);
  transform: translateY(120%);
  transition: transform .38s cubic-bezier(.2,.8,.3,1);
}
.sticky-cta.show { transform: translateY(0); }
body.menu-open .sticky-cta { transform: translateY(120%); }
.sticky-cta .btn-gold { flex: 1; }
.sticky-cta .tel { width: 50px; padding: 14px 0; flex: none; }
.sticky-cta .tel svg { width: 19px; height: 19px; fill: currentColor; }

/* ---------- Reveal motion ---------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .45s ease-out, transform .45s ease-out; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .10s; }
.d3 { transition-delay: .15s; }
.d4 { transition-delay: .20s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track, .hero-photo, .tag .dot, .scroll-cue svg, .contact-glow,
  .stagelight .sl, .sl .haze, .eq span { animation: none; }
  .btn, .card, .card-photo img, .wedding-photo img { transition: none; }
  .stagelight { opacity: .45; }
  .eq { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  /* minmax(0,1fr), bukan 1fr — supaya kolom boleh menyusut di bawah lebar min-content
     dan isinya tidak mendorong grid melebihi layar */
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 38px; }
  .spec-card { max-width: 460px; }
}

@media (max-width: 980px) {
  .grid-2 { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .about-photo img { height: 430px; }
  .about-photo-sm { left: auto; right: -14px; bottom: 54px; width: 40%; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .why-layout { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .why-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wedding-panel { grid-template-columns: minmax(0, 1fr); }
  .wedding-copy { padding: 42px 34px; }
  .wedding-photo { min-height: 240px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav { padding: 12px 0; }
  .nav-logo img { height: 42px; }
  .nav.scrolled .nav-logo img { height: 36px; }
}

@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  h2 { font-size: clamp(28px, 8.4vw, 36px); }

  /* HERO — dipadatkan supaya pesan utama + CTA muat satu layar */
  .hero { padding: calc(var(--nav-h) + 14px) 0 0; min-height: auto; }
  .hero-photo { background-image: url("../img/hero-stage-sm.jpg"); background-position: center 38%; }
  .hero-veil { background:
    radial-gradient(150% 55% at 82% 2%, rgba(226, 181, 31, .2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11, 11, 12, .82) 0%, rgba(11, 11, 12, .5) 30%, rgba(11, 11, 12, .9) 76%, var(--bg) 100%); }

  /* Lampu sorot & sound wave di mobile: ruang horizontal sempit, jadi keduanya
     ditarik ke tepi. Bar EQ dijaga < 20px (padding container) supaya tidak pernah
     menimpa teks, dan titik sumber lampu disembunyikan agar tidak menyilaukan nav. */
  .stagelight {
    opacity: .6;
    /* redam cahaya tepat di zona nav supaya logo & tombol tetap bersih */
    -webkit-mask-image: linear-gradient(180deg, transparent 0, transparent 64px, #000 150px);
    mask-image: linear-gradient(180deg, transparent 0, transparent 64px, #000 150px);
  }
  .sl { width: 46vw; filter: blur(13px); }
  .sl .haze.h2 { display: none; }
  .sl::after { display: none; }
  .sl-1 { left: -26%; }
  .sl-2 { left: 80%; }

  .eq { gap: 7px; opacity: .3; }
  .eq span { height: 2px; }
  .eq span:nth-child(n)  { width: 9px; }
  .eq span:nth-child(2n) { width: 14px; }
  .eq span:nth-child(3n) { width: 11px; }
  .eq span:nth-child(4n) { width: 16px; }
  .eq span:nth-child(9), .eq span:nth-child(10),
  .eq span:nth-child(11), .eq span:nth-child(12) { display: none; }
  .hero-grid { padding: 30px 20px 26px; gap: 26px; }
  .tag { font-size: 10px; letter-spacing: .13em; padding: 7px 13px 7px 10px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(32px, 9.4vw, 42px); line-height: 1.05; }
  .hero .lead { font-size: 15px; margin-top: 16px; }
  .cta-row { margin-top: 22px; gap: 10px; }
  .cta-row .btn { width: 100%; padding: 15px 22px; }

  /* kartu spec jadi strip geser horizontal */
  .spec-card { padding: 18px 0 16px; border-radius: 14px; }
  .spec-head { padding: 0 18px; margin-bottom: 13px; }
  /* strip spec juga tanpa scroll horizontal — alasan sama seperti .cards-3 */
  .spec-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 0 18px;
    overflow: visible;
  }
  .spec-list li {
    width: auto;
    border-top: 0;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 12px 14px;
    background: rgba(11, 11, 12, .4);
  }
  .spec-list li:first-child { padding-top: 12px; }
  .spec-cta { margin: 14px 18px 0; }

  .hero-bar-inner { padding: 15px 20px 18px; }
  .hero-stats { gap: 0; width: 100%; justify-content: space-between; }
  .hero-stats li { flex: 1; }
  .hero-stats b { font-size: 21px; }
  .hero-stats span { font-size: 10.5px; }
  .scroll-cue { display: none; }

  /* running text lebih ramping */
  .ticker-track { padding: 9px 0; }
  .ticker-track span { font-size: 11px; letter-spacing: .13em; }
  .ticker-track i { padding: 0 15px; }

  /* TENTANG */
  .quote { font-size: 19px; padding-left: 16px; margin: 22px 0; }
  .facts { gap: 0; justify-content: space-between; }
  .facts div { flex: 1; }
  .facts dt { font-size: 27px; }
  .facts dd { font-size: 11px; max-width: none; padding-right: 8px; }
  .about-photo::after, .clients-photo::after { inset: 10px -10px -10px 10px; }
  .about-photo img { height: 320px; }
  .about-photo-sm {
    position: relative;
    left: auto; top: auto;
    width: 62%;
    margin: -58px 0 0 auto;
    z-index: 2;
  }
  .about-photo-sm img { height: 128px; }
  .vm-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 44px; }
  .panel { padding: 26px 22px; }
  .missions li { font-size: 14px; padding-left: 38px; }

  /* LAYANAN — SENGAJA tanpa carousel horizontal di mobile.
     Container `overflow-x` menjadikan elemen scroll container dan di browser HP
     gesture vertikal sering tertangkap di situ sehingga halaman tidak bisa
     di-scroll dari area ini. Tumpukan vertikal jauh lebih aman. */
  .cards-3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 30px;
    overflow: visible;
  }
  .card { width: auto; }
  .card-body { padding: 26px 22px 24px; }
  .card-photo img { opacity: .26; }
  .swipe-hint { display: none; }
  .services-note { margin-top: 26px; font-size: 14px; padding-top: 20px; }

  /* KEUNGGULAN */
  .why-section { padding: 72px 0; }
  .why-row { grid-template-columns: 42px 1fr; gap: 12px; padding: 20px 0; }
  .why-row .num { font-size: 19px; }
  .why-row h3 { font-size: 17px; }
  .why-row p { font-size: 13.5px; }
  .why-row:hover { padding-left: 8px; }

  /* KLIEN */
  .clients-photo img { height: 300px; }
  .client-title { margin-top: 44px; margin-bottom: 16px; font-size: 10px; }
  .client-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .client-cell { padding: 18px 16px; min-height: 88px; }
  .cc-name { font-size: 15.5px; }
  .cc-type { font-size: 9px; letter-spacing: .12em; }

  /* WEDDING — foto dulu baru teks */
  .wedding { padding: 20px 0 72px; }
  .wedding-panel { grid-template-columns: 1fr; border-radius: 16px; }
  .wedding-photo { order: -1; min-height: 190px; }
  .wedding-copy { padding: 30px 24px 32px; }
  .wedding-panel p { font-size: 14.5px; margin-bottom: 22px; }
  .wedding-copy .btn { width: 100%; }

  /* KONTAK & FOOTER */
  .contact .lead { font-size: 15px; }
  .socials { flex-wrap: wrap; font-size: 13.5px; }
  .footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px 20px; }
  .f-brand { grid-column: 1 / -1; }
  .f-brand img { height: 46px; margin-bottom: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
}

@media (max-width: 380px) {
  .card { width: 84%; }
  .spec-list li { width: 70%; }
  .facts dt { font-size: 24px; }
}
