/* ===== Saff Audio — style publik ===== */
:root {
  --green-950: #0a2e21;
  --green-900: #0e3b2c;
  --green-700: #17614a;
  --green-600: #1d7a5c;
  --gold: #d4a53f;
  --gold-dark: #b8892e;
  --ink: #1c2b26;
  --muted: #5b6b64;
  --line: #e3ebe7;
  --bg-alt: #f4f8f6;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(14, 59, 44, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }
.mt-2 { margin-top: 32px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold); color: #000;
  padding: 8px 16px; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-gold { background: var(--gold); color: #241a05; }
.btn-gold:hover { background: #e2b856; box-shadow: 0 8px 20px rgba(212,165,63,.35); }
.btn-green { background: var(--green-700); color: #fff; }
.btn-green:hover { background: var(--green-600); }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-dark { border-color: var(--green-700); color: var(--green-700); }
.btn-wa { background: #25d366; color: #063; }
.btn-wa:hover { background: #3ae078; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { display: inline-flex; flex: none; }
.brand-mark svg, .brand-mark img { display: block; height: 52px; width: auto; }
.brand-mark--badge { background: #fff; border-radius: 10px; padding: 6px; }
.brand-lockup--light .brand-mark img { height: 34px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -.01em; color: var(--green-900); }
.brand-tag { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--gold-dark); margin-top: 3px; }
.brand-lockup--light .brand-name { color: #fff; }
.brand-lockup--light .brand-tag { color: var(--gold); }
@media (max-width: 380px) { .brand-tag { display: none; } .brand-name { font-size: 17px; } }

/* ---- Testimoni ---- */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; }
.testi blockquote { font-size: 16px; color: var(--ink); font-style: italic; }
.testi figcaption { display: flex; flex-direction: column; }
.testi figcaption strong { color: var(--green-900); font-weight: 700; }
.testi figcaption span { font-size: 13px; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a:not(.btn) {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.main-nav a:not(.btn):hover { color: var(--green-700); }
.main-nav a.active { color: var(--green-700); border-bottom-color: var(--gold); }
.nav-cta { padding: 9px 18px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--green-900); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--green-950);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(700px 340px at 88% 0%, rgba(212,165,63,.22), transparent 60%),
    linear-gradient(100deg, rgba(8,36,26,.96) 0%, rgba(10,46,33,.90) 45%, rgba(14,59,44,.62) 100%);
}
.hero-inner { display: grid; grid-template-columns: minmax(0, 640px); gap: 40px; align-items: center; padding: 88px 20px; }
.hero-eyebrow {
  display: inline-block; background: rgba(212,165,63,.15); color: var(--gold);
  border: 1px solid rgba(212,165,63,.4); border-radius: 999px;
  padding: 6px 16px; font-size: 13.5px; font-weight: 700; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.15; font-weight: 800; margin-bottom: 18px; }
.hero .accent { color: var(--gold); }
.hero-sub { font-size: 17px; color: #d7e5de; max-width: 540px; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 36px; list-style: none; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 24px; color: var(--gold); }
.hero-stats span { font-size: 13.5px; color: #cfe2d9; }

/* ---- Sections ---- */
.section { padding: 68px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 34px); font-weight: 800; color: var(--green-900); margin-bottom: 10px; }
.section-head p { color: var(--muted); }
.section-title-sm { font-size: 24px; font-weight: 800; color: var(--green-900); margin-bottom: 24px; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; text-decoration: none; color: var(--ink);
  transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--green-900); }
.card p { font-size: 14.5px; color: var(--muted); }
.card-ico { font-size: 30px; margin-bottom: 12px; }
.card-more { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 14px; color: var(--gold-dark); }

.why h3 { font-size: 16.5px; font-weight: 700; color: var(--green-900); margin-bottom: 6px; }
.why p { font-size: 14.5px; color: var(--muted); }

/* ---- Post cards ---- */
.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.post-card-body { padding: 20px; }
.post-card-body h2, .post-card-body h3 { font-size: 17px; font-weight: 700; color: var(--green-900); margin-bottom: 8px; }
.post-card-body time { display: block; margin-top: 10px; font-size: 13px; color: var(--muted); }
.post-loc {
  display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--green-700);
  background: #e8f3ee; border-radius: 999px; padding: 3px 10px; margin-bottom: 10px;
}

/* ---- Steps ---- */
.steps { list-style: none; counter-reset: step; max-width: 640px; margin: 0 auto; }
.steps li {
  counter-increment: step; position: relative;
  padding: 0 0 28px 64px; display: flex; flex-direction: column;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-700); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.steps li:not(:last-child)::after {
  content: ''; position: absolute; left: 20px; top: 46px; bottom: 4px;
  width: 2px; background: var(--line);
}
.steps strong { font-size: 16.5px; color: var(--green-900); }
.steps span { color: var(--muted); font-size: 14.5px; }

/* ---- FAQ ---- */
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  padding: 16px 20px; font-weight: 700; cursor: pointer; color: var(--green-900);
  list-style: none; position: relative; padding-right: 44px;
}
.faq summary::after { content: '+'; position: absolute; right: 20px; top: 14px; font-size: 20px; color: var(--gold-dark); }
.faq[open] summary::after { content: '–'; }
.faq p { padding: 0 20px 18px; color: var(--muted); font-size: 15px; }

/* ---- CTA banner ---- */
.cta-banner { background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: #fff; padding: 48px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-inner h2 { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.cta-inner p { color: #cfe2d9; max-width: 560px; }

/* ---- Footer ---- */
.site-footer { background: var(--green-950); color: #b9cec5; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.footer-brand .brand-lockup { margin-bottom: 14px; }
.footer-brand .brand-mark img { width: auto; height: 38px; }
.footer-brand p { font-size: 14px; }
.site-footer h3 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; font-size: 14px; }
.site-footer a { color: #b9cec5; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-contact strong { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 20px; font-size: 13px; text-align: center; }

/* ---- WA float ---- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---- Page head ---- */
.page-head {
  background: linear-gradient(150deg, var(--green-950), var(--green-800, var(--green-900)));
  color: #fff; padding: 52px 0; text-align: center;
}
.page-head h1 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; margin-bottom: 8px; }
.page-head p { color: #cfe2d9; max-width: 620px; margin: 0 auto; }

/* ---- Layanan ---- */
.service-detail { margin-bottom: 48px; }
.service-detail h2 { font-size: 24px; color: var(--green-900); margin-bottom: 12px; scroll-margin-top: 90px; }
.service-detail ul { margin: 14px 0 0 22px; }
.service-detail li { margin-bottom: 8px; }
.paket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.paket {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 12px;
}
.paket.featured { border: 2px solid var(--gold); box-shadow: var(--shadow); }
.paket h3 { color: var(--green-900); font-size: 18px; }
.paket-for { font-size: 13.5px; color: var(--muted); }
.paket ul { list-style: none; flex: 1; }
.paket li { padding: 6px 0 6px 26px; position: relative; font-size: 14.5px; border-bottom: 1px dashed var(--line); }
.paket li::before { content: '✓'; position: absolute; left: 2px; color: var(--green-600); font-weight: 800; }
.paket .btn { justify-content: center; }

/* ---- Post detail ---- */
.crumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
article h1 { font-size: clamp(26px, 4vw, 36px); line-height: 1.25; color: var(--green-900); margin-bottom: 10px; }
.post-meta { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.post-cover { border-radius: var(--radius); margin-bottom: 28px; width: 100%; }
.post-content { font-size: 16.5px; }
.post-content h2 { font-size: 24px; color: var(--green-900); margin: 32px 0 12px; }
.post-content h3 { font-size: 19px; color: var(--green-900); margin: 26px 0 10px; }
.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol { margin: 0 0 16px 24px; }
.post-content li { margin-bottom: 6px; }
.post-content img { border-radius: 10px; margin: 20px auto; }
.post-content blockquote {
  border-left: 4px solid var(--gold); background: var(--bg-alt);
  padding: 14px 18px; border-radius: 0 10px 10px 0; margin-bottom: 16px; color: var(--muted);
}
.video-wrap { position: relative; padding-top: 56.25%; margin: 22px 0; border-radius: 10px; overflow: hidden; background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.post-share { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }

/* ---- Pagination ---- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-num {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 10px; text-decoration: none; color: var(--ink); font-weight: 700;
}
.page-num.active { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* ---- Kontak ---- */
.kontak-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
.kontak-info h2 { color: var(--green-900); margin-bottom: 18px; }
.kontak-list { list-style: none; }
.kontak-list li { margin-bottom: 18px; display: flex; flex-direction: column; }
.kontak-list strong { color: var(--green-900); margin-bottom: 2px; }
.kontak-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.kontak-tips { background: var(--bg-alt); border-radius: var(--radius); padding: 26px; align-self: start; }
.kontak-tips h3 { color: var(--green-900); font-size: 16.5px; margin-bottom: 12px; }
.kontak-tips ol { margin-left: 20px; }
.kontak-tips li { margin-bottom: 8px; font-size: 14.5px; }
.muted { color: var(--muted); font-size: 13.5px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; padding: 48px 20px; }
  .hero-art { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .paket-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 10px 20px 20px;
  }
  .main-nav.open { display: flex; }
  .main-nav a:not(.btn) { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 14px; justify-content: center; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .section { padding: 48px 0; }
}
