/* ============================================================
   Kos Cemara Putri 41 — soft & feminine theme
   ============================================================ */

:root {
  --cream: #FDF7F9;
  --cream-2: #F8ECF1;
  --card: #FFFFFF;
  --ink: #33242C;
  --muted: #8A7280;
  --pine: #C95A85;
  --pine-dark: #A94A72;
  --pine-soft: #F9E3EC;
  --terra: #E27595;
  --terra-dark: #C25A7E;
  --terra-soft: #FBE5ED;
  --gold: #D9A441;
  --line: rgba(185, 130, 155, 0.20);
  --shadow: 0 12px 34px rgba(163, 84, 112, 0.10);
  --shadow-lg: 0 22px 50px rgba(163, 84, 112, 0.16);
  --radius: 18px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; display: block; }

.container { width: min(1120px, 92%); margin-inline: auto; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: var(--font);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--pine), var(--pine-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(201, 90, 133, 0.35);
}
.btn--primary:hover { box-shadow: 0 14px 28px rgba(201, 90, 133, 0.42); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { background: #fff; }

.btn--outline {
  border-color: var(--pine);
  color: var(--pine);
  background: transparent;
}
.btn--outline:hover { background: var(--pine-soft); }

.btn--light {
  background: #fff;
  color: var(--pine-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.btn--light:hover { transform: translateY(-2px); }

.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.14); }

.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 15px 24px; font-size: 1rem; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(253, 247, 249, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(185, 130, 155, 0.12);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 8px 26px rgba(163, 84, 112, 0.10); }

.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--pine-dark);
  white-space: nowrap;
}
.nav__name { letter-spacing: 0.01em; }
.nav__brand b { color: var(--terra); font-size: 1.15rem; }

.nav__logo {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(201, 90, 133, 0.35);
  flex-shrink: 0;
}

.nav__menu { display: flex; align-items: center; gap: 6px; }

