/* ============================================================
   RUMAH TEDUH — Website (single-page) styles
   Mobile-first. Uses tokens from colors_and_type.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: #F3EEDF;
  /* barely-there warm paper grain — on-brand soft texture */
  background-image:
    radial-gradient(circle at 18% 12%, rgba(107,122,66,.045), transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(107,122,66,.05), transparent 42%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-attachment: fixed, fixed, fixed;
  color: var(--fg);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--teduh-green); color: var(--warm-cream); }
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(56px, 9vw, 104px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
/* Alternating section tone — deeper warm sage + faint paper grain for rhythm */
.section--alt {
  background-color: #E6E1C5;
  background-image:
    radial-gradient(circle at 12% 4%, rgba(107,122,66,.08), transparent 44%),
    radial-gradient(circle at 90% 98%, rgba(77,89,48,.07), transparent 46%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.05'/%3E%3C/svg%3E");
  border-block: 1px solid rgba(107,122,66,.16);
}

/* ---------- Type helpers ---------- */
/* Brand pill section label — olive pill, cream uppercase text (matches poster system) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: var(--w-bold); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--warm-cream); margin: 0;
  background: var(--forest-green); padding: 8px 16px 8px 13px; border-radius: var(--r-pill);
}
p.eyebrow { color: var(--warm-cream); }
.eyebrow .ico { width: 15px; height: 15px; color: var(--warm-cream); }
p.eyebrow--cream { color: var(--forest-green); background: var(--warm-cream); }
.eyebrow--cream .ico { color: var(--forest-green); }
/* Decorative botanical sprig divider (brand motif) */
.sprig { display: block; margin: 0 auto; color: var(--olive-muted); opacity: .9; }
.sprig svg { display: block; }
.section-divider { display: flex; align-items: center; justify-content: center; padding: 6px 0; gap: 14px; }
.section-divider::before, .section-divider::after { content: ""; height: 1px; width: min(120px, 18vw); background: linear-gradient(90deg, transparent, var(--line-strong)); }
.section-divider::after { background: linear-gradient(90deg, var(--line-strong), transparent); }
.section-title {
  font-weight: var(--w-extrabold);
  font-size: clamp(26px, 4.4vw, 40px); line-height: 1.12; letter-spacing: -0.02em;
  color: var(--almost-black); margin: 14px 0 0; text-wrap: balance;
}
.section-intro {
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.65; color: var(--fg-muted);
  margin: 16px 0 0; max-width: 56ch; text-wrap: pretty;
}
.section-head { margin-bottom: clamp(32px, 4vw, 52px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 15px; font-weight: var(--w-bold);
  border: none; cursor: pointer; border-radius: var(--r-pill);
  padding: 15px 26px; min-height: 50px; transition: background var(--dur) var(--ease-out),
    transform var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  text-align: center; line-height: 1.1;
}
.btn .ico { width: 19px; height: 19px; }
.wa-ico { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex-shrink: 0; }
.wa-ico svg { width: 100%; height: 100%; display: block; }
.wa-float .wa-ico { width: 22px; height: 22px; }
.btn--lg .wa-ico { width: 22px; height: 22px; }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--teduh-green); color: var(--warm-cream); }
.btn--primary:hover { background: var(--forest-green); }
.btn--ghost { background: transparent; color: var(--forest-green); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover { background: var(--white); border-color: var(--teduh-green); }
.btn--cream { background: var(--warm-cream); color: var(--forest-green); }
.btn--cream:hover { background: var(--cream-deep); }
.btn--block { width: 100%; }
.btn--lg { font-size: 16px; padding: 17px 30px; min-height: 56px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color var(--dur), box-shadow var(--dur);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-xs); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding-block: 0;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 38px; width: auto; }
.nav { display: none; align-items: center; gap: 2px; }
.nav a {
  font-size: 14.5px; font-weight: var(--w-medium); color: var(--fg-muted);
  padding: 9px 14px; border-radius: var(--r-pill); transition: color var(--dur), background var(--dur);
}
.nav a:hover { color: var(--forest-green); background: var(--green-tint); }
.header-cta { display: none; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-md); border: 1px solid var(--line);
  background: var(--white); cursor: pointer; color: var(--forest-green);
}
.menu-toggle .ico { width: 22px; height: 22px; }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; display: none;
  background: color-mix(in srgb, var(--almost-black) 35%, transparent);
  backdrop-filter: blur(3px);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px);
  background: var(--ivory); padding: 20px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-lg); transform: translateX(8px); animation: slideIn var(--dur) var(--ease-out) forwards;
}
@keyframes slideIn { to { transform: translateX(0); } }
.mobile-menu__close { align-self: flex-end; width: 44px; height: 44px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: var(--white); cursor: pointer; color: var(--forest-green);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.mobile-menu a {
  font-size: 18px; font-weight: var(--w-semibold); color: var(--forest-green);
  padding: 14px 12px; border-radius: var(--r-md); border-bottom: 1px solid var(--line);
}
.mobile-menu a:active { background: var(--green-tint); }
.mobile-menu .btn { margin-top: 16px; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ============================================================
   HERO — full-bleed photo with text overlay
   ============================================================ */
.hero { position: relative; isolation: isolate; min-height: 90svh; display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media .slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(40,46,28,.40) 0%, rgba(40,46,28,.20) 32%, rgba(40,46,28,.55) 78%, rgba(40,46,28,.86) 100%);
}
.hero .container { padding-block: clamp(56px, 10vw, 96px); width: 100%; }
.hero__inner { max-width: 720px; }
.hero__tagline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: var(--w-bold); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-cream); background: color-mix(in srgb, var(--forest-green) 55%, transparent);
  border: 1px solid color-mix(in srgb, var(--warm-cream) 30%, transparent);
  padding: 8px 15px; border-radius: var(--r-pill); margin: 0;
}
.hero h1 {
  font-weight: var(--w-extrabold); color: #fff;
  font-size: clamp(32px, 6.4vw, 60px); line-height: 1.06; letter-spacing: -0.025em;
  margin: 22px 0 0; text-wrap: balance; max-width: 16ch;
  text-shadow: 0 2px 24px rgba(30,30,30,.28);
}
.hero p.hero__sub {
  font-size: clamp(16px, 2vw, 20px); line-height: 1.6; color: rgba(255,255,255,.92);
  margin: 20px 0 0; max-width: 52ch; text-wrap: pretty; text-shadow: 0 1px 12px rgba(30,30,30,.3);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.22);
}
.hero__trust li {
  display: flex; align-items: center; gap: 9px; list-style: none;
  font-size: 14px; font-weight: var(--w-semibold); color: rgba(255,255,255,.94);
}
.hero__trust .ico { width: 20px; height: 20px; color: var(--warm-cream); }
.hero__trust ul { display: contents; }

