/* ── Tokens ─────────────────────────────────────────── */
:root {
  --brand-50: #f0fdfa;
  --brand-100: #ccfbf1;
  --brand-200: #99f6e4;
  --brand-300: #5eead4;
  --brand-400: #2dd4bf;
  --brand-500: #14b8a6;
  --brand-600: #0d9488;
  --brand-700: #0f766e;
  --brand-800: #115e59;
  --brand-900: #134e4a;
  --brand-950: #042f2e;

  --accent-50: #f0fdfa;
  --accent-100: #ccfbf1;
  --accent-200: #99f6e4;
  --accent-300: #5eead4;
  --accent-400: #2dd4bf;
  --accent-500: #14b8a6;
  --accent-600: #0d9488;
  --accent-700: #0f766e;
  --accent-800: #115e59;
  --accent-900: #134e4a;
  --accent-950: #042f2e;

  --shadow-soft: 0 1px 2px rgb(4 47 46 / 0.04), 0 8px 24px -8px rgb(4 47 46 / 0.1);
  --shadow-lift: 0 2px 4px rgb(4 47 46 / 0.05), 0 20px 40px -12px rgb(4 47 46 / 0.18);

  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--brand-50);
  color: var(--brand-950);
  line-height: 1.5;
}

::selection { background: var(--brand-200); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Utility ───────────────────────────────────────── */
.size-4 { width: 1rem; height: 1rem; flex-shrink: 0; }
.size-5 { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.size-5\.5 { width: 1.375rem; height: 1.375rem; flex-shrink: 0; }
.size-6 { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.size-6\.5 { width: 1.625rem; height: 1.625rem; flex-shrink: 0; }
.mt-2 { margin-top: 0.5rem; }
.bg-white { background: #fff; }

/* icon colors */
.icon-brand { color: var(--brand-200); }
.icon-check { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.125rem; color: var(--accent-600); }
.icon-phone { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--accent-600); }

/* ── Skip Link ─────────────────────────────────────── */
.skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; z-index: 100; width: auto; height: auto;
  clip: auto; white-space: normal; border-radius: 9999px; background: var(--brand-800);
  padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600; color: #fff;
}

/* ── Header ────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  border-bottom: 1px solid rgb(4 47 46 / 0.05);
  background: rgb(255 255 255 / 0.8); backdrop-filter: blur(24px);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 72rem; margin: 0 auto; height: 4rem; padding: 0 1.25rem;
}
@media (min-width: 640px) { .nav { padding: 0 2rem; } }

/* Logo */
.logo { display: flex; align-items: center; gap: 0.625rem; font-weight: 800; letter-spacing: -0.025em; }
.logo-img { border-radius: 0.75rem; }
.logo-text { font-size: 1rem; line-height: 1.25; }
.logo-sub { display: block; font-size: 0.6875rem; font-weight: 600; color: var(--brand-600); }

/* Desktop nav links */
.nav-links { display: none; align-items: center; gap: 1.5rem; font-size: 0.875rem; font-weight: 600; color: rgb(4 47 46 / 0.7); }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { transition: color 0.15s; }
.nav-links a:hover { color: var(--brand-700); }

/* Open badge */
.open-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  border-radius: 9999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700;
}
.open-badge.open { background: #dcfce7; color: #15803d; }
.open-badge.closed { background: var(--brand-100); color: var(--brand-700); }
.open-badge-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; }
.open-badge.open .open-badge-dot { background: #22c55e; animation: pulse 2s infinite; }
.open-badge.closed .open-badge-dot { background: var(--brand-500); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

/* Menu button (mobile only) */
.menu-btn {
  display: flex; margin-right: -0.5rem; border-radius: 9999px; padding: 0.5rem;
  color: var(--brand-700); background: none; border: none; cursor: pointer;
}
.menu-btn:hover { background: var(--brand-50); }
@media (min-width: 768px) { .menu-btn { display: none; } }

/* WhatsApp button */
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; font-weight: 700; color: #fff; transition: transform 0.15s, background 0.15s;
}
.btn-wa:hover { transform: translateY(-0.5px); }
@media (prefers-reduced-motion: reduce) { .btn-wa:hover { transform: none; } }
.btn-wa-header { background: var(--brand-700); padding: 0.625rem 1rem; font-size: 0.875rem; }
.btn-wa-header:hover { background: var(--brand-800); }
.btn-wa-lg { background: var(--brand-700); padding: 0.875rem 1.75rem; box-shadow: var(--shadow-lift); }
.btn-wa-lg:hover { background: var(--brand-800); }
.btn-wa-cta {
  background: #fff; color: var(--brand-800); padding: 1rem 2rem;
  font-weight: 800; box-shadow: var(--shadow-lift);
}
.btn-wa-cta:hover { background: var(--brand-50); }

/* ── Mobile Menu ───────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 50; flex-direction: column;
  background: #fff;
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu.open { display: none; } }
.mobile-menu-top {
  display: flex; align-items: center; justify-content: space-between; padding: 1.25rem;
}
.mobile-menu-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brand-500); }
.menu-close { border-radius: 9999px; padding: 0.5rem; color: var(--brand-700); background: none; border: none; cursor: pointer; }
.mobile-nav-links {
  display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; padding-bottom: 5rem;
}
.mobile-nav-links a {
  font-size: 1.875rem; font-weight: 800; letter-spacing: -0.025em;
  color: var(--brand-900); transition: color 0.15s;
}
.mobile-nav-links a:hover { color: var(--brand-600); }

body.no-scroll { overflow: hidden; }

/* ── Hero ──────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding-top: 4rem; }

.hero-blob {
  position: absolute; pointer-events: none; border-radius: 50%;
}
.hero-blob-1 {
  top: -10rem; right: -10%; width: 34rem; height: 34rem;
  background: linear-gradient(to bottom right, rgb(153 246 228 / 0.5), rgb(94 234 212 / 0.3)); filter: blur(64px);
}
.hero-blob-2 {
  left: -10rem; top: 16rem; width: 26rem; height: 26rem;
  background: rgb(204 251 241 / 0.7); filter: blur(64px);
}

.hero-inner {
  position: relative; display: grid; align-items: center; gap: 3.5rem;
  max-width: 72rem; margin: 0 auto; padding: 4rem 1.25rem 6rem;
}
@media (min-width: 640px) { .hero-inner { padding: 4rem 2rem 8rem; } }
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; padding: 6rem 2rem 8rem; }
}

/* Pill badge */
.pill-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; border: 1px solid var(--brand-200);
  background: #fff; padding: 0.375rem 1rem;
  font-size: 0.75rem; font-weight: 700; color: var(--brand-700);
  box-shadow: var(--shadow-soft);
}
.pill-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--brand-500); }

