/* ============================================================
   Amara Wedding Folio — Botanical garden wedding folio /
   vendor-coordination dossier. Yeseva One + Inter + Cutive Mono.
   Emerald + dusty mauve + champagne + cream pearl + ink charcoal.
   ============================================================ */

:root {
  /* Palette */
  --emerald:        #1f5d50;
  --emerald-deep:   #14463b;
  --mauve:          #9b6f7a;
  --mauve-soft:     #b88e98;
  --champagne:      #cbb287;
  --champagne-2:    #b59a6c;
  --cream:          #fbf3ea;
  --paper:          #fefaf2;
  --paper-2:        #f4ecdf;
  --ink:            #2a2522;
  --ink-soft:       #4a3f38;
  --fern:           #8aa49a;
  --fern-deep:      #6b8a7e;
  --line:           rgba(42, 37, 34, 0.14);
  --line-strong:    rgba(42, 37, 34, 0.32);
  --shadow:         0 30px 60px -30px rgba(20, 70, 59, 0.18);
  --shadow-soft:    0 10px 30px -16px rgba(20, 70, 59, 0.16);

  /* Type */
  --f-display: "Yeseva One", "Cormorant Garamond", Georgia, serif;
  --f-body:    "Inter", system-ui, -apple-system, sans-serif;
  --f-mono:    "Cutive Mono", "Courier New", monospace;

  /* Sizing */
  --wrap:    1180px;
  --gutter:  24px;
  --r-sm:    4px;
  --r-md:    8px;
  --r-lg:    14px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "kern", "liga";
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
p { margin: 0 0 1em 0; }

/* ===== Type helpers ===== */
.h-section {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--emerald);
  margin: 0 0 0.7em 0;
}
em {
  font-style: italic;
  font-family: var(--f-display);
  color: var(--mauve);
  font-weight: 400;
  letter-spacing: 0.005em;
}
b, strong { font-weight: 600; color: var(--ink); }

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 18px 0;
}
.kicker .k-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  color: var(--mauve);
  text-transform: none;
  line-height: 1;
}
.kicker .k-line {
  flex: 0 0 38px;
  height: 1px;
  background: var(--mauve);
  display: inline-block;
}
.kicker.light { color: var(--cream); }
.kicker.light .k-num { color: var(--champagne); }
.kicker.light .k-line-light { background: var(--champagne); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--emerald);
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 18px -8px rgba(20, 70, 59, 0.55);
}
.btn:hover {
  background: var(--emerald-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(20, 70, 59, 0.55);
}
.btn-big {
  padding: 18px 34px;
  font-size: 15px;
}
.btn i { font-size: 16px; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--emerald);
  border-bottom: 1px solid var(--emerald);
  padding: 6px 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.04em;
}
.btn-line:hover { color: var(--mauve); border-color: var(--mauve); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Dot leaders ===== */
.dot-leader {
  flex: 1 1 auto;
  height: 1px;
  background-image: radial-gradient(circle, var(--mauve) 1px, transparent 1.4px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  display: inline-block;
  min-width: 30px;
  margin: 0 8px;
}
.dot-leader.light {
  background-image: radial-gradient(circle, var(--champagne) 1px, transparent 1.4px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 250, 242, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(254, 250, 242, 0.96);
  box-shadow: 0 8px 24px -18px rgba(20, 70, 59, 0.25);
}
.nav-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mono { display: inline-flex; }
.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1;
  color: var(--emerald);
  letter-spacing: 0.005em;
}
.brand-name small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--mauve);
  transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--mauve); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--emerald);
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--emerald-deep); transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO — botanical folio
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  background:
    radial-gradient(circle at 80% 12%, rgba(155, 111, 122, 0.10), transparent 55%),
    radial-gradient(circle at 8% 90%, rgba(31, 93, 80, 0.08), transparent 50%),
    var(--paper);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
}
.wreath {
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.85;
}
.wreath-tl { top: -10px; left: -10px; }
.wreath-br { bottom: -10px; right: -10px; transform: scaleX(-1); }

