/* ===========================
   scarlett's.
   style.css — Soft Feminine Elegant
   =========================== */

:root {
  --sage: #8FA68E;
  --sage-light: #B5C9B4;
  --sage-pale: #E8F0E7;
  --sage-ultra: #F2F6F1;
  --rose: #C4807A;
  --rose-light: #D9A09B;
  --rose-pale: #F5E8E7;
  --rose-ultra: #FBF4F3;
  --dusty: #B8A9A8;
  --cream: #FAF7F2;
  --warm-white: #FEFCF9;
  --linen: #F0EAE0;
  --brown: #5C4A42;
  --brown-mid: #8B6F68;
  --brown-light: #B89B95;
  --text: #4A3F3C;
  --text-mid: #7A6B68;
  --text-light: #A89A97;
  --border: rgba(196,128,122,0.15);

  --font-display: 'Italiana', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-soft: 0 8px 40px rgba(92,74,66,0.08);
  --shadow-rose: 0 8px 32px rgba(196,128,122,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--warm-white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--linen); }
::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 2px; }

/* ============ CURSOR — soft teardrop ============ */
.csr {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--rose);
  border-radius: 50% 50% 50% 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%) rotate(-45deg);
  transition: transform 0.12s, background 0.2s, width 0.2s, height 0.2s;
}
.csr.hover {
  width: 20px; height: 20px;
  background: transparent;
  border: 1.5px solid var(--rose);
  border-radius: 50%;
  transform: translate(-50%,-50%) rotate(0deg);
}
.csr2 {
  position: fixed; top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--rose-light);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.5s var(--ease);
  opacity: 0.6;
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--rose-ultra);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
#preloader.gone { opacity: 0; visibility: hidden; }
.pre-wrap { text-align: center; position: relative; }
.pre-petal {
  position: absolute; font-size: 20px; color: var(--rose-light);
  animation: petalFloat 2s ease infinite;
  opacity: 0.5;
}
.pre-p1 { top: -40px; left: -30px; animation-delay: 0s; }
.pre-p2 { top: -20px; right: -40px; animation-delay: 0.4s; }
.pre-p3 { bottom: -30px; left: 50%; animation-delay: 0.8s; }
@keyframes petalFloat {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-12px) rotate(15deg); opacity: 0.8; }
}
.pre-name {
  font-family: var(--font-script); font-size: 52px;
  color: var(--rose); letter-spacing: 2px;
  animation: preFade 1.5s ease infinite alternate;
}
@keyframes preFade { from{opacity:0.5} to{opacity:1} }
.pre-sub {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 5px;
  color: var(--brown-light); text-transform: uppercase; margin-top: 8px;
}

/* ============ NAVBAR ============ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(254,252,249,0.97);
  backdrop-filter: blur(16px);
  padding: 16px 56px;
  box-shadow: 0 2px 20px rgba(92,74,66,0.06);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-script); font-size: 28px;
  color: var(--rose); letter-spacing: 1px;
}
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 400;
  transition: color 0.3s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--rose);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent; border: 1px solid var(--rose);
  color: var(--rose); padding: 9px 22px; cursor: pointer;
  font-family: var(--font-body); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, color 0.3s;
  border-radius: 40px;
}
.nav-cta:hover { background: var(--rose); color: white; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 1px; background: var(--rose); transition: all 0.3s; }

.mob-menu {
  position: fixed; inset: 0; background: var(--rose-ultra); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s;
}
.mob-menu.open { opacity: 1; visibility: visible; }
.mm-deco { font-size: 36px; color: var(--rose-light); margin-bottom: 32px; opacity: 0.5; }
.mob-menu ul { list-style: none; text-align: center; }
.mob-menu ul li { margin: 18px 0; }
.mob-menu ul li a { font-family: var(--font-display); font-size: 36px; color: var(--brown); text-decoration: none; transition: color 0.3s; }
.mob-menu ul li a:hover { color: var(--rose); }

/* ============ BUTTONS ============ */
.btn-rose {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose); color: white;
  padding: 13px 28px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none; font-weight: 400;
  border-radius: 40px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-rose:hover { background: var(--rose-light); transform: translateY(-2px); box-shadow: var(--shadow-rose); }
