/* =========================================================
   Palm River – landing page
   Palette & metrics đối chiếu theo CSS gốc của dự án
   ========================================================= */

:root {
  --gold: #d2b57c;
  --gold-strong: #c79022;
  --gold-light: #e8d9b0;
  --gold-line: #d2b57c59;
  --forest: #07443b;
  --forest-deep: #16200f;
  --forest-mid: #333f26;
  --cream: #e0edc9;
  --ink: #f3f1e7;
  --ink-muted: #c7cdbc;
  --header-h: 80px;
  --texture: url("../images/area-1.webp");
  --pin-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>');
  /* Bản gốc dùng DVNBeaufort (Beaufort đã Việt hoá). Xem README nếu muốn gắn lại. */
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Be Vietnam Pro", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-display);
  background-color: var(--forest-mid);
  background-image: var(--texture);
  background-repeat: repeat;
  color: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }

.container { width: 100%; max-width: calc(100% - 128px); margin: 0 auto; padding: 0 20px; }

/* ---------- Typography chung ---------- */
.section-title,
.title,
.mb__title,
.mbt-section-title,
.lo-section-title,
.tinb-section-title {
  background: linear-gradient(187deg, #d2b57c, #c79022);
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1.5rem;
  padding-top: 0.15em;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.5;
}

.tagline {
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

.description {
  color: var(--cream);
  text-align: justify;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* =========================================================
   Header
   ========================================================= */
.hd {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: var(--texture);
  background-position: 50%;
  background-size: cover;
  transition: box-shadow 0.3s;
}
.hd--scrolled { box-shadow: 0 2px 20px #0006; }

.hd__logo { flex-shrink: 0; height: 64%; display: flex; align-items: center; }
.hd__logo img { width: 6rem; height: 100%; object-fit: contain; }

.hd__nav { display: flex; align-items: center; gap: 4rem; }
.hd__nav-link {
  position: relative;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.hd__nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.25s;
}
.hd__nav-link:hover, .hd__nav-link--active { color: #ccc; }
.hd__nav-link:hover::after, .hd__nav-link--active::after { width: 100%; }

.hd__cta {
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--gold);
  border: none;
  border-radius: 4px;
  padding: 0.5rem 2rem;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  transition: color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.hd__cta:hover {
  color: var(--gold);
  background: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px #d3a76966;
}

.hd__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
}
.hd__burger span { width: 26px; height: 2px; background: #fff; transition: transform 0.3s, opacity 0.3s; }
.hd__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd__burger.is-open span:nth-child(2) { opacity: 0; }
.hd__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  margin-top: var(--header-h);
  overflow: hidden;
}
.hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 0 24px clamp(2rem, 7vw, 5.5rem);
  text-align: center;
  background: linear-gradient(#0000, #0e150999 85%);
}
.hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: clamp(2px, 1.2vw, 16px);
  text-transform: uppercase;
  text-shadow: 0 6px 40px #00000073;
  animation: heroIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__sub {
  margin: clamp(0.5rem, 1.5vw, 1rem) 0 0;
  color: #f3f1e7e0;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.5vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: heroIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* =========================================================
   Tổng quan + phối cảnh tòa tháp
   ========================================================= */
.mc {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-image: var(--texture);
}
.mc__body { position: relative; z-index: 1; width: 100%; padding: 60px 0 0; }

.content-container { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 50px; }
.text-content { flex: 0.85; min-width: 300px; }
.image-content { flex: 1.35; min-width: 380px; position: relative; }
.content-img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px #00000059; }

.overview-stats-box {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #d2b57c80;
  border-radius: 12px;
  background-image: var(--texture);
  background-position: 50%;
  background-size: cover;
  box-shadow: 0 20px 45px #00000073, inset 0 0 0 1px #d2b57c26;
}
.overview-table { width: 100%; border-collapse: collapse; font-family: var(--font-display); }
.overview-table-heading {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #d2b57c2e, #d2b57c0d);
  font-weight: 600;
  text-align: center !important;
  border-bottom: 1px solid #d2b57c80 !important;
  padding: 16px 10px !important;
  font-size: 1rem !important;
}
.overview-table th, .overview-table td {
  text-align: left;
  border: 1px solid var(--gold-line);
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.overview-table tbody th {
  color: var(--gold);
  white-space: nowrap;
  border-left: none;
  width: 35%;
  font-weight: 600;
}
.overview-table tbody td { color: var(--cream); border-right: none; font-weight: 400; }
.overview-table tbody tr:last-child th,
.overview-table tbody tr:last-child td { border-bottom: none; }
.overview-list { margin: 0; padding-left: 1.1rem; list-style: outside; }
.overview-list li { color: var(--cream); line-height: 1.6; }

/* Phối cảnh 4 tòa tháp — ảnh có nền trong suốt, hoà vào texture */
.mc__bg {
  aspect-ratio: 2560 / 1117;
  width: 100%;
  min-height: 400px;
  pointer-events: none;
  background-image: url("../images/towers.webp");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

/* =========================================================
   Vị trí
   ========================================================= */
.section-position { background-image: var(--texture); }

.vitri-header { padding: 40px 0; color: #fff; }
.vitri-header .container {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: center;
  gap: 2.5rem;
  max-width: 76%;
}
.vitri-header .title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 3rem;
  line-height: 1.6;
  display: block;
}
.vitri-header .title span { display: block; }
.desc {
  color: #fff;
  opacity: 0.8;
  text-align: justify;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.cards-wrap { background-image: var(--texture); }
.vitri-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold-line);
  max-width: 1577px;
}
.card { position: relative; padding: 2rem 2.25rem; color: #fff; }
.card:not(:last-child) { border-right: 1px solid var(--gold-line); }
.card-number {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #f5f0e6;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 2.5rem;
}
.card-unit { color: var(--gold); letter-spacing: 0.05em; font-size: 1rem; }
.card-desc p {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  color: #f5f0e6;
  opacity: 0.85;
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.5;
  text-transform: uppercase;
}
.card-diamond {
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 0.5em;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* Bản đồ: gif nền + lớp ghi chú phủ toàn khung */
.vitri-container { background-image: var(--texture); }
.vitri-image { max-width: 1617px; margin: 40px auto; padding: 0 20px; }
.map-wrap { position: relative; width: 100%; }
.map-prime-location {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  box-shadow: 0 22px 50px #00000059;
}
.map-prime-location > img { width: 100%; display: block; }
.map-prime-location .btn-gg-map {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-prime-location .btn-gg-map span {
  width: 8px; height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
}
.map-prime-location .btn-gg-map a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  background: var(--forest);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.map-prime-location .btn-gg-map a:hover { color: var(--forest); background: var(--gold); }

/* =========================================================
   Khối nhận báo giá
   ========================================================= */
.quote {
  border-top: 1px solid #e9e7dd2e;
  background-image: var(--texture);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 6rem);
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.quote__intro { display: flex; flex-direction: column; justify-content: center; }
.quote__eyebrow {
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
}
.quote__title {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}
.quote__rule {
  display: block;
  width: 72px;
  height: 2px;
  margin: 1.25rem 0;
  background: linear-gradient(90deg, var(--gold), #d2b57c00);
}
.quote__desc {
  margin: 0 0 1.5rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}
.quote__perks { display: flex; flex-direction: column; gap: 0.7rem; margin: 0; padding: 0; list-style: none; }
.quote__perks li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
}
.quote__perks li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 2px;
}

.quote__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid #d2b57c4d;
  border-radius: 14px;
  background: linear-gradient(160deg, #16200f80, #333f2666);
  box-shadow: 0 22px 50px #00000047, inset 0 0 0 1px #d2b57c1a;
}
.quote__field { display: flex; flex-direction: column; gap: 0.45rem; }
.quote__field--wide { grid-column: 1 / -1; }
.quote__field > span {
  color: var(--gold);
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}
.quote__field input,
.quote__field select {
  width: 100%;
  height: 2.9rem;
  padding: 0 0.9rem;
  color: var(--ink);
  background: #ffffff0f;
  border: 1px solid #d2b57c40;
  border-radius: 8px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.quote__field select { cursor: pointer; }
.quote__field select option { color: #1c2b18; background: #f3f1e7; }
.quote__field input::placeholder { color: #c7cdbc99; }
.quote__field input:focus,
.quote__field select:focus { border-color: var(--gold); background: #ffffff1a; box-shadow: 0 0 0 3px #d2b57c26; }
.quote__field input.is-invalid { border-color: #e05a55; box-shadow: 0 0 0 3px #e05a5526; }

.quote__btn {
  grid-column: 1 / -1;
  height: 3.1rem;
  margin-top: 0.3rem;
  color: var(--forest-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: filter 0.25s, transform 0.25s, box-shadow 0.25s;
}
.quote__btn:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 10px 26px #d2b57c4d; }
.quote__note {
  grid-column: 1 / -1;
  margin: 0;
  color: #c7cdbcb3;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
}
.lead-form__msg { grid-column: 1 / -1; min-height: 20px; margin: 0; color: var(--gold-light); font-family: var(--font-body); font-size: 0.85rem; }

/* Bẫy bot: người dùng thật không nhìn thấy nên không bao giờ điền vào ô này */
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.lead-form__msg.is-error, .popup__msg.is-error { color: #ff9a95; }
.lead-form__msg.is-ok, .popup__msg.is-ok { color: #7fd6a2; }
.lead-form button[type="submit"]:disabled { opacity: 0.6; cursor: progress; }

/* =========================================================
   Mặt bằng tổng thể
   ========================================================= */
.mb { position: relative; width: 100%; display: flex; flex-direction: column; }
.mb__header {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  background-image: var(--texture);
}
.mb__header .container { max-width: 720px; margin: 0 auto; }
.mb__cate {
  color: #fbf7ee;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 125%;
}
.mb__title { color: #e6ce9e; letter-spacing: 1px; margin: 10px 0 16px; }
.mb__desc { color: #fbf7eecc; font-size: 13px; line-height: 1.7; }
.mb__line { width: 200px; height: 2px; margin: 16px auto 0; background: #ffffffd9; }

.mb__image-block {
  position: relative;
  width: 100%;
  aspect-ratio: 3360 / 2106;
  background-image: url("../images/masterplan.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #24301c;
}
.mb__image-block::before { content: ""; position: absolute; inset: 0; background: #0000002e; pointer-events: none; }

/* Toạ độ top/left đặt inline theo từng điểm mốc, khớp dữ liệu của trang gốc */
.mb__hint {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 14px));
}
.mb__hint-label {
  display: inline-block;
  backdrop-filter: blur(12.5px);
  color: #fbf7ee;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  white-space: nowrap;
  background: #d2b57c80;
  border: 1px solid #d2b57c40;
  border-radius: 4px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}
.mb__hint-imgStack {
  position: relative;
  width: 24px;
  height: 24px;
  animation: hintFloat 1.6s ease-in-out infinite;
}
.mb__hint-imgStack::before,
.mb__hint-imgStack::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--gold);
  -webkit-mask: var(--pin-mask) center / contain no-repeat;
  mask: var(--pin-mask) center / contain no-repeat;
}
.mb__hint-imgStack::before { opacity: 0.3; transform: translateY(4px); animation: hintTrail 1.6s ease-in-out infinite; }
.mb__hint-imgStack::after { opacity: 0.9; }

@keyframes hintFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes hintTrail {
  0%, 100% { opacity: 0.3; transform: translateY(4px); }
  50% { opacity: 0.1; transform: translateY(10px); }
}

/* =========================================================
   Mặt bằng tầng điển hình
   ========================================================= */
.mbt-section { padding: 50px 0; background: #fff; font-family: var(--font-display); }
.mbt-container { width: 100%; max-width: 72%; margin: 0 auto; padding: 0 20px; }
.mbt-content { display: flex; flex-direction: column; gap: 2rem; }
.mbt-text-col {
  color: var(--cream);
  text-align: left;
  background-image: var(--texture);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
}
.mbt-section-title { color: var(--gold); letter-spacing: 0.5px; margin-bottom: 1.5rem; line-height: 1.2; }
.mbt-description { color: var(--cream); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.6; }
.mbt-image-col { display: flex; align-items: center; justify-content: center; background: #fff; padding: 1rem; }

/* =========================================================
   Mặt bằng căn hộ
   ========================================================= */
.lo-section { padding-bottom: 50px; background: #fff; font-family: var(--font-display); }
.lo-container { width: 100%; max-width: 72%; margin: 0 auto; padding: 0 20px; }
.lo-content { display: flex; flex-direction: column; gap: 2rem; }
.lo-text-col {
  color: var(--cream);
  text-align: left;
  background-image: var(--texture);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
}
.lo-section-title { color: var(--gold); letter-spacing: 0.5px; margin-bottom: 1.5rem; line-height: 1.2; }
.lo-description { color: var(--cream); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.6; }
.lo-filters { display: flex; flex-wrap: wrap; gap: 1rem; }
.lo-filter-group { display: flex; flex-wrap: nowrap; flex: none; gap: 1rem; }
.lo-filter-btn {
  color: var(--cream);
  border: 2px solid var(--gold);
  background: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.lo-filter-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.lo-filter-btn.active { background: var(--gold); color: #1c2b18; border-color: var(--gold); }
.lo-filter-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.lo-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf8f3;
  padding: 2.5rem 2rem;
  overflow: hidden;
}
.lo-plan-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 640px;
}
.lo-plan-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, opacity 0.35s;
}
.lo-plan-frame.is-active {
  opacity: 1;
  z-index: 2;
  max-width: 340px;
  border: 1px solid #d2b57c66;
  transform: scale(1);
  box-shadow: 0 22px 48px #1c2b1829;
}
.lo-plan-frame.is-inactive {
  opacity: 0.55;
  max-width: 230px;
  border: 1px solid #1c2b1814;
  transform: scale(0.92);
  box-shadow: 0 10px 24px #1c2b1814;
}
.lo-plan-frame.is-inactive:hover { opacity: 0.85; transform: scale(0.96); }
.lo-plan-frame img { width: 100%; height: 100%; object-fit: contain; }
.lo-corner { position: absolute; z-index: 2; width: 18px; height: 18px; border: 2px solid var(--gold); pointer-events: none; }
.lo-corner-tl { top: 10px; left: 10px; border-bottom: none; border-right: none; }
.lo-corner-tr { top: 10px; right: 10px; border-bottom: none; border-left: none; }
.lo-corner-bl { bottom: 10px; left: 10px; border-top: none; border-right: none; }
.lo-corner-br { bottom: 10px; right: 10px; border-top: none; border-left: none; }
/* =========================================================
   Sơ đồ tiện ích
   ========================================================= */
.amen_site { position: relative; overflow: hidden; background-image: var(--texture); }
.amen_site .map-amen { position: relative; background-image: var(--texture); background-size: cover; }
.amen_site .map-amen > img { width: 100%; }

.amen_site .area-popup {
  position: absolute;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 190px;
  min-height: 80px;
  border: 1px solid var(--gold-line);
  background: #313c1d;
  transform: translate(-50%, -50%);
}
.amen_site .area-popup-1 { top: 22%; left: 30%; }
.amen_site .area-popup-2 { top: 50%; left: 48%; }
.amen_site .area-popup-3 { top: 30%; left: 65%; }
.amen_site .area-popup-4 { top: 23%; left: 11%; }
.amen_site .area-popup .name-area { border-right: 1px solid #d2b57c40; height: 100%; }
.amen_site .area-popup .name-area h5 {
  color: var(--cream);
  text-transform: uppercase;
  padding: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
}
.amen_site .area-popup .amount-area { display: flex; flex-direction: column; height: 100%; }
.amen_site .area-popup .amount-area .num {
  display: flex;
  justify-content: center;
  color: var(--gold);
  text-align: center;
  padding: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 100%;
}
.amen_site .area-popup .amount-area .fs-24 { font-size: 24px; }
.amen_site .area-popup .amount-area .type {
  color: var(--cream);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 10px;
}

.amen_site .table_amenities {
  position: absolute;
  top: 65px; bottom: 65px; right: 64px;
  display: flex;
  flex-direction: column;
  width: 25vw;
  padding: 24px 24px 32px;
  border: 1px solid #283413;
  background: #313c1d;
  background-image: var(--texture);
}
.amen_site .head-amen h3 {
  color: var(--gold);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.amen_site .head-amen p {
  color: var(--cream);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 1rem;
}
.amen_site .amen-scroll-wrapper {
  flex: 1;
  min-height: 0;
  margin-top: 2rem;
  padding-right: 0.75rem;
  overflow: hidden auto;
  scrollbar-width: thin;
  scrollbar-color: #ffffff4d transparent;
}
.amen_site .amen-scroll-wrapper::-webkit-scrollbar { width: 2px; }
.amen_site .amen-scroll-wrapper::-webkit-scrollbar-thumb { background: #ffffff4d; border-radius: 999px; }

.amen_site .section-amenities { position: relative; margin-bottom: 16px; border-bottom: 1px solid #d2b57c40; }
.amen_site .topic-amen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 16px;
  color: var(--gold);
  text-align: left;
  text-transform: uppercase;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
}
.amen_site .topic-amen .chev { transition: transform 0.3s; font-size: 1.1rem; }
.amen_site .topic-amen.is-open .chev { transform: rotate(180deg); }
.amen_site .section-amenities ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
.amen_site .section-amenities ul[hidden] { display: none; }
.amen_site .section-amenities li { display: flex; align-items: center; margin-bottom: 8px; cursor: pointer; }
.amen_site .num-amen {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-right: 8px;
  color: var(--cream);
  border: 1px solid #ffffff40;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 500;
  transition: all 0.4s;
}
.amen_site .name-amen {
  color: var(--cream);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 125%;
  transition: color 0.3s;
}
.amen_site li:hover .num-amen { color: var(--forest); background: var(--gold); border-color: var(--gold); }
.amen_site li:hover .name-amen { color: var(--gold); }

/* =========================================================
   Tiện ích nổi bật
   ========================================================= */
.tinb-section { padding: 50px 0; background-image: var(--texture); font-family: var(--font-display); }
.tinb-container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 20px; text-align: center; }
.tinb-section-title { color: var(--gold); letter-spacing: 0.5px; margin-bottom: 1rem; }
.tinb-description { color: var(--cream); text-align: justify; margin: 0 auto 1.5rem; font-size: 1.05rem; line-height: 1.6; }

.tinb-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
  width: 100%;
  max-width: 900px;
  margin: 1.5rem auto 1rem;
}
.tinb-filter-btn {
  color: var(--cream);
  border: 2px solid var(--gold);
  background: transparent;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s;
}
.tinb-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.tinb-filter-btn.active {
  background: var(--gold);
  color: #1c2b18;
  border-color: var(--gold);
  box-shadow: 0 5px 15px #d4af3759;
}

.tinb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 2rem auto 0;
}
.tinb-grid-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid #d2b57c33;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 24px #00000014;
  transition: opacity 0.35s, transform 0.35s;
}
.tinb-grid-item.is-hidden { display: none; }
.tinb-grid-item.is-entering { opacity: 0; transform: translateY(14px); }
.tinb-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tinb-grid-item:hover img { transform: scale(1.06); }
.tinb-grid-overlay {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 12px 16px;
  background: linear-gradient(#16200fcc, #16200f00);
  pointer-events: none;
}
.tinb-grid-overlay span {
  display: block;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* =========================================================
   Footer
   ========================================================= */
.pn-footer {
  border-top: 1px solid #e9e7dd2e;
  background-image: var(--texture);
  color: var(--cream);
  padding: 70px 0 30px;
  font-family: var(--font-display);
}
.pn-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pn-footer-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; }
.pn-footer-heading { color: #c9ab6f; text-transform: uppercase; margin: 0 0 24px; font-size: 2.2rem; font-weight: 400; line-height: 1.2; }
.pn-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #c9ab6f;
  color: var(--forest-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 0;
  border-radius: 30px;
  padding: 12px 26px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.pn-subscribe-btn:hover { filter: brightness(1.08); }
.pn-address-block { margin-top: 50px; }
.pn-address-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e9e7dd2e;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.pn-address-row a:hover { color: #c9ab6f; }
.pn-disclaimer { display: flex; justify-content: space-between; gap: 24px; margin-top: 40px; color: #e9e7dda6; text-transform: uppercase; font-size: 0.7rem; line-height: 1.6; }
.pn-footer-right p { text-transform: uppercase; margin: 0; font-size: 1.05rem; line-height: 1.6; }
.pn-gold-text { color: #c9ab6f; }
.pn-footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 60px; }
.pn-back-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c9ab6f;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
}
.pn-back-top-icon { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 1px solid #c9ab6f; }
.pn-footer-logo { width: 60px; height: 60px; object-fit: contain; opacity: 0.9; }

/* =========================================================
   Nút nổi
   ========================================================= */
.fb {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fb__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.fb__icon { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; border-radius: 50%; }
.fb__svg { width: 50%; height: 50%; flex-shrink: 0; color: inherit; }
.fb__logoImg { width: 85%; height: 85%; object-fit: contain; }
.fb__label {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  transform: translateY(-50%);
  white-space: nowrap;
  color: var(--cream);
  background: #000000bf;
  border-radius: 6px;
  padding: 5px 10px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
}
.fb__ring { position: absolute; inset: 0; z-index: 0; border-radius: 50%; pointer-events: none; }

.fb__btn--phone {
  width: 56px; height: 56px;
  color: var(--cream);
  background: #d3a769;
  box-shadow: 0 4px 20px #d3a76980;
  animation: fbGlow 2.2s ease-in-out infinite;
}
.fb__btn--phone .fb__icon { animation: fbWobble 2.2s ease-in-out infinite; }
.fb__btn--phone .fb__ring--1 { border: 2px solid #d3a7698c; animation: fbRing 2.2s ease-out infinite; }
.fb__btn--phone .fb__ring--2 { border: 2px solid #d3a76959; animation: fbRing 2.2s ease-out 0.7s infinite; }
.fb__btn--phone:hover { animation-play-state: paused; transform: scale(1.12); box-shadow: 0 6px 28px #d3a769a6; }

.fb__btn--zalo {
  width: 50px; height: 50px;
  background: none;
  color: var(--cream);
  filter: drop-shadow(0 3px 10px #0068ff66);
}
.fb__btn--zalo .fb__icon { animation: fbZaloShake 1.6s ease-in-out infinite; }
.fb__btn--zalo .fb__ring--1 { background: #0068ff40; animation: fbZaloRing 2s ease-out infinite; }
.fb__btn--zalo .fb__ring--2 { background: #0068ff26; animation: fbZaloRing 2s ease-out 0.5s infinite; }
.fb__btn--zalo .fb__ring--3 { background: #0068ff1a; animation: fbZaloRing 2s ease-out 1s infinite; }
.fb__btn--zalo:hover { filter: drop-shadow(0 5px 16px #0068ffa6); transform: scale(1.08); }

@keyframes fbGlow {
  0%, 100% { box-shadow: 0 4px 20px #d3a76980, 0 0 #d3a76980; }
  50% { box-shadow: 0 4px 28px #d3a769b3, 0 0 0 12px #d3a76900; }
}
@keyframes fbWobble {
  0%, 60%, 100% { transform: rotate(0) scale(1); }
  10% { transform: rotate(-15deg) scale(1.05); }
  20% { transform: rotate(12deg) scale(1.05); }
  30% { transform: rotate(-10deg) scale(1.02); }
  40% { transform: rotate(8deg) scale(1.02); }
  50% { transform: rotate(-4deg) scale(1); }
}
@keyframes fbRing {
  0% { opacity: 0.65; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.8); }
}
@keyframes fbZaloShake {
  0%, 80%, 100% { transform: rotate(0); }
  10% { transform: rotate(-6deg); }
  20% { transform: rotate(6deg); }
  30% { transform: rotate(-5deg); }
  40% { transform: rotate(5deg); }
  50% { transform: rotate(-3deg); }
  60% { transform: rotate(3deg); }
}
@keyframes fbZaloRing {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.4); }
}

/* ---------- Nút cuộn xuống ---------- */
.sdb {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 9998;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.sdb--hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.sdb__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  animation: sdbFloat 1.6s ease-in-out infinite;
}
.sdb__arrow { position: absolute; font-size: 2rem; line-height: 1; }
.sdb__arrow--back { opacity: 0.3; transform: translateY(7px); }
.sdb__arrow--front { opacity: 0.9; }
@keyframes sdbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =========================================================
   Popup nhận báo giá
   ========================================================= */
.popup[hidden] { display: none; }
.popup__overlay { position: fixed; inset: 0; z-index: 999; background: #0a0e08a6; animation: fadeIn 0.3s; }
.popup__modal {
  position: fixed;
  z-index: 1000;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 94%;
  max-width: 71.25rem;
  max-height: 92vh;
  overflow: hidden;
  background-image: linear-gradient(160deg, #16200fe6, #333f26db), var(--texture);
  background-position: 50%;
  background-size: cover;
  border: 1px solid #c9a96152;
  border-radius: 16px;
  box-shadow: 0 20px 60px #00000073;
  animation: slideIn 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.popup__close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: #16200f8c;
  color: var(--cream);
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s, background 0.2s;
}
.popup__close:hover { color: var(--gold); transform: scale(1.08); }
.popup__grid { display: grid; grid-template-columns: 60% 40%; max-height: 92vh; }
.popup__visual { position: relative; min-height: 220px; overflow: hidden; }
.popup__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.popup__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(#0000 30%, #0003 55%, #000000b3 100%); pointer-events: none; }
.popup__caption { position: absolute; z-index: 1; left: 1.25rem; right: 1.25rem; bottom: 1.1rem; color: var(--ink); font-family: var(--font-body); font-size: 0.8125rem; font-weight: 500; }

.popup__panel {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden auto;
  color: #e9e7dd;
  font-family: var(--font-body);
}
.popup__logo { width: 6.5rem; height: auto; margin: 0 auto 0.2rem; display: block; }
.popup__panel h2 {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.popup__list { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.2rem 0 0.4rem; padding: 0; list-style: none; }
.popup__list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; line-height: 1.4; }
.popup__list li::before {
  content: "✓";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem; height: 1.2rem;
  margin-top: 1px;
  color: var(--gold);
  background: #c9a96129;
  border-radius: 50%;
  font-size: 11px;
}
.popup__form { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 0.2rem; }
.popup__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.popup__form input[type="text"], .popup__form input[type="tel"] {
  width: 100%;
  border: 1px solid #c9a96152;
  color: var(--ink);
  background: #ffffff0f;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
}
.popup__form input::placeholder { color: var(--ink-muted); }
.popup__form input:focus { border-color: var(--gold); background: #ffffff1a; outline: none; }
.popup__form input.is-invalid { border-color: #e05a55; }

.popup__checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1rem; margin: 0.1rem 0; }
.popup__checks label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.83rem; cursor: pointer; user-select: none; }
.popup__checks input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkmark { position: relative; flex-shrink: 0; width: 1.05rem; height: 1.05rem; border: 2px solid var(--gold); border-radius: 4px; transition: all 0.2s; }
.popup__checks input:checked + .checkmark { background: var(--gold); }
.popup__checks input:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 0; left: 4px;
  width: 5px; height: 9px;
  border: solid var(--forest-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.popup__form button {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: var(--forest-deep);
  border: none;
  border-radius: 8px;
  margin-top: 0.2rem;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.25s, box-shadow 0.25s;
}
.popup__form button:hover { filter: brightness(1.06); box-shadow: 0 6px 18px #d3a76959; }
.popup__msg { min-height: 20px; font-size: 14px; color: var(--gold-light); }
.popup__ok {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #c9a96152;
  background: #ffffff0f;
  border-radius: 8px;
  font-size: 0.9rem;
}
body.popup-open { overflow: hidden; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease var(--d, 0s), transform 0.7s ease var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 769px) {
  .mbt-content, .lo-content { flex-direction: row; align-items: stretch; gap: 0; }
  .mbt-text-col, .lo-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 30%;
    max-width: 30%;
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .mbt-image-col, .lo-image-col {
    flex: 0 0 70%;
    max-width: 70%;
    border: 1px solid #0000000f;
    border-left: none;
    border-radius: 0 0.5rem 0.5rem 0;
  }
  .lo-plan-wrap { flex-direction: row; gap: 1.25rem; }

  .mb__header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 3;
    background: none;
    padding: 56px 20px;
  }
  .mb { position: relative; display: block; }
  .mb__title { text-shadow: 0 12px 32px #00000059; }
  .mb__desc { font-size: 16px; }
}

@media (max-width: 1400px) {
  .hd { padding: 0 60px; }
  .hd__nav { gap: 2.5rem; }
  .hd__nav-link { font-size: 0.85rem; }
  .hd__cta { padding: 0.5rem 2rem; font-size: 1rem; }
  .mbt-container, .lo-container { max-width: 100%; }
}

@media (max-width: 1200px) {
  .hd { padding: 0 40px; }
  .hd__nav { gap: 1.5rem; }
  .hd__cta { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
  .vitri-header .container { grid-template-columns: 0.75fr 1fr; }
  .amen_site .table_amenities { width: 32vw; }
}

@media (max-width: 1024px) {
  .hd { padding: 0 1.85rem; }
  .hd__nav, .hd__cta { display: none; }
  .hd__burger { display: flex; }
  .hd__nav.is-open {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 1.85rem 24px;
    background-image: var(--texture);
    background-color: var(--forest-deep);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  }
  .hd__nav.is-open .hd__nav-link { padding: 20px 8px; border-bottom: 1px solid #ffffff14; }

  .container { max-width: 100%; }
  .vitri-header .container { grid-template-columns: 1fr; gap: 1.5rem; max-width: 90%; }
  .vitri-cards { grid-template-columns: repeat(2, 1fr); }
  .card:nth-child(2) { border-right: none; }
  .card:nth-child(3) { border-top: 1px solid var(--gold-line); }
  .card-number { font-size: 3rem; margin-bottom: 1.5rem; }

  .amen_site { display: flex; flex-direction: column; }
  .amen_site .table_amenities { position: relative; top: auto; bottom: auto; right: auto; width: 100%; max-height: 420px; }
  .amen_site .area-popup { width: 150px; }

  .quote__inner { grid-template-columns: 1fr; }
  .popup__grid { grid-template-columns: 1fr; }
  .popup__visual { aspect-ratio: 16/9; min-height: 200px; }
}

@media (max-width: 768px) {
  .hd { padding: 0 20px; }
  .hd__logo img { width: 80px; }
  .content-container { gap: 24px; }
  .text-content, .image-content { flex: 100%; width: 100%; min-width: 0; }
  .overview-table th, .overview-table td { padding: 10px 8px; font-size: 0.8rem; }
  .overview-table th { white-space: normal; }
  .mc__bg { min-height: 15.625rem; }

  .vitri-cards { grid-template-columns: 1fr; }
  .card:not(:last-child) { border-bottom: 1px solid var(--gold-line); border-right: none; }
  .card:nth-child(2), .card:nth-child(3) { border-top: none; }
  .card { padding: 1.25rem; }

  .mb__hint-label { padding: 4px 10px; font-size: 12px; }
  .mb__hint-imgStack { width: 18px; height: 18px; }
  .quote__form { grid-template-columns: 1fr; }
  .pn-footer-grid { grid-template-columns: 1fr; }
  .pn-disclaimer { flex-direction: column; }
  .pn-hero-title, .pn-footer-heading { font-size: 1.8rem; }
}

@media (max-width: 576px) {
  .tinb-filters { gap: 0.6rem; }
  .tinb-filter-btn { padding: 8px 10px; font-size: 0.78rem; }
  .tinb-gallery-grid { grid-template-columns: 1fr; }
  .tinb-description { font-size: 0.85rem; }
  .popup__row, .popup__checks { grid-template-columns: 1fr; }
  .fb { right: 12px; bottom: 16px; gap: 10px; }
  .fb__btn--phone { width: 48px; height: 48px; }
  .fb__btn--zalo { width: 44px; height: 44px; }
  .fb__label { padding: 4px 8px; font-size: 10px; right: calc(100% + 8px); }
  .sdb { bottom: 14px; }
  .mb__hint-label { font-size: 10px; padding: 3px 8px; }
  .mb__hint-imgStack { width: 14px; height: 14px; }
  .amen_site .area-popup { width: 120px; min-height: 60px; }
  .amen_site .area-popup .name-area h5 { font-size: 9px; padding: 6px; }
  .amen_site .area-popup .amount-area .num { font-size: 16px; padding: 6px; }
}