/* ============================================================
   WELCOME BAND
   ============================================================ */
.welcome { padding-block: clamp(40px, 6vw, 72px); }
.welcome__inner { max-width: 880px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: clamp(22px, 3vw, 34px); }
.welcome__art { margin: 0; width: 100%; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line);
  background: #FBF8EF; box-shadow: var(--shadow-sm); }
.welcome__art img { display: block; width: 100%; height: auto; }
.welcome__text h2 { font-weight: var(--w-extrabold); font-size: clamp(24px, 3.4vw, 36px); line-height: 1.14;
  letter-spacing: -0.02em; color: var(--almost-black); margin: 16px 0 0; text-wrap: balance; }
.welcome__text p:not(.eyebrow) { font-size: clamp(15px, 1.7vw, 18px); line-height: 1.65; color: var(--fg-muted); margin: 14px auto 0; max-width: 54ch; }

/* ============================================================
   VALUE PROPS (5 pillars)
   ============================================================ */
.keunggulan { background-color: var(--ivory); border-block: 1px solid var(--line); }
.keunggulan__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px;
  flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 48px); }
.keunggulan__intro { max-width: 680px; }
.keunggulan__cta { flex-shrink: 0; }
.why-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  display: flex; flex-direction: column; background: var(--green-tint); border-radius: var(--r-xl);
  padding: 28px 26px; min-height: 300px;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card__icon .ico { width: 36px; height: 36px; color: var(--forest-green); }