.btn-ghost-rose {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--rose);
  padding: 12px 26px; border: 1px solid var(--rose); cursor: pointer;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  border-radius: 40px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn-ghost-rose:hover { background: var(--rose); color: white; transform: translateY(-2px); }
.btn-wa {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: white;
  padding: 14px 24px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 40px;
  transition: background 0.3s, transform 0.3s;
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ============ FLOATING PETALS ============ */
.petal {
  position: absolute; z-index: 2; pointer-events: none;
  color: var(--rose-light); font-size: 18px; opacity: 0.3;
}
.p1 { top: 15%; left: 8%; animation: floatP 6s ease infinite; }
.p2 { top: 30%; right: 6%; animation: floatP 8s ease infinite 1s; }
.p3 { bottom: 25%; left: 5%; animation: floatP 7s ease infinite 2s; }
.p4 { bottom: 15%; right: 10%; animation: floatP 9s ease infinite 0.5s; }
@keyframes floatP {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  50% { transform: translateY(-20px) rotate(20deg); opacity: 0.5; }
}

/* ============ HERO ============ */
#hero {
  height: 100vh; min-height: 680px;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: hZoom 20s ease infinite alternate; }
@keyframes hZoom { from{transform:scale(1.06)} to{transform:scale(1.12)} }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(254,252,249,0.88) 0%, rgba(254,252,249,0.6) 55%, rgba(254,252,249,0.35) 100%);
}
.hero-body { position: relative; z-index: 2; padding: 0 80px; max-width: 780px; }
.hero-eyebrow {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: '✿'; font-size: 12px; }
.hero-title {
  font-family: var(--font-script); font-size: clamp(72px, 11vw, 140px);
  color: var(--brown); line-height: 0.9; margin-bottom: 16px;
}
.ht-dot { color: var(--rose); }
.hero-tagline {
  font-family: var(--font-serif); font-size: clamp(16px, 2vw, 22px);
  color: var(--brown-mid); font-style: italic; margin-bottom: 20px;
  font-weight: 300; letter-spacing: 1px;
}
.hero-desc { font-size: 13px; color: var(--text-mid); line-height: 2; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }

.hero-scroll {
  position: absolute; right: 56px; bottom: 56px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hs-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--rose), transparent); animation: hsPulse 2s ease infinite; }
@keyframes hsPulse { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1)} 100%{transform:scaleY(0);transform-origin:bottom} }
.hero-scroll span { font-size: 9px; letter-spacing: 3px; color: var(--text-light); writing-mode: vertical-rl; }
.hero-hours { position: absolute; left: 56px; bottom: 40px; z-index: 2; font-size: 10px; letter-spacing: 2px; color: var(--text-light); }

/* ============ SOFT STRIP ============ */
.soft-strip {
  background: var(--rose); padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.ss-track { display: inline-flex; gap: 24px; animation: ssTick 22s linear infinite; }
.ss-track span { font-family: var(--font-body); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: white; font-weight: 400; }
.ss-sep { color: rgba(255,255,255,0.5); font-size: 8px; }
@keyframes ssTick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============ SECTION COMMONS ============ */
section { padding: 100px 80px; }
.s-label {
  display: block; font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 14px; font-weight: 400;
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============ STORY ============ */
#story { background: var(--cream); }
.story-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.story-imgs { position: relative; height: 540px; }
.si-main { position: absolute; top: 0; left: 0; width: 80%; height: 88%; overflow: hidden; z-index: 1; }
.si-main img { width: 100%; height: 100%; object-fit: cover; }
.si-float {
  position: absolute; bottom: 0; right: 0; width: 50%; z-index: 2;
  background: white; padding: 4px; box-shadow: var(--shadow-soft);
}
.si-float img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.sif-caption { font-family: var(--font-script); font-size: 16px; color: var(--rose); text-align: center; padding: 8px; }
.si-badge {
  position: absolute; top: -12px; right: -12px; z-index: 3;
  background: var(--rose-pale); border: 1px solid var(--border);
  padding: 16px 20px; text-align: center; border-radius: 50%;
  width: 90px; height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-rose);
}
.sib-n { font-family: var(--font-display); font-size: 22px; color: var(--rose); line-height: 1; }
.sib-l { font-size: 9px; letter-spacing: 1px; color: var(--text-light); text-transform: lowercase; }

.story-text { }
.s-title { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 52px); color: var(--brown); margin-bottom: 24px; line-height: 1.2; font-weight: 400; }
.s-title em { font-style: italic; color: var(--rose); font-family: var(--font-script); font-size: 1.25em; }
.story-text p { font-size: 14px; line-height: 2; color: var(--text-mid); margin-bottom: 18px; }
.story-nums { display: flex; gap: 40px; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 28px 0 32px; }
.snum { display: flex; flex-direction: column; gap: 4px; }
.sn-n { font-family: var(--font-display); font-size: 40px; color: var(--rose); line-height: 1; }
.sn-l { font-size: 10px; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; }