.hero-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
  z-index: 1;
}
.folio-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin: 0 0 22px 0;
}
.folio-tag-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--mauve);
}
.hero-h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.005em;
  color: var(--emerald);
  margin: 0 0 22px 0;
}
.hero-h em {
  color: var(--mauve);
}
.hero-lede {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.hero-lede em { color: var(--champagne-2); font-size: 1.02em; }

.hero-folio {
  position: relative;
  display: inline-block;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 22px 36px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}
.hero-folio-tab {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: 0.16em;
  padding: 6px 18px;
  border-radius: 2px;
}
.hero-meta-dl {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 10px 28px;
  margin: 0;
  align-items: end;
}
.hero-meta-dl > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.hero-meta-dl > div:first-child { border-left: none; padding-left: 0; }
.hero-meta-dl dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 4px 0;
}
.hero-meta-dl dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  color: var(--emerald);
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}
.hero-foot {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto;
}

.press {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.press-k {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 18px;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  align-items: center;
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.press-sep { color: var(--champagne); font-size: 12px; }

@media (max-width: 700px) {
  .wreath { width: 140px; height: 140px; opacity: 0.7; }
  .hero-meta-dl {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
  }
  .hero-meta-dl > div:nth-child(3) { border-left: none; padding-left: 0; }
  .hero-folio { padding: 22px 22px; }
}

/* ============================================================
   STORY / CERITA
   ============================================================ */
.story {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
.story-text .h-section { margin-bottom: 26px; }
.story-text .lead-p {
  font-size: 17px;
  line-height: 1.75;
}
.cipher-list {
  margin-top: 28px;
  border-top: 1px dashed var(--line-strong);
  padding-top: 22px;
}
.cipher-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.cipher-list li:last-child { border-bottom: none; }
.cipher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--mauve);
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--mauve);
  flex-shrink: 0;
}
.story-img {
  position: relative;
  margin: 0;
}
.photo-frame {
  position: relative;
  background: var(--cream);
  padding: 16px 16px 60px;
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
  transition: transform 0.4s ease;
}
.photo-frame:hover { transform: rotate(0deg); }
.photo-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: sepia(0.04) saturate(0.95);
}
.tape {
  position: absolute;
  width: 70px;
  height: 18px;
  background: rgba(155, 111, 122, 0.32);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.tape-tl { top: -8px; left: -10px; transform: rotate(-12deg); }
.tape-tr { top: -8px; right: -10px; transform: rotate(10deg); }
.tape-bl { bottom: 36px; left: -10px; transform: rotate(8deg); }
.tape-br { bottom: 36px; right: -10px; transform: rotate(-10deg); }

.story-img figcaption {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.stamp-circle {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 120px;
  height: 120px;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transform: rotate(-8deg);
  padding: 6px;
}
.stamp-circle svg { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .photo-frame img { height: 380px; }
  .stamp-circle { right: 8px; bottom: -10px; }
}

/* ============================================================
   LAYANAN — service folio rows
   ============================================================ */
.layanan {
  padding: 100px 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-top: 1px solid var(--line);
}
.layanan .h-section { max-width: 720px; }
.lyn-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.lyn-row {
  display: grid;
  grid-template-columns: 60px 60px 1fr 110px;
  align-items: start;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.25s ease, padding 0.25s ease;
}
.lyn-row:hover {
  background: rgba(155, 111, 122, 0.04);
  padding-left: 14px;
}
.lyn-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  color: var(--mauve);
  line-height: 1;
}
.lyn-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}
.lyn-icon svg { width: 36px; height: 36px; }
.lyn-body h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--emerald);
  margin: 0 0 8px 0;
}
.lyn-body p {
  margin: 0 0 14px 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.lyn-feat {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.lyn-feat li {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  padding: 2px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}
.lyn-spec {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--champagne-2);
  text-transform: uppercase;
  text-align: right;
  align-self: start;
  padding-top: 6px;
}

@media (max-width: 700px) {
  .lyn-row {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  .lyn-icon, .lyn-spec { display: none; }
  .lyn-num { font-size: 26px; }
}

/* ============================================================
   DENAH — venue floor plan
   ============================================================ */
.denah {
  padding: 100px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.denah-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.denah-text p { color: var(--ink-soft); font-size: 16px; }
.denah-legend {
  margin-top: 26px;
  border-top: 1px dashed var(--line-strong);
  padding-top: 18px;
}
.denah-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink);
}
.leg-sw {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
}
.leg-name { flex-shrink: 0; }
.leg-leader {
  flex: 1 1 auto;
  height: 1px;
  background-image: radial-gradient(circle, var(--mauve) 1px, transparent 1.4px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  min-width: 20px;
  margin: 0 6px;
}
.leg-val {
  font-family: var(--f-mono);
  color: var(--emerald);
  flex-shrink: 0;
}

.denah-plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 36px 24px 18px;
  box-shadow: var(--shadow);
  margin: 0;
}
.plan-tab {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--paper);
  padding: 4px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mauve);
  border: 1px solid var(--line-strong);
  text-transform: uppercase;
}
.plan-svg { width: 100%; height: auto; display: block; }
.plan-cap {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.04em;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}