.hero-title {
  margin-top: 1.5rem; font-size: 2.25rem; font-weight: 800;
  line-height: 1.08; letter-spacing: -0.025em;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-gradient {
  background: linear-gradient(to right, var(--brand-600), var(--accent-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-desc {
  margin-top: 1.5rem; max-width: 28rem; font-size: 1.125rem; line-height: 1.625;
  color: rgb(4 47 46 / 0.65);
}

.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2.25rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.375rem;
  border-radius: 9999px; padding: 0.875rem 0.5rem; font-weight: 700; color: var(--brand-800);
  transition: gap 0.15s;
}
.btn-ghost:hover { gap: 0.625rem; }

.btn-accent {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; background: var(--accent-700); padding: 0.75rem 1.5rem;
  font-size: 0.875rem; font-weight: 700; color: #fff;
  box-shadow: var(--shadow-soft); transition: transform 0.15s, background 0.15s;
}
.btn-accent:hover { transform: translateY(-0.5px); background: var(--accent-800); box-shadow: var(--shadow-lift); }
@media (prefers-reduced-motion: reduce) { .btn-accent:hover { transform: none; } }

.hero-hours {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem;
  font-size: 0.875rem; font-weight: 600; color: rgb(4 47 46 / 0.55);
}
.hero-hours svg { color: var(--brand-600); }

/* Hero image */
.hero-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 2.5rem; box-shadow: var(--shadow-lift); }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(4 47 46 / 0.8), rgb(4 47 46 / 0.3), transparent);
}
.hero-cards {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; display: grid; gap: 0.75rem;
}
@media (min-width: 640px) { .hero-cards { padding: 2rem; } }
.hero-card {
  display: flex; align-items: flex-start; gap: 0.75rem;
  border-radius: 1rem; background: rgb(0 0 0 / 0.3); backdrop-filter: blur(12px);
  padding: 0.875rem; color: #fff; font-size: 0.875rem;
}
.hero-card-title { font-weight: 700; }
.hero-card-sub { color: rgb(255 255 255 / 0.9); }
.hero-card .icon-brand { margin-top: 0.125rem; }