/* ============ MENU ============ */
#menu { background: var(--warm-white); }
.menu-intro { text-align: center; margin-bottom: 44px; }
.menu-intro h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); color: var(--brown); margin-bottom: 14px; }
.menu-intro h2 em { font-style: italic; color: var(--rose); }
.menu-intro p { font-size: 14px; color: var(--text-mid); line-height: 2; max-width: 500px; margin: 0 auto; }
.menu-tabs {
  display: flex; justify-content: center; max-width: 560px; margin: 0 auto 48px;
  border-bottom: 1px solid var(--border);
}
.mtab {
  flex: 1; padding: 12px 16px; background: transparent; border: none;
  border-bottom: 2px solid transparent; color: var(--text-light); cursor: pointer;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 400;
  transition: all 0.3s; margin-bottom: -1px;
}
.mtab.active { color: var(--rose); border-bottom-color: var(--rose); }
.mtab:hover:not(.active) { color: var(--brown-mid); }
.menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1280px; margin: 0 auto; }
.mc { background: white; border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.mc:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(92,74,66,0.12); }
.mc-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.mc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); filter: brightness(0.96); }
.mc:hover .mc-img img { transform: scale(1.05); filter: brightness(1); }
.mc-badge {
  position: absolute; top: 10px; left: 0;
  background: var(--rose); color: white;
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; font-weight: 400;
}
.mc-badge.fav { background: var(--sage); }
.mc-body { padding: 16px 18px 20px; }
.mc-body h3 { font-family: var(--font-serif); font-size: 16px; color: var(--brown); margin-bottom: 7px; font-weight: 400; }
.mc-body p { font-size: 11px; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.mc-tag { font-size: 9px; letter-spacing: 1.5px; color: var(--rose); text-transform: uppercase; }
.mc-cta { background: var(--rose-pale); display: flex; align-items: center; justify-content: center; min-height: 200px; }
.mc-cta-inner { text-align: center; padding: 28px 20px; }
.mcta-deco { font-size: 24px; color: var(--rose); margin-bottom: 12px; }
.mc-cta-inner h3 { font-family: var(--font-display); font-size: 22px; color: var(--brown); margin-bottom: 8px; }
.mc-cta-inner p { font-size: 11px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.7; }

/* ============ LOKASI ============ */
#lokasi { background: var(--linen); }
.lokasi-intro { text-align: center; margin-bottom: 48px; }
.lokasi-intro h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); color: var(--brown); margin-bottom: 14px; }
.lokasi-intro h2 em { font-style: italic; color: var(--rose); }
.lokasi-intro p { font-size: 14px; color: var(--text-mid); max-width: 460px; margin: 0 auto; line-height: 2; }

.branch-tabs { display: flex; justify-content: center; gap: 0; max-width: 560px; margin: 0 auto 48px; }
.btab {
  flex: 1; padding: 14px 12px; background: white; border: 1px solid var(--border);
  border-right: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: background 0.3s, border-color 0.3s;
}
.btab:last-child { border-right: 1px solid var(--border); }
.btab-icon { font-size: 14px; color: var(--text-light); transition: color 0.3s; }
.btab > span:nth-child(2) { font-family: var(--font-serif); font-size: 16px; color: var(--brown-mid); transition: color 0.3s; }
.btab-sub { font-size: 9px; letter-spacing: 1.5px; color: var(--text-light); text-transform: uppercase; }
.btab.active { background: var(--rose-pale); border-color: var(--rose-light); }
.btab.active .btab-icon, .btab.active > span:nth-child(2) { color: var(--rose); }
.btab:hover:not(.active) { background: var(--cream); }