.why-card__body { margin-top: auto; padding-top: clamp(28px, 4vw, 44px); }
.why-card h3 { font-size: clamp(20px, 2.2vw, 23px); font-weight: var(--w-extrabold); color: var(--almost-black);
  letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 12px; text-wrap: balance; }
.why-card p { font-size: 14px; line-height: 1.6; color: var(--fg-muted); margin: 0; }
.why-card__cta { margin-top: 22px; align-self: flex-start; }
.why-card--feature { background: var(--forest-green); }
.why-card--feature .why-card__icon .ico { color: var(--warm-cream); }
.why-card--feature h3 { color: #fff; }
.why-card--feature p { color: rgba(239,230,194,.85); }

/* ============================================================
   REHAT band (forest green)
   ============================================================ */
.rehat { background: var(--forest-green); color: var(--warm-cream); position: relative; overflow: hidden; }
.rehat::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 88% -10%, rgba(239,230,194,.10), transparent 60%);
}
.rehat .section-title { color: #fff; }
.rehat .section-intro { color: rgba(239,230,194,.85); }
.rehat__layout { display: grid; gap: clamp(24px, 3vw, 40px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 880px) { .rehat__layout { grid-template-columns: 1.05fr 0.95fr; } }
.rehat__rows { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; counter-reset: r; }
.rehat__row {
  display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 18px;
  padding: 20px clamp(18px, 2.5vw, 24px);
  background: rgba(239,230,194,.06); border: 1px solid rgba(239,230,194,.16); border-radius: var(--r-lg);
}
.rehat__badge {
  width: clamp(44px, 6vw, 54px); height: clamp(44px, 6vw, 54px); border-radius: var(--r-pill);
  background: var(--warm-cream); color: var(--forest-green);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(22px, 3vw, 27px); font-weight: var(--w-extrabold); flex-shrink: 0; letter-spacing: -0.02em;
}
.rehat__row h3 { font-size: clamp(17px, 2.2vw, 21px); font-weight: var(--w-bold); color: #fff; margin: 6px 0 6px; }
.rehat__row p { font-size: 15px; line-height: 1.6; color: rgba(239,230,194,.82); margin: 0; max-width: 52ch; }
.rehat__payoff {
  background: rgba(239,230,194,.07); border: 1px solid rgba(239,230,194,.18); border-radius: var(--r-xl);
  padding: clamp(18px, 2.5vw, 24px); position: sticky; top: 96px;
}
.rehat__art { margin: 0; border-radius: var(--r-lg); overflow: hidden; }
.rehat__art img { display: block; width: 100%; height: auto; }
.rehat__eq { display: flex; align-items: baseline; gap: 12px; margin-top: 22px; }
.rehat__eqmark { font-size: clamp(34px, 5vw, 48px); font-weight: var(--w-bold); color: rgba(239,230,194,.6); line-height: 1; }
.rehat__eqword { font-size: clamp(40px, 6.5vw, 64px); font-weight: var(--w-extrabold); color: #fff; letter-spacing: -0.03em; line-height: 1; }
.rehat__payoff p { font-size: 15.5px; line-height: 1.6; color: rgba(239,230,194,.82); margin: 16px 0 0; }

/* ============================================================
   ROOMS & PRICING
   ============================================================ */
.rooms__grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .rooms__grid { grid-template-columns: 1fr 1fr; } }
.room-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.room-card__media { position: relative; }
.room-card__media .slot { width: 100%; height: 240px; display: block; }
.room-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 12px; font-weight: var(--w-bold); padding: 6px 13px; border-radius: var(--r-pill);
  background: var(--warm-cream); color: var(--forest-green); box-shadow: var(--shadow-sm);
}
.room-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.room-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.room-card__top h3 { font-size: 22px; font-weight: var(--w-extrabold); color: var(--almost-black); margin: 0; letter-spacing: -0.01em; }
.room-card__size { font-size: 13px; font-weight: var(--w-semibold); color: var(--fg-subtle); white-space: nowrap; }
.room-card__desc { font-size: 14.5px; line-height: 1.55; color: var(--fg-muted); margin: 10px 0 0; }
.room-card__price { margin-top: 20px; display: flex; align-items: baseline; gap: 8px; }
.room-card__price .amt { font-size: 30px; font-weight: var(--w-extrabold); color: var(--forest-green); letter-spacing: -0.02em; }
.room-card__price .per { font-size: 14px; font-weight: var(--w-medium); color: var(--fg-subtle); }
.room-card__feats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: var(--w-semibold); color: var(--forest-green);
  background: var(--green-tint); padding: 6px 12px; border-radius: var(--r-pill);
}
.chip .ico { width: 14px; height: 14px; }
.room-card .btn { margin-top: 22px; }

.price-notes {
  margin-top: 24px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 3vw, 36px);
  display: grid; gap: clamp(24px, 3vw, 40px); grid-template-columns: 1fr;
}
@media (min-width: 720px) { .price-notes { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .price-notes { grid-template-columns: 1fr 1fr 1fr; } }
.price-col__title { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: var(--w-bold);
  letter-spacing: .03em; text-transform: uppercase; color: var(--fg-muted); margin: 0 0 16px; }
.price-col__title .ico { width: 18px; height: 18px; }
.price-col__title--in { color: var(--success); }
.price-col__title--ex { color: var(--warning); }
.incl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.incl-list li { display: flex; gap: 11px; font-size: 15px; line-height: 1.5; color: var(--fg); align-items: flex-start; }
.incl-list .ico { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; margin-top: 1px; }
.incl-list--excl .ico { color: var(--warning); }
.incl-list strong { font-weight: var(--w-bold); }
/* Kamar → pointer to Fasilitas */
.price-foot { display: flex; gap: 9px; align-items: flex-start; margin: 22px 0 0; font-size: 14px; color: var(--fg-subtle); line-height: 1.5; }
.price-foot .ico { width: 18px; height: 18px; color: var(--teduh-green); flex-shrink: 0; margin-top: 1px; }
.price-foot a { color: var(--forest-green); font-weight: var(--w-bold); text-decoration: underline; text-underline-offset: 2px; }
/* Fasilitas → inclusion note + 2-col biaya/kontrak panel */
.facil-note { display: flex; gap: 14px; align-items: flex-start; margin: 18px 0 0;
  background: color-mix(in srgb, var(--success) 12%, transparent); border: 1px solid color-mix(in srgb, var(--success) 30%, transparent);
  border-radius: var(--r-lg); padding: 18px clamp(18px, 3vw, 24px); font-size: 15px; line-height: 1.6; color: var(--fg); }
.facil-note .ico { width: 22px; height: 22px; color: var(--success); flex-shrink: 0; margin-top: 1px; }
.facil-note strong { font-weight: var(--w-bold); }
.price-notes.price-notes--2 { grid-template-columns: 1fr; }
@media (min-width: 760px) { .price-notes.price-notes--2 { grid-template-columns: 1fr 1fr; } }
.contract { display: flex; flex-direction: column; gap: 12px; }
.contract__opt { border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; background: var(--ivory); }
.contract__opt h4 { margin: 0 0 5px; font-size: 15.5px; font-weight: var(--w-bold); color: var(--almost-black);
  display: flex; align-items: center; gap: 8px; }
.contract__opt h4 .ico { width: 18px; height: 18px; color: var(--teduh-green); }
.contract__opt p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--fg-muted); }