.nav__link {
  padding: 8px 11px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__link:hover { background: var(--pine-soft); color: var(--pine-dark); }

.nav__cta {
  margin-left: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--terra), var(--terra-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 18px rgba(226, 117, 149, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(226, 117, 149, 0.42); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0 10px;
}
.nav__toggle span {
  height: 2.4px;
  border-radius: 4px;
  background: var(--pine-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 148px 0 0; overflow: hidden; }

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero__blob--a { width: 480px; height: 480px; top: -140px; right: -120px; background: radial-gradient(circle, #F4C3D5, transparent 70%); }
.hero__blob--b { width: 420px; height: 420px; top: 180px; left: -160px; background: radial-gradient(circle, #E1C6EE, transparent 70%); }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--pine-dark);
  box-shadow: var(--shadow);
}

.hero__title {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  line-height: 1.14;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--pine), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero__points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.hero__points li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.hero__check {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--pine-soft);
  color: var(--pine);
  font-size: 0.72rem;
  font-weight: 800;
}

/* hero art */
.hero__art { position: relative; }
.hero__house {
  width: min(430px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 24px 34px rgba(163, 84, 112, 0.18));
}

.hero__card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
}
.hero__card--wifi { top: 12%; left: -4%; animation-delay: 0s; }
.hero__card--safe { bottom: 26%; left: -10%; animation-delay: 1.4s; }
.hero__card--price { bottom: 8%; right: -2%; animation-delay: 2.6s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* strip */
.strip { margin-top: 84px; background: var(--pine-dark); color: #fff; position: relative; z-index: 1; }
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
}
.strip__item { display: flex; align-items: center; gap: 14px; }
.strip__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.35rem;
}
.strip__item b { display: block; font-size: 0.98rem; }
.strip__item small { color: rgba(255, 255, 255, 0.72); font-size: 0.8rem; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section--alt { background: var(--cream-2); }

.section__head { text-align: center; max-width: 620px; margin: 0 auto 52px; }

.section__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-dark);
  background: var(--terra-soft);
  padding: 7px 16px;
  border-radius: 999px;
}

.section__title {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.2;
}

.section__desc { margin-top: 12px; color: var(--muted); }
.loc-addr { font-size: 0.86rem; color: var(--muted); opacity: 0.85; }

/* ---------- Facilities ---------- */
.fac-group + .fac-group { margin-top: 46px; }

.fac-group__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.fac-group__title span {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.fac-note {
  margin-top: 42px;
  background: #FDF1F6;
  border: 1.5px dashed var(--gold);
  border-radius: 14px;
  padding: 22px 24px;
  font-size: 0.9rem;
  color: #5A4A2F;
  line-height: 1.7;
}
.fac-note h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.fac-note p { font-size: 0.88rem; margin-bottom: 10px; }
.fac-note ul { list-style: none; display: grid; gap: 8px; }
.fac-note li {
  position: relative;
  padding-left: 26px;
  font-size: 0.88rem;
}
.fac-note li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1.2;
}
.fac-note b { color: var(--terra-dark); }

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

.fac-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fac-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.fac-card__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  font-size: 1.5rem;
  background: var(--pine-soft);
  margin-bottom: 16px;
}
.fac-card:nth-child(even) .fac-card__icon { background: var(--terra-soft); }
.fac-card:nth-child(3n) .fac-card__icon { background: #FBEBD4; }

.fac-card h3 { font-size: 1.04rem; margin-bottom: 6px; }
.fac-card p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Rooms ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.room-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-card__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px 24px 18px;
  min-height: 118px;
}
.room-card__top--ac { background: linear-gradient(135deg, #DCEBF7, #A9CDEB); }
.room-card__top--nonac-khusus { background: linear-gradient(135deg, #FBE3EC, #F4C3D5); }
.room-card__top--nonac { background: linear-gradient(135deg, #F9E3EC, #E2CFB8); }

.room-card__emblem { font-size: 2.2rem; line-height: 1; }
.room-card__chip {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.room-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { font-size: 1.25rem; }
.room-card__price { margin-top: 4px; color: var(--muted); font-size: 0.88rem; }
.room-card__price-num {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--pine-dark);
  white-space: nowrap;
}

/* tabel harga per tipe kamar */
.room-table {
  margin: 16px 0 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #FDF8FA;
}
.room-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
  font-size: 0.8rem;
}
.room-table__row span { padding: 9px 12px; }
.room-table__row span:first-child { font-weight: 600; color: var(--muted); }
.room-table__row span:not(:first-child) { text-align: right; font-weight: 800; color: var(--ink); }
.room-table__row + .room-table__row { border-top: 1px solid var(--line); }
.room-table__row--head { background: var(--pine-soft); }
.room-table__row--head span { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--pine-dark); }
.room-table__row--head span:first-child { color: var(--pine-dark); }

.room-card__note {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terra-dark);
  background: var(--terra-soft);
  border-radius: 999px;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.room-card__list { margin: 16px 0 22px; display: grid; gap: 10px; flex: 1; }
.room-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: #5C4150;
}
.room-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pine-soft);
  color: var(--pine);
  font-size: 0.7rem;
  font-weight: 800;
}

.room-note {
  margin-top: 34px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--pine);
  border-radius: 14px;
  padding: 16px 20px;
}
.room-note b { color: var(--terra-dark); }

/* ---------- Gallery ---------- */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.gal-item--lg { grid-row: span 2; }

.gal-item__art {
  display: grid;
  place-items: center;
  height: 190px;
  font-size: 3.4rem;
  transition: transform 0.35s ease;
}
.gal-item__art.gal-item__photo { display: block; }
.gal-item__art.gal-item__photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.gal-item--lg .gal-item__art { height: 100%; min-height: 400px; }
.gal-item--lg .gal-item__art.gal-item__photo img { height: 100%; min-height: 400px; }
.gal-item:hover .gal-item__art { transform: scale(1.06); }
.gal-item:hover .gal-item__art img { transform: scale(1.06); }

.gal-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(40, 30, 15, 0.65));
}