/* ── Stats ─────────────────────────────────────────── */
.stats { border-top: 1px solid rgb(4 47 46 / 0.05); border-bottom: 1px solid rgb(4 47 46 / 0.05); background: #fff; }
.stats-grid {
  display: grid; grid-template-columns: 1fr; max-width: 72rem; margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); padding: 0 2rem; }
}
.stat {
  display: flex; flex-direction: column; padding: 2rem 0.5rem; text-align: center;
  border-bottom: 1px solid rgb(4 47 46 / 0.05);
}
@media (min-width: 640px) {
  .stat { border-bottom: none; border-right: 1px solid rgb(4 47 46 / 0.05); padding: 2.5rem 0.5rem; }
  .stat:last-child { border-right: none; }
}
.stat-value { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.025em; color: var(--brand-800); }
.stat-label { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; color: rgb(4 47 46 / 0.55); }

/* ── Section ───────────────────────────────────────── */
.section { scroll-margin-top: 5rem; }
.container { max-width: 72rem; margin: 0 auto; padding: 6rem 1.25rem; }
@media (min-width: 640px) { .container { padding: 6rem 2rem; } }
@media (min-width: 768px) { .container { padding: 8rem 2rem; } }

.section-header { max-width: 36rem; }
.section-label {
  font-size: 0.875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--brand-600);
}
.section-title {
  margin-top: 0.75rem; font-size: 1.875rem; font-weight: 800; letter-spacing: -0.025em;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }

/* ── Cards Grid ────────────────────────────────────── */
.cards-grid {
  display: grid; gap: 1.5rem; margin-top: 3.5rem;
}
@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex; flex-direction: column; height: 100%; overflow: hidden;
  border-radius: 1.5rem; border: 1px solid rgb(4 47 46 / 0.05);
  background: #fff; box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-0.375rem); box-shadow: var(--shadow-lift); }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }

.card-img-wrap { position: relative; height: 12rem; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .card:hover .card-img { transform: none; } }
.card-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(4 47 46 / 0.4), transparent);
}
.card-icon {
  position: absolute; bottom: 1rem; left: 1rem;
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem; background: rgb(255 255 255 / 0.9);
  color: var(--accent-700); backdrop-filter: blur(4px); box-shadow: var(--shadow-soft);
}
.card-body { padding: 1.75rem; }
.card-title { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.025em; }
.card-desc { margin-top: 0.75rem; line-height: 1.625; color: rgb(4 47 46 / 0.6); }

/* ── Tentang ───────────────────────────────────────── */
.tentang-grid { display: grid; align-items: center; gap: 3rem; }
@media (min-width: 768px) { .tentang-grid { grid-template-columns: repeat(2, 1fr); } }
.tentang-desc { margin-top: 1.5rem; font-size: 1.125rem; line-height: 1.625; color: rgb(4 47 46 / 0.65); }
.tentang-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.tentang-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 600; }

.tentang-images { display: flex; flex-direction: column; gap: 1.5rem; }
.tentang-img-main { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 2.5rem; box-shadow: var(--shadow-soft); }
.tentang-img { width: 100%; height: 100%; object-fit: cover; }

.tentang-card {
  border-radius: 1.5rem; background: #fff; padding: 1.75rem;
  box-shadow: var(--shadow-soft); box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--brand-100);
}
.tentang-card-title { margin-top: 0.75rem; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.025em; }
.tentang-card-desc { margin-top: 0.75rem; line-height: 1.625; color: rgb(4 47 46 / 0.6); }
.tentang-card .btn-accent { margin-top: 1.25rem; }

.tentang-phone {
  display: flex; align-items: center; gap: 0.625rem; padding: 0 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: rgb(4 47 46 / 0.55);
}