@media (max-width: 900px) {
  .denah-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   PAKET — folio cards
   ============================================================ */
.paket {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.folio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.folio {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.folio:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--mauve);
}
.folio-tab {
  align-self: center;
  margin-top: -16px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  padding: 6px 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
}
.folio-tab-hi {
  background: var(--mauve);
  color: var(--cream);
  border-color: var(--mauve);
}
.folio-cover {
  padding: 28px 28px 22px;
  text-align: center;
  border-bottom: 1px dashed var(--line-strong);
  background:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}
.folio-k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin: 0 0 8px 0;
}
.folio-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  color: var(--emerald);
  margin: 0 0 10px 0;
}
.folio-name em { color: var(--mauve); display: inline-block; }
.folio-sub {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin: 0;
}
.folio-inner {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.folio-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 18px;
}
.folio-price .amt {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--emerald);
}
.folio-price .per {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mauve);
}
.folio-spec {
  margin: 0 0 22px 0;
  flex: 1;
}
.folio-spec > div {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 0;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.folio-spec dt { flex-shrink: 0; color: var(--ink); }
.folio-spec dd {
  margin: 0;
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--emerald);
  text-align: right;
  justify-content: flex-end;
}
.folio-spec dd.leader::before {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background-image: radial-gradient(circle, var(--mauve) 0.8px, transparent 1.2px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  min-width: 20px;
}
.folio-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--emerald);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.folio-cta:hover {
  background: var(--emerald);
  color: var(--cream);
}
.folio-cta-hi {
  background: var(--emerald);
  color: var(--cream);
}
.folio-cta-hi:hover {
  background: var(--emerald-deep);
}

.folio-hi {
  background: var(--cream);
  border-color: var(--mauve);
  transform: translateY(-12px);
}
.folio-hi:hover { transform: translateY(-18px); }
.folio-hi .folio-cover {
  background: linear-gradient(180deg, #f5e7d8 0%, var(--cream) 100%);
}
.ribbon {
  position: absolute;
  top: 18px;
  left: -8px;
  background: var(--mauve);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 14px 6px 12px;
  text-transform: uppercase;
  z-index: 2;
}
.ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  border-top: 8px solid #6a4953;
  border-left: 8px solid transparent;
  width: 0;
  height: 0;
}

.paket-note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .folio-grid { grid-template-columns: 1fr; gap: 40px; }
  .folio-hi { transform: none; }
  .folio-hi:hover { transform: translateY(-6px); }
}

/* ============================================================
   VENDOR — checklist dossier
   ============================================================ */
.vendor {
  padding: 100px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.vendor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.vendor-text p { color: var(--ink-soft); font-size: 16px; }

.checklist {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  padding: 22px 26px;
  font-family: var(--f-mono);
  position: relative;
}
.checklist::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1px dashed var(--line);
  pointer-events: none;
}
.ck-head {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 0.6fr;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  padding: 10px 6px 10px 28px;
  border-bottom: 1px solid var(--line-strong);
}
.ck-list li {
  display: grid;
  grid-template-columns: 24px 1.6fr auto 1.2fr 0.6fr;
  gap: 8px;
  align-items: baseline;
  padding: 9px 6px;
  font-size: 13px;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.ck-list li:last-child { border-bottom: none; }
.ck-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--emerald);
  color: var(--cream);
  font-size: 11px;
  border-radius: 50%;
  font-family: var(--f-body);
  font-weight: 700;
}
.ck-cat { font-weight: 500; color: var(--ink); }
.ck-leader {
  display: inline-block;
  height: 1px;
  background-image: radial-gradient(circle, var(--mauve) 0.8px, transparent 1.2px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  min-width: 30px;
}
.ck-pic { color: var(--ink-soft); font-size: 12px; }
.ck-stat {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ck-stat.ck-on { color: var(--emerald); }
.ck-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-align: right;
}

@media (max-width: 900px) {
  .vendor-grid { grid-template-columns: 1fr; gap: 36px; }
  .ck-head { grid-template-columns: 1fr 1fr; }
  .ck-h-stat { display: none; }
  .ck-list li { grid-template-columns: 24px 1fr auto 1fr; }
  .ck-list li .ck-stat { display: none; }
}

/* ============================================================
   ALBUM — photo album
   ============================================================ */
.album {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.album-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
  align-items: start;
}
.album-photo {
  position: relative;
  margin: 0;
  background: var(--cream);
  padding: 12px 12px 36px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.album-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: sepia(0.04) saturate(0.92);
}
.album-photo figcaption {
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.04em;
}
.album-photo figcaption em {
  font-size: 0.92em;
  color: var(--mauve);
}
.album-photo .tape {
  width: 60px;
  height: 16px;
  background: rgba(203, 178, 135, 0.45);
}
.album-r1 { transform: rotate(-2.4deg); }
.album-r2 { transform: rotate(1.6deg); margin-top: 18px; }
.album-r3 { transform: rotate(-1.8deg); margin-top: 6px; }
.album-r4 { transform: rotate(2deg); margin-top: 24px; }
.album-photo:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow);
  z-index: 2;
}