.branch-panels { max-width: 1100px; margin: 0 auto; }
.bpanel { display: none; grid-template-columns: 1fr 1fr; }
.bpanel.active { display: grid; animation: bpIn 0.45s var(--ease); box-shadow: var(--shadow-soft); }
@keyframes bpIn { from{opacity:0; transform:translateY(12px)} to{opacity:1; transform:none} }
.bpanel-map { position: relative; overflow: hidden; }
.bpanel-map iframe { width: 100%; height: 100%; min-height: 400px; display: block; border: 0; filter: sepia(0.15) contrast(0.95) saturate(0.9); }
.bpm-tag {
  position: absolute; bottom: 16px; left: 0;
  background: var(--rose); color: white;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 18px; font-family: var(--font-body);
}
.bpanel-info {
  background: white; padding: 40px 44px;
  display: flex; flex-direction: column;
}
.bpi-open { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #5c9966; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.bpi-dot { width: 7px; height: 7px; background: #5c9966; border-radius: 50%; animation: dotPulse 2s ease infinite; }
@keyframes dotPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.bpanel-info h3 { font-family: var(--font-display); font-size: 28px; color: var(--brown); margin-bottom: 24px; line-height: 1.2; font-weight: 400; }
.bpanel-info h3 em { font-style: italic; color: var(--rose); }
.bpi-rows { flex: 1; margin-bottom: 28px; }
.bpr { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.bpr:last-child { border: none; }
.bpr-icon { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.bpr strong { display: block; font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 4px; }
.bpr p { font-size: 13px; color: var(--text-mid); line-height: 1.8; }
.bpi-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.bpi-btns .btn-rose, .bpi-btns .btn-ghost-rose { font-size: 10px; padding: 10px 20px; }

/* ============ GALERI ============ */
#galeri { background: var(--cream); }
.galeri-intro { text-align: center; margin-bottom: 48px; }
.galeri-intro h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 48px); color: var(--brown); }
.galeri-intro h2 em { font-style: italic; color: var(--rose); }
.galeri-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; max-width: 1300px; margin: 0 auto; }
.gi { position: relative; overflow: hidden; cursor: pointer; }
.gi img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; display: block; transition: transform 0.6s var(--ease), filter 0.4s; filter: brightness(0.95) saturate(0.9); }
.gi:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.05); }
.gi-tall { grid-row: span 2; }
.gi-tall img { aspect-ratio: auto; height: 100%; }
.gi-wide { grid-column: span 2; }
.gi-wide img { aspect-ratio: 2/1; }
.gi-hover {
  position: absolute; inset: 0;
  background: rgba(196,128,122,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
}
.gi:hover .gi-hover { opacity: 1; }
.gi-hover span { font-family: var(--font-script); font-size: 22px; color: white; letter-spacing: 2px; }

/* ============ QUOTE ============ */
#quote { background: var(--rose-pale); padding: 80px; }
.quote-wrap { text-align: center; max-width: 700px; margin: 0 auto; }
.qw-deco { font-size: 22px; color: var(--rose); margin: 16px 0; }
blockquote {
  font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 30px);
  color: var(--brown); font-style: italic; line-height: 1.7; font-weight: 300;
}
.q-open, .q-close { font-family: var(--font-script); font-size: 2.5em; color: var(--rose-light); vertical-align: top; line-height: 0.5; }
cite { display: block; margin-top: 20px; font-family: var(--font-body); font-size: 11px; letter-spacing: 4px; color: var(--rose); text-transform: uppercase; font-style: normal; }

/* ============ CONTACT ============ */
#contact { background: var(--linen); padding: 80px 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto 64px; }
.cgb-name { font-family: var(--font-script); font-size: 42px; color: var(--rose); margin-bottom: 4px; }
.cgb-tagline { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.cgb-desc { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--brown-mid); line-height: 1.8; margin-bottom: 24px; }
.cgb-socials { display: flex; flex-direction: column; gap: 10px; }
.cgs-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-mid); font-size: 12px; text-decoration: none; transition: color 0.3s; }
.cgs-link:hover { color: var(--rose); }