/* ── Lokasi ────────────────────────────────────────── */
.lokasi-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
@media (min-width: 1024px) { .lokasi-grid { grid-template-columns: repeat(2, 1fr); } }

.info-card {
  height: 100%; border-radius: 1.5rem; border: 1px solid rgb(4 47 46 / 0.05);
  background: #fff; padding: 2rem; box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .info-card { padding: 2.5rem; } }
.info-card-addr { display: flex; flex-direction: column; }
.info-card-icon {
  display: grid; place-items: center; width: 3.25rem; height: 3.25rem;
  border-radius: 1rem; background: var(--accent-50); color: var(--accent-700);
  box-shadow: inset 0 0 0 1px var(--accent-100);
}
.info-card-title { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.025em; }

.hours-list { margin-top: 1.5rem; }
.hours-list > * { border-top: 1px solid rgb(4 47 46 / 0.05); }
.hours-row { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.hours-row dt { font-weight: 600; color: rgb(4 47 46 / 0.6); }
.hours-time { font-weight: 800; color: var(--accent-700); }
.hours-confirm { font-weight: 700; color: rgb(4 47 46 / 0.8); }

.address-text { margin-top: 1rem; font-size: 1.125rem; line-height: 1.625; color: rgb(4 47 46 / 0.7); }
.maps-link {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto;
  padding-top: 2rem; font-weight: 700; color: var(--accent-700);
  transition: gap 0.15s;
}
.maps-link:hover { gap: 0.75rem; }

/* ── CTA ───────────────────────────────────────────── */
.cta { padding: 0 1.25rem 6rem; }
@media (min-width: 640px) { .cta { padding: 0 2rem 8rem; } }

.cta-card {
  position: relative; overflow: hidden; border-radius: 2.5rem;
  background: linear-gradient(to bottom right, var(--brand-700), var(--brand-800), var(--accent-950));
  padding: 4rem 2rem; text-align: center; color: #fff; box-shadow: var(--shadow-lift);
  max-width: 72rem; margin: 0 auto;
}
@media (min-width: 640px) { .cta-card { padding: 4rem; } }
@media (min-width: 768px) { .cta-card { padding: 5rem 4rem; } }

.cta-blob { position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none; }
.cta-blob-tl { top: -5rem; left: -5rem; width: 18rem; height: 18rem; background: rgb(45 212 191 / 0.2); }
.cta-blob-br { bottom: -6rem; right: -4rem; width: 20rem; height: 20rem; background: rgb(20 78 74 / 0.2); }

.cta-title { position: relative; max-width: 42rem; margin: 0 auto; font-size: 1.875rem; font-weight: 800; letter-spacing: -0.025em; }
@media (min-width: 640px) { .cta-title { font-size: 2.25rem; } }
.cta-desc { position: relative; max-width: 36rem; margin: 1rem auto 0; font-size: 1.125rem; color: rgb(204 251 241 / 0.85); }
.cta a { position: relative; margin-top: 2.25rem; }

/* ── Footer ────────────────────────────────────────── */
.footer { border-top: 1px solid rgb(4 47 46 / 0.05); background: #fff; }
.footer-grid {
  display: grid; gap: 2.5rem; max-width: 72rem; margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
@media (min-width: 640px) { .footer-grid { padding: 3.5rem 2rem; } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-logo { display: flex; align-items: center; gap: 0.625rem; font-weight: 800; letter-spacing: -0.025em; }
.footer-tagline { margin-top: 1rem; max-width: 20rem; font-size: 0.875rem; line-height: 1.625; color: rgb(4 47 46 / 0.55); }
.footer-heading { margin-bottom: 0.75rem; font-weight: 800; color: var(--brand-950); font-size: 0.875rem; }
.footer-text { font-size: 0.875rem; line-height: 1.625; color: rgb(4 47 46 / 0.65); }
.footer-link { font-weight: 700; color: var(--brand-700); }
.footer-link:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgb(4 47 46 / 0.05); padding: 1.5rem;
  text-align: center; font-size: 0.75rem; font-weight: 600; color: rgb(4 47 46 / 0.45);
}

/* ── Scroll Reveal ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