/* ---------- Video / Room Tour ---------- */
.gal-video {
  margin-top: 44px;
  max-width: 820px;
  margin-inline: auto;
}
.gal-video__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  text-align: center;
}
.gal-video__desc {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}
.gal-video__embed {
  margin-top: 18px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: #000;
}
.gal-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Location ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.loc-info {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-item__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--pine-soft);
  font-size: 1.25rem;
}
.loc-item:nth-child(2) .loc-item__icon { background: var(--terra-soft); }
.loc-item:nth-child(3) .loc-item__icon { background: #FBEBD4; }
.loc-item:nth-child(4) .loc-item__icon { background: #E9E2F6; }

.loc-item b { font-size: 0.98rem; }
.loc-item p { color: var(--muted); font-size: 0.88rem; }

.loc-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
  background: var(--pine-soft);
  border: 1px dashed var(--pine);
  border-radius: 12px;
  padding: 12px 14px;
}

.loc-info__btn { margin-top: auto; align-self: flex-start; }

.loc-map {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 400px;
}
.loc-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* ---------- Rules ---------- */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rule-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.rule-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  font-size: 1.4rem;
  background: var(--pine-soft);
}
.rule-card:nth-child(2) .rule-card__icon { background: var(--terra-soft); }
.rule-card:nth-child(3) .rule-card__icon { background: #FBEBD4; }
.rule-card:nth-child(4) .rule-card__icon { background: #E9E2F6; }
.rule-card:nth-child(5) .rule-card__icon { background: #F2DFEC; }

.rule-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.rule-card p { font-size: 0.88rem; color: var(--muted); }

.rule-card--cta {
  background: linear-gradient(135deg, var(--pine), var(--pine-dark));
  border: none;
  color: #fff;
  align-items: center;
}
.rule-card--cta h3 { color: #fff; margin-bottom: 2px; }
.rule-card--cta p { color: rgba(255, 255, 255, 0.85); }
.rule-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
}

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

.pay-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pay-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pay-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 1.5rem;
  background: var(--pine-soft);
  margin-bottom: 16px;
}
.pay-card:nth-child(2) .pay-card__icon { background: var(--terra-soft); }
.pay-card:nth-child(3) .pay-card__icon { background: #FBEBD4; }
.pay-card:nth-child(4) .pay-card__icon { background: #E9E2F6; }
.pay-card:nth-child(5) .pay-card__icon { background: var(--terra-soft); }

.pay-card--wide {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.pay-card--wide .pay-card__icon { flex-shrink: 0; margin-bottom: 0; }
.pay-card--wide h3 { margin-bottom: 4px; }
.pay-card--wide p { margin: 0; max-width: 80ch; }

.pay-card h3 { font-size: 1.04rem; margin-bottom: 6px; }
.pay-card p { font-size: 0.9rem; color: var(--muted); }

.pay-note { margin-top: 34px; }

/* ---------- Bayar Online (DOKU) ---------- */
.pay-online {
  margin-top: 40px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.pay-online__head { text-align: center; max-width: 560px; margin: 0 auto 26px; }
.pay-online__title { font-family: var(--serif); font-size: 1.45rem; margin-top: 14px; }
.pay-online__desc { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

.pay-online__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.pay-online__amount {
  margin: 6px 0 16px;
  font-size: 0.95rem;
}
.pay-online__amount b {
  font-size: 1.3rem;
  color: var(--pine-dark);
  font-variant-numeric: tabular-nums;
}

/* rincian komponen pembayaran */
.pay-quote {
  margin: 10px 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #FDF8FA;
  overflow: hidden;
}
.pay-quote__rows { display: grid; }
.pay-quote__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--muted);
}
.pay-quote__row + .pay-quote__row { border-top: 1px solid var(--line); }
.pay-quote__row b { color: var(--ink); font-variant-numeric: tabular-nums; }
.pay-quote__row--total {
  background: var(--pine-soft);
  font-weight: 800;
  color: var(--ink);
}
.pay-quote__row--total b { color: var(--pine-dark); font-size: 1.05rem; }
.pay-quote__err {
  padding: 10px 14px;
  font-size: 0.84rem;
  color: var(--terra-dark);
  background: var(--terra-soft);
}
.pay-quote__note {
  padding: 9px 14px;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px dashed var(--line);
}
.pay-online__info {
  background: var(--pine-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.pay-online__info ul { display: grid; gap: 12px; }
.pay-online__info li { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

@media (max-width: 900px) {
  .pay-online__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pay-online { padding: 24px 18px; }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item.open { box-shadow: var(--shadow-lg); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-chev {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2.5px solid var(--pine);
  border-bottom: 2.5px solid var(--pine);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -4px;
}
.faq-item.open .faq-chev { transform: rotate(225deg); margin-top: 4px; }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-a__inner { overflow: hidden; }
.faq-a__inner p {
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ---------- CTA ---------- */
.section--cta { padding: 20px 0; }
.section--cta + .section { padding-top: 60px; }

.cta-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--pine), var(--pine-dark));
  border-radius: 26px;
  padding: 44px 48px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 179, 202, 0.35), transparent 70%);
  top: -110px;
  right: -60px;
  pointer-events: none;
}

.cta-box__copy { position: relative; z-index: 1; flex: 1 1 360px; }
.cta-box__copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.25;
}
.cta-box__copy p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  max-width: 52ch;
}

.cta-box__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Why choose ---------- */
.section--why { background: #FFFFFF; }

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

.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.why-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 1.55rem;
  background: var(--pine-soft);
  margin-bottom: 16px;
}
.why-card:nth-child(2) .why-card__icon { background: var(--terra-soft); }
.why-card:nth-child(3) .why-card__icon { background: #FBEBD4; }
.why-card:nth-child(4) .why-card__icon { background: #E9E2F6; }
.why-card:nth-child(5) .why-card__icon { background: #F2DFEC; }

.why-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.why-card p { font-size: 0.9rem; color: var(--muted); }

.why-card--cta {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--pine), var(--pine-dark));
  border: none;
  color: #fff;
}
.why-card--cta h3 { color: #fff; }
.why-card--cta p { color: rgba(255, 255, 255, 0.85); flex: 1; }
.why-card__go {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
}

/* ---------- Survey ---------- */
.survey-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  background: linear-gradient(135deg, var(--pine), var(--pine-dark));
  border-radius: 24px;
  padding: 44px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.survey-wrap::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 179, 202, 0.3), transparent 70%);
  top: -120px; right: -80px;
  pointer-events: none;
}

.survey-info { position: relative; z-index: 1; }
.survey-info .section__tag { background: rgba(255, 255, 255, 0.16); color: #FBDCE6; }

.survey-info__title {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.25;
}
.survey-info__desc { margin-top: 12px; color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; }

.survey-info__list { margin: 20px 0 0; display: grid; gap: 12px; }
.survey-info__list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.survey-form {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}
.survey-form__title { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 20px; }

.survey-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.survey-form__field { margin-bottom: 14px; }
.survey-form__field label { display: block; font-size: 0.84rem; font-weight: 700; margin-bottom: 6px; color: #5C4150; }

.survey-form__field input,
.survey-form__field select,
.survey-form__field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--ink);
  background: #FDF8FA;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.survey-form__field textarea { resize: vertical; min-height: 92px; }
.survey-form__field input:focus,
.survey-form__field select:focus,
.survey-form__field textarea:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 4px rgba(201, 90, 133, 0.14);
  background: #fff;
}
.survey-form__field input.invalid,
.survey-form__field select.invalid,
.survey-form__field textarea.invalid {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(226, 117, 149, 0.15);
}
.survey-form__note { margin-top: 12px; font-size: 0.78rem; color: var(--muted); text-align: center; }

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

.ct-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.ct-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.ct-card__icon {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  margin: 0 auto 14px;
  border-radius: 18px;
  font-size: 1.55rem;
  background: var(--pine-soft);
}
.ct-card:nth-child(2) .ct-card__icon { background: var(--terra-soft); }
.ct-card:nth-child(3) .ct-card__icon { background: #FBEBD4; }

.ct-card h3 { font-size: 1rem; }
.ct-card p { font-weight: 700; color: var(--pine-dark); margin-top: 4px; }
.ct-card small { color: var(--muted); font-size: 0.8rem; }

/* ---------- Footer ---------- */
.footer { background: #2A1E27; color: rgba(255, 255, 255, 0.85); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 64px 0 44px;
}

.footer__brand b { font-size: 1.1rem; }
.footer__num { color: var(--gold); }
.footer__brand .nav__logo { margin-bottom: 14px; width: 52px; height: 52px; border-radius: 14px; }
.footer__brand p { margin-top: 10px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); max-width: 30ch; }

.footer__col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 0.04em; }
.footer__col a { display: block; font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 10px; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--gold); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); text-align: center; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(30, 22, 10, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox__stage {
  max-width: 640px;
  width: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.94);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox__stage { transform: scale(1); }

.lightbox__art { display: grid; place-items: center; height: 340px; font-size: 6rem; background: #F8ECF1; }
.lightbox__art img { width: 100%; height: 340px; object-fit: cover; display: block; }
.lightbox__caption { padding: 18px 22px; font-weight: 700; font-size: 1.02rem; text-align: center; }

.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.3); }

/* ---------- WA float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.55); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .ct-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__actions, .hero__points { justify-content: center; }
  .hero__art { order: -1; max-width: 420px; margin-inline: auto; }
  .hero__card--wifi { left: 0; }
  .hero__card--safe { left: -2%; }
  .hero__card--price { right: 0; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .loc-grid { grid-template-columns: 1fr; }
  .survey-wrap { grid-template-columns: 1fr; padding: 32px 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  /* mobile nav */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(253, 247, 249, 0.97);
    backdrop-filter: blur(16px);
    padding: 18px;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__link { text-align: center; padding: 13px; }
  .nav__cta { margin: 6px 0 0; text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .section--cta { padding: 14px 0; }
  .cta-box { padding: 32px 24px; }
  .hero { padding-top: 120px; }
  .hero__card { display: none; }
  .strip { margin-top: 60px; }
  .fac-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .pay-card--wide { flex-direction: column; }
  .pay-card--wide .pay-card__icon { margin-bottom: 14px; }
  .gal-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gal-item--lg { grid-row: span 1; }
  .gal-item--lg .gal-item__art { min-height: 190px; }
  .gal-item__art { height: 150px; font-size: 2.4rem; }
  .ct-grid { grid-template-columns: 1fr; }
  .survey-wrap { padding: 26px 18px; }
  .survey-form { padding: 24px 18px; }
  .survey-form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 36px; }
}