/* ============================================================
   FACILITIES
   ============================================================ */
.facil__grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .facil__grid { grid-template-columns: 1fr 1fr; } }
.facil-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px); }
.facil-card__head { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.facil-card__head .ic-wrap { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--green-tint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.facil-card__head .ic-wrap .ico { width: 24px; height: 24px; color: var(--teduh-green); }
.facil-card__head h3 { font-size: 20px; font-weight: var(--w-bold); color: var(--almost-black); margin: 0; letter-spacing: -0.01em; }
.facil-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.facil-list li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--fg); line-height: 1.4;
  padding: 12px 2px; border-bottom: 1px solid var(--line); }
.facil-list li:last-child { border-bottom: none; }
.facil-list .ico { width: 19px; height: 19px; color: var(--teduh-green); flex-shrink: 0; }
.positioning {
  margin-top: 22px; display: flex; gap: 16px; align-items: flex-start;
  background: var(--green-tint); border-radius: var(--r-lg); padding: 22px clamp(20px, 3vw, 28px);
}
.positioning .ic-wrap { width: 42px; height: 42px; border-radius: var(--r-md); background: var(--forest-green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.positioning .ic-wrap .ico { width: 22px; height: 22px; color: var(--warm-cream); }
.positioning h3 { font-size: 16px; font-weight: var(--w-bold); color: var(--forest-green); margin: 2px 0 6px; }
.positioning p { font-size: 14.5px; line-height: 1.6; color: var(--fg-muted); margin: 0; max-width: 70ch; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.gallery figure { margin: 0; position: relative; cursor: zoom-in; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); }
.gallery .slot { width: 100%; display: block; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 13px;
  font-size: 13px; font-weight: var(--w-semibold); color: #fff;
  background: linear-gradient(180deg, transparent, rgba(40,46,28,.78));
  opacity: 0; transition: opacity var(--dur); pointer-events: none;
}
.gallery figure:hover figcaption { opacity: 1; }
.gallery__zoom { position: absolute; top: 12px; right: 12px; z-index: 3; width: 36px; height: 36px;
  border-radius: var(--r-pill); background: rgba(40,46,28,.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--dur); }
.gallery figure:hover .gallery__zoom { opacity: 1; }
.gallery__zoom .ico { width: 18px; height: 18px; color: #fff; }
.g-tall { grid-row: span 2; }
.g-tall .slot { height: 100%; min-height: 340px; }
.gallery figure:not(.g-tall) .slot { height: 220px; }
@media (min-width: 760px) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
  .gallery figure { grid-row: span 1; }
  .gallery figure.g-tall { grid-row: span 2; }
  .gallery figure.g-wide { grid-column: span 2; }
  .gallery .slot, .gallery figure:not(.g-tall) .slot, .g-tall .slot { height: 100%; min-height: 0; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(30,30,30,.82); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); object-fit: contain; background: var(--green-tint); }
.lightbox__empty { width: min(92vw, 760px); aspect-ratio: 4/3; border-radius: var(--r-md);
  background: var(--green-tint); display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--forest-green); text-align: center; padding: 32px; }
.lightbox__empty .ico { width: 48px; height: 48px; opacity: .6; }
.lightbox__cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center;
  color: var(--warm-cream); font-size: 14px; font-weight: var(--w-semibold); padding: 0 24px; }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 48px; height: 48px; border-radius: var(--r-pill); border: none; cursor: pointer;
  background: rgba(242,237,224,.16); color: var(--warm-cream); display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background var(--dur);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(242,237,224,.3); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__close .ico { width: 24px; height: 24px; }