.album-foot {
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 660px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  justify-content: center;
}

@media (max-width: 900px) {
  .album-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .album-grid { grid-template-columns: 1fr; }
  .album-photo img { height: 320px; }
}

/* ============================================================
   PROSES — 7 step timeline
   ============================================================ */
.proses {
  padding: 100px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.timeline {
  position: relative;
  margin: 50px auto 0;
  max-width: 740px;
  padding-left: 60px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--mauve) 50%, transparent 0);
  background-size: 2px 8px;
  background-repeat: repeat-y;
}
.timeline > li {
  position: relative;
  padding: 0 0 36px 28px;
  margin-bottom: 4px;
}
.timeline > li:last-child { padding-bottom: 0; }
.medal {
  position: absolute;
  left: -60px;
  top: -4px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--emerald);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--emerald);
  box-shadow: 0 0 0 4px var(--paper-2), inset 0 0 0 4px var(--paper);
}
.medal-end {
  background: var(--emerald);
  color: var(--cream);
  box-shadow: 0 0 0 4px var(--paper-2), inset 0 0 0 4px var(--emerald-deep);
}
.t-body {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 18px 22px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.t-body::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}
.timeline > li:hover .t-body {
  border-color: var(--mauve);
  transform: translateX(4px);
}
.t-body h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--emerald);
  margin: 0 0 8px 0;
}
.t-body p { margin: 0 0 8px 0; color: var(--ink-soft); font-size: 14px; }
.t-time {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
  border-top: 1px dashed var(--line);
  padding-top: 6px;
  margin-top: 4px;
}

@media (max-width: 700px) {
  .timeline { padding-left: 48px; }
  .medal { left: -48px; width: 38px; height: 38px; font-size: 15px; }
}

/* ============================================================
   KOMPARASI — comparison table
   ============================================================ */