.cg-lokasi h3, .cg-order h3 { font-family: var(--font-display); font-size: 22px; color: var(--brown); margin-bottom: 20px; }
.cgl-list { display: flex; flex-direction: column; gap: 0; }
.cgll { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: padding-left 0.3s; }
.cgll:last-child { border: none; }
.cgll:hover { padding-left: 6px; }
.cgll-dot { color: var(--rose); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.cgll strong { display: block; font-size: 13px; color: var(--brown); margin-bottom: 3px; font-weight: 600; }
.cgll p { font-size: 11px; color: var(--text-light); }
.cg-jam { font-size: 10px; color: var(--text-light); margin-top: 16px; letter-spacing: 1px; line-height: 1.8; }
.cg-order p { font-size: 13px; color: var(--text-mid); line-height: 2; margin-bottom: 24px; }

.footer-bottom { border-top: 1px solid var(--border); padding: 28px 0; text-align: center; max-width: 1200px; margin: 0 auto; }
.fb-flower { color: var(--rose-light); margin-bottom: 10px; letter-spacing: 8px; }
.footer-bottom p { font-size: 11px; color: var(--text-light); letter-spacing: 1.5px; }

/* ============ WA MODAL ============ */
.wa-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(92,74,66,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.35s;
  backdrop-filter: blur(8px);
}
.wa-modal.open { opacity: 1; visibility: visible; }
.wa-modal-box {
  background: var(--warm-white); max-width: 420px; width: 92%;
  border-radius: 4px; overflow: hidden; box-shadow: 0 30px 80px rgba(92,74,66,0.15);
  transform: scale(0.94) translateY(12px); transition: transform 0.35s var(--ease-back); position: relative;
}
.wa-modal.open .wa-modal-box { transform: none; }
.wam-close { position: absolute; top: 14px; right: 16px; background: none; border: none; cursor: pointer; font-size: 16px; color: var(--text-light); transition: color 0.2s; }
.wam-close:hover { color: var(--rose); }
.wam-head { background: var(--rose-pale); padding: 28px 28px 22px; text-align: center; border-bottom: 1px solid var(--border); }
.wamh-deco { font-size: 18px; color: var(--rose); margin-bottom: 8px; }
.wamh-name { font-family: var(--font-script); font-size: 32px; color: var(--rose); margin-bottom: 6px; }
.wam-head p { font-size: 11px; letter-spacing: 2px; color: var(--text-mid); text-transform: uppercase; }
.wam-list { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.wam-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: var(--cream); border: none; cursor: pointer;
  text-align: left; width: 100%; transition: background 0.25s, transform 0.25s;
  border-left: 2px solid transparent; border-radius: 2px;
}
.wam-item:hover { background: var(--rose-pale); border-left-color: var(--rose); transform: translateX(3px); }
.wami-icon { font-size: 16px; color: var(--rose); flex-shrink: 0; }
.wami-info { flex: 1; }
.wami-info strong { display: block; font-size: 13px; color: var(--brown); margin-bottom: 2px; }
.wami-info span { font-size: 11px; color: var(--text-light); }
.wami-arr { color: var(--rose); font-size: 16px; }

/* ============ WA FAB ============ */
.wa-fab {
  position: fixed; bottom: 30px; right: 30px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.35s var(--ease-back), opacity 0.4s;
  opacity: 0;
}
.wa-fab:hover { transform: scale(1.1); }
.waf-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: #25D366; animation: wafPulse 2s ease infinite; }
@keyframes wafPulse { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.8);opacity:0} }

/* ============ SCROLL REVEAL ============ */
.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.scroll-reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  section { padding: 72px 40px; }
  #navbar { padding: 18px 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .story-wrap { grid-template-columns: 1fr; gap: 40px; }
  .story-imgs { max-width: 480px; margin: 0 auto; }
  .bpanel.active { grid-template-columns: 1fr; }
  .bpanel-map iframe { min-height: 250px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  section { padding: 56px 24px; }
  .hero-content { padding: 0 32px; }
  .hero-hours, .hero-scroll { display: none; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .galeri-grid { grid-template-columns: 1fr 1fr; }
  .gi-tall, .gi-wide { grid-row: auto; grid-column: auto; }
  .gi-wide img { aspect-ratio: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .branch-tabs { flex-direction: column; max-width: 300px; }
  .btab { border-right: 1px solid var(--border); border-bottom: none; }
  .btab:last-child { border-bottom: 1px solid var(--border); }
  #quote { padding: 56px 32px; }
  .story-nums { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 68px; }
  .menu-grid { grid-template-columns: 1fr; }
  .galeri-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