.lightbox__nav .ico { width: 26px; height: 26px; }
.lightbox__nav--prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 620px) { .lightbox__nav { top: auto; bottom: 24px; transform: none; }
  .lightbox__nav--prev { left: 24px; } .lightbox__nav--next { right: 24px; } }

/* ============================================================
   LOCATION
   ============================================================ */
.loc__address { display: flex; gap: 12px; align-items: flex-start; margin: 0 0 22px;
  font-size: 16px; line-height: 1.5; color: var(--fg); }
.loc__address .ico { width: 22px; height: 22px; color: var(--teduh-green); flex-shrink: 0; margin-top: 2px; }
.loc__address strong { font-weight: var(--w-bold); }
.loc-cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .loc-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .loc-cards { grid-template-columns: repeat(3, 1fr); } }
.loc-card { background: var(--white); border: 1px solid var(--green-soft); border-radius: var(--r-lg); padding: 22px; }
.loc-card__head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.loc-card__ic { width: 40px; height: 40px; border-radius: var(--r-pill); background: var(--forest-green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-card__ic .ico { width: 20px; height: 20px; color: var(--warm-cream); }
.loc-card h3 { font-size: 15.5px; font-weight: var(--w-bold); color: var(--almost-black); margin: 0; letter-spacing: -0.01em; }
.loc-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.loc-card li { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.loc-place { font-size: 14px; line-height: 1.4; color: var(--fg-muted); }
.loc-time { font-size: 12.5px; font-weight: var(--w-bold); color: var(--forest-green);
  background: var(--green-tint); padding: 4px 10px; border-radius: var(--r-pill); white-space: nowrap; flex-shrink: 0; }
.loc__mapwrap { margin-top: clamp(20px, 3vw, 28px); display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.loc__map { width: 100%; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.loc__map iframe { display: block; width: 100%; height: clamp(300px, 38vw, 420px); border: 0; }
@media (max-width: 559px) { .loc__mapwrap .btn { width: 100%; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq__grid { display: grid; gap: clamp(24px, 4vw, 48px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 920px) { .faq__grid { grid-template-columns: 0.7fr 1fr; } }
.faq-aside { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px); }
.faq-aside .ic-wrap { width: 54px; height: 54px; border-radius: var(--r-md); background: var(--green-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.faq-aside .ic-wrap .ico { width: 28px; height: 28px; color: var(--teduh-green); }
.faq-aside h3 { font-size: 20px; font-weight: var(--w-bold); color: var(--almost-black); margin: 0 0 8px; letter-spacing: -0.01em; }
.faq-aside p:not(.eyebrow) { font-size: 14.5px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 18px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer; text-align: left; font-family: inherit;
  padding: 22px 4px; font-size: clamp(16px, 1.9vw, 18px); font-weight: var(--w-semibold);
  color: var(--almost-black); letter-spacing: -0.01em;
}
.faq-q__icon { width: 32px; height: 32px; border-radius: var(--r-pill); background: var(--green-tint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--dur), transform var(--dur); }
.faq-q__icon .ico { width: 18px; height: 18px; color: var(--forest-green); transition: transform var(--dur) var(--ease-out); }
.faq-item.is-open .faq-q__icon { background: var(--teduh-green); }
.faq-item.is-open .faq-q__icon .ico { transform: rotate(45deg); color: var(--warm-cream); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-a__inner { padding: 0 4px 24px; font-size: 15.5px; line-height: 1.65; color: var(--fg-muted); max-width: 68ch; }
.faq-a__inner strong { color: var(--forest-green); font-weight: var(--w-bold); }

/* ============================================================
   CONTACT CTA band (teduh green)
   ============================================================ */
.contact { background: var(--teduh-green); color: var(--warm-cream); position: relative; overflow: hidden; }
.contact::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 120% at 15% 110%, rgba(239,230,194,.12), transparent 55%); }
.contact__inner { position: relative; max-width: 720px; }
.contact .eyebrow { color: var(--warm-cream); opacity: .9; }
.contact h2 { font-size: clamp(28px, 5vw, 44px); font-weight: var(--w-extrabold); line-height: 1.1;
  letter-spacing: -0.02em; color: #fff; margin: 14px 0 0; text-wrap: balance; }
.contact p { font-size: clamp(16px, 2vw, 18px); line-height: 1.6; color: rgba(239,230,194,.9);
  margin: 16px 0 0; max-width: 52ch; }
.contact__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.contact__address { display: flex; align-items: center; gap: 10px; margin-top: 26px;
  font-size: 14.5px; color: rgba(239,230,194,.85); }
.contact__address .ico { width: 18px; height: 18px; }
.contact__hours { font-size: 13.5px; color: rgba(239,230,194,.7); margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-green); color: var(--warm-cream); padding-block: clamp(44px, 6vw, 64px) 28px; }
.footer__top { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 14.5px; line-height: 1.6; color: rgba(239,230,194,.82); margin: 0; max-width: 32ch; }
.footer__tag { font-style: italic; margin-top: 14px !important; color: rgba(239,230,194,.7) !important; }
.footer__col h4 { font-size: 12px; font-weight: var(--w-bold); letter-spacing: .07em; text-transform: uppercase;
  color: rgba(239,230,194,.6); margin: 0 0 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--warm-cream); }
.footer__col li .ico { width: 17px; height: 17px; flex-shrink: 0; color: rgba(239,230,194,.7); margin-top: 2px; }
.footer__col li .wa-ico { width: 17px; height: 17px; flex-shrink: 0; color: rgba(239,230,194,.7); margin-top: 2px; }
.footer__col a { display: inline-flex; align-items: flex-start; gap: 10px; }
.footer__col a:hover { color: #fff; }
.footer__col a:hover .ico, .footer__col a:hover .wa-ico { color: var(--warm-cream); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 42px; height: 42px; border-radius: var(--r-pill); display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(239,230,194,.28); color: var(--warm-cream);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out); }
.social-btn svg { width: 19px; height: 19px; display: block; }
.social-btn:hover { background: var(--warm-cream); color: var(--forest-green); border-color: var(--warm-cream); }
.footer__bottom { margin-top: clamp(32px, 4vw, 44px); padding-top: 22px;
  border-top: 1px solid rgba(239,230,194,.18); display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(239,230,194,.6); }
.footer__bottom a:hover { color: var(--warm-cream); }

/* ============================================================
   STICKY WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 55;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teduh-green); color: var(--warm-cream);
  font-size: 15px; font-weight: var(--w-bold); padding: 14px 20px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg); transition: background var(--dur), transform var(--dur-fast);
  border: 1.5px solid color-mix(in srgb, var(--warm-cream) 22%, transparent);
}
.wa-float:hover { background: var(--forest-green); }
.wa-float:active { transform: scale(.97); }
.wa-float .ico { width: 22px; height: 22px; }
.wa-float__label { display: none; }
@media (min-width: 560px) { .wa-float__label { display: inline; } }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .pillar:hover, .room-card:hover { transform: none; }
}

/* ============================================================
   PHOTO SLOTS — static placeholders (swap to <img class="slot">)
   To add a real photo: replace the <div class="slot slot--ph"...>
   with <img class="slot" src="assets/photos/NAMA.jpg" alt="...">.
   The dimension rules above apply to .slot, so it drops straight in.
   ============================================================ */
img.slot { object-fit: cover; }
.slot.slot--ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 20px;
  background-color: var(--green-tint);
  background-image: linear-gradient(135deg, var(--green-tint) 0%, var(--green-soft) 100%);
  color: var(--olive-muted);
}
.slot__ico { width: 38px; height: 38px; opacity: .6; color: var(--olive-muted); }
.slot__cap { font-size: 13px; font-weight: var(--w-semibold); color: var(--forest-green);
  opacity: .72; max-width: 26ch; line-height: 1.4; }
/* Hero placeholder: rich brand gradient behind the scrim, no caption */
.slot--ph.slot--hero {
  background-image:
    radial-gradient(120% 90% at 72% 8%, var(--teduh-green), transparent 58%),
    linear-gradient(158deg, var(--forest-green) 0%, #39431f 100%);
}