.kompar {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.cmp-wrap {
  margin-top: 40px;
  overflow-x: auto;
}
.cmp {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.cmp th, .cmp td {
  padding: 16px 18px;
  vertical-align: middle;
  text-align: left;
  border-bottom: 1px dashed var(--line);
}
.cmp thead th {
  border-bottom: 1px solid var(--line-strong);
  vertical-align: bottom;
}
.cmp .cmp-row-h { width: 200px; }
.cmp tbody th {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  background: var(--paper-2);
}
.cmp-col {
  text-align: center;
  position: relative;
  padding: 22px 16px 16px;
}
.cmp-col b {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--emerald);
  margin-bottom: 4px;
}
.cmp-col small {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cmp-col-hi {
  background:
    linear-gradient(180deg, rgba(31, 93, 80, 0.08) 0%, rgba(31, 93, 80, 0.02) 100%);
  border-left: 2px solid var(--emerald);
  border-right: 2px solid var(--emerald);
}
.cmp-col-hi b { color: var(--emerald); }
.cmp-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.cmp td {
  font-size: 13px;
  text-align: center;
  color: var(--ink-soft);
}
.cmp .cmp-hi {
  color: var(--ink);
  font-weight: 500;
  background: rgba(31, 93, 80, 0.04);
  border-left: 2px solid var(--emerald);
  border-right: 2px solid var(--emerald);
}

@media (max-width: 700px) {
  .cmp { font-size: 12px; }
  .cmp th, .cmp td { padding: 12px 8px; }
}

/* ============================================================
   TESTIMONI
   ============================================================ */
.stories-sec {
  padding: 100px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.tg {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tcard {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 28px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--mauve);
}
.quote-mark {
  position: absolute;
  top: 4px;
  left: 18px;
  font-family: var(--f-display);
  font-size: 70px;
  line-height: 1;
  color: var(--champagne);
  opacity: 0.7;
}
.tcard p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 18px 0;
}
.tcard p em { color: var(--mauve); font-size: 1.02em; }
.t-rating {
  font-family: var(--f-body);
  letter-spacing: 0.1em;
  color: var(--champagne-2);
  font-size: 14px;
  margin-bottom: 14px;
}
.tcard footer {
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
}
.tcard footer b {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--emerald);
}
.tcard footer span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mauve);
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .tg { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA — discovery call
   ============================================================ */
.cta-sec {
  padding: 110px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(203, 178, 135, 0.18), transparent 50%),
    radial-gradient(circle at 18% 80%, rgba(155, 111, 122, 0.20), transparent 55%),
    linear-gradient(180deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  color: var(--cream);
  text-align: center;
  border-top: 1px solid var(--emerald-deep);
  position: relative;
  overflow: hidden;
}
.cta-sec::before, .cta-sec::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(203, 178, 135, 0.25);
  border-radius: 50%;
  pointer-events: none;
}
.cta-sec::before { top: -110px; left: -90px; }
.cta-sec::after { bottom: -110px; right: -90px; }
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner .h-section,
.cta-inner .cta-h {
  color: var(--cream);
}
.cta-inner .h-section em { color: var(--champagne); }
.cta-lede {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(251, 243, 234, 0.86);
  margin: 0 auto 28px;
  max-width: 600px;
}
.cta-sec .btn {
  background: var(--champagne);
  color: var(--ink);
}
.cta-sec .btn:hover { background: #d8c094; }
.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(251, 243, 234, 0.7);
  margin-top: 22px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq .h-section { max-width: 720px; }
.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--emerald);
  position: relative;
  padding-right: 48px;
  transition: color 0.2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--mauve);
  transition: transform 0.25s ease, color 0.25s ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--emerald);
}
.faq-list summary:hover { color: var(--mauve); }
.fq-no {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--mauve);
  flex-shrink: 0;
  width: 28px;
}
.faq-list details > p {
  padding: 0 4px 24px 48px;
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 760px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(251, 243, 234, 0.78);
  padding: 70px 0 40px;
  border-top: 1px solid var(--ink);
}
.foot-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgba(203, 178, 135, 0.32);
}
.foot-brand .brand-name {
  color: var(--cream);
}
.foot-brand .brand-name small {
  color: rgba(203, 178, 135, 0.86);
}
.foot-tag {
  max-width: 540px;
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
  color: rgba(251, 243, 234, 0.7);
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 0;
}
.foot-cols h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 14px 0;
}
.foot-cols ul li {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(251, 243, 234, 0.72);
}
.foot-cols ul li em { color: rgba(203, 178, 135, 0.9); font-size: 0.95em; }
.foot-cols ul li a {
  transition: color 0.2s ease;
}
.foot-cols ul li a:hover { color: var(--champagne); }
.foot-sign {
  margin: 0;
  padding-top: 24px;
  border-top: 1px dashed rgba(203, 178, 135, 0.32);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(251, 243, 234, 0.5);
  text-align: center;
}

@media (max-width: 900px) {
  .foot-top { grid-template-columns: 1fr; gap: 16px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .foot-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   FAB — WhatsApp
   ============================================================ */
.fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 18px 13px 14px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55), 0 0 0 4px rgba(37, 211, 102, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, 0.65), 0 0 0 6px rgba(37, 211, 102, 0.22);
}
.fab i { font-size: 18px; }

@media (max-width: 560px) {
  .fab span { display: none; }
  .fab { padding: 14px; }
}

/* ============================================================
   Section spacing on smaller screens
   ============================================================ */
@media (max-width: 700px) {
  .story, .layanan, .denah, .paket, .vendor, .album,
  .proses, .kompar, .stories-sec, .faq { padding: 70px 0; }
  .cta-sec { padding: 80px 0; }
  .hero { padding: 60px 0 50px; }
  .h-section { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-h { font-size: clamp(1.9rem, 8vw, 2.8rem); }
}
