/* ============================================================
   DatNenDuAn Theme - Main CSS
   Luxury Real Estate | Navy / Champagne / Ivory
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');

:root {
  --ink: #071925;
  --navy: #082336;
  --navy2: #103a54;
  --navy3: #0d2f46;
  --gold: #c99a45;
  --gold2: #f1d18a;
  --gold3: #e8c062;
  --ivory: #f8f3e9;
  --ivory2: #f3ede0;
  --soft: #eef3f4;
  --text: #172633;
  --text2: #253948;
  --muted: #6d7b86;
  --muted2: #8a9baa;
  --white: #ffffff;
  --border: #e8dfc8;
  --border2: #efe4d2;
  --radius: 28px;
  --radius-sm: 18px;
  --radius-xs: 12px;
  --shadow: 0 28px 90px rgba(7, 25, 37, .16);
  --shadow-sm: 0 12px 40px rgba(7, 25, 37, .10);
  --shadow-xs: 0 4px 18px rgba(7, 25, 37, .08);
  --font-display: 'Be Vietnam Pro', Inter, 'Segoe UI', Arial, sans-serif;
  --font-body: 'Be Vietnam Pro', Inter, 'Segoe UI', Arial, sans-serif;
  --transition: all .25s cubic-bezier(.25, .46, .45, .94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 980px; margin: 0 auto; padding: 0 40px; }

.section { padding: 96px 0; }
.section--white { background: #ffffff; }
.section--ivory { background: var(--ivory); }
.section--dark {
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy2) 100%);
  color: #ffffff;
}
.section--navy {
  background: var(--navy);
  color: #ffffff;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-white { color: #ffffff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(201, 154, 69, .14);
  border: 1.5px solid rgba(201, 154, 69, .55);
  color: #9a6e1a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow--light {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .25);
  color: var(--gold2);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: #ffffff; }

.heading-xl { font-size: clamp(44px, 5.5vw, 72px); font-weight: 900; letter-spacing: -2px; line-height: 1.05; }
.heading-lg { font-size: clamp(32px, 3.8vw, 46px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
.heading-md { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; letter-spacing: -0.75px; line-height: 1.15; }
.heading-sm { font-size: clamp(18px, 2vw, 26px); font-weight: 700; letter-spacing: -0.25px; }

.lead { font-size: 18px; color: var(--muted); line-height: 1.75; }
.section--dark .lead { color: #cad9e2; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 34px;
}
.section-head .section-title { flex: 1; }
.section-head .section-desc {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}
.section--dark .section-head .section-desc { color: #cad9e2; }

@media (max-width: 768px) {
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head .section-desc { max-width: 100%; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(201, 154, 69, .3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(201, 154, 69, .42);
}
.btn--dark {
  background: var(--ink);
  color: #ffffff;
}
.btn--dark:hover { background: var(--navy2); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .4);
  color: #ffffff;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .7);
}
.btn--outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--ink); }
.btn--outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: #fff; }
/* Gold solid button (alias for primary, used on dark backgrounds) */
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(201, 154, 69, .3);
  border-color: transparent;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(201, 154, 69, .42);
}
/* Light outline button — for use on dark/navy backgrounds */
.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: #ffffff;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .75);
}
/* Full-width block button */
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 17px 34px; font-size: 17px; }

/* ============================================================
   LABEL / BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.badge--gold { background: #f6ead2; color: #8c641f; }
.badge--green { background: #d4f5e2; color: #1a7a40; }
.badge--blue { background: #d4eaf5; color: #1a5a7a; }
.badge--red { background: #fde8e8; color: #c53030; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
}
.header-inner {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 8px 32px rgba(7, 25, 37, .10);
  border-radius: 999px;
  padding: 7px 12px 7px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
  white-space: nowrap;
}
.logo-img { height: 36px; width: auto; }

/* Navigation */
.main-nav { display: flex; align-items: center; flex: 1; justify-content: center; min-width: 0; }
.nav-menu {
  display: flex;
  gap: 1px;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  border-radius: 999px;
  white-space: nowrap;
  text-transform: capitalize;
  transition: var(--transition);
  text-decoration: none;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  background: var(--ivory2);
  color: var(--ink);
}
/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}
.nav-menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-menu .sub-menu a:hover {
  background: var(--ivory2);
  color: var(--gold);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ivory2);
  border: 1px solid var(--border);
  white-space: nowrap;
  text-decoration: none;
}
.header-phone:hover { background: var(--border); }
.header-phone svg { color: var(--gold); flex-shrink: 0; }

/* Header user menu (logged-in state) */
.header-user-menu { position: relative; }
.header-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ivory2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px 5px 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
}
.header-user-btn:hover { background: var(--border); }
.header-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.header-user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.header-user-menu.open .header-user-dropdown,
.header-user-menu:focus-within .header-user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-user-dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: background .15s;
}
.header-user-dropdown a:hover { background: var(--ivory2); }
.header-user-dropdown-divider { height: 1px; background: var(--border); margin: 5px 10px; }
.header-user-dropdown-logout { color: #b03030 !important; }
.header-user-dropdown-logout:hover { background: #fff0f0 !important; }

/* Hamburger */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ivory2);
  border: 1px solid var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 25, 37, .96);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-overlay .nav-menu {
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.mobile-menu-overlay .nav-menu > li > a {
  font-size: 26px;
  font-family: var(--font-display);
  color: #ffffff;
  padding: 12px 24px;
}
.mobile-menu-overlay .nav-menu > li > a:hover { color: var(--gold2); background: transparent; }
.mobile-menu-overlay .sub-menu {
  display: none !important;
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-close:hover { background: rgba(255, 255, 255, .2); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 860px;
  padding: 150px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #071925;
  background:
    radial-gradient(circle at 75% 20%, rgba(241, 209, 138, .18), transparent 30%),
    linear-gradient(115deg, rgba(7, 25, 37, .97) 0%, rgba(7, 25, 37, .82) 45%, rgba(7, 25, 37, .38) 100%),
    url('../images/hero-datnenduan-luxury-real-estate.png') center/cover no-repeat;
  color: #ffffff;
}
.hero-section::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(0deg, var(--ivory) 0%, transparent 100%);
  z-index: 2;
}
.hero-section > .container {
  width: min(100% - 40px, 1200px);
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero-left,
.hero-right {
  min-width: 0;
}
.hero-left h1 {
  color: #ffffff;
  margin-bottom: 22px;
  max-width: 780px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--gold2);
}
.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.78;
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, .97);
  color: var(--text);
  border-radius: 36px;
  padding: 32px;
  box-shadow: 0 32px 96px rgba(7, 25, 37, .24);
  width: min(100%, 560px);
  justify-self: end;
}
.hero-form-card h2 {
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 6px;
}
.hero-form-card > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 69, .15);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236d7b86' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-notice {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: #d4f5e2;
  border-radius: 20px;
  color: #1a7a40;
  font-weight: 700;
}
.form-error { color: #c53030; font-size: 12px; margin-top: 4px; }

/* ============================================================
   METRICS PANEL (Floating)
   ============================================================ */
.metrics-panel {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.metric-item {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, var(--ivory));
  border-radius: 22px;
  border: 1px solid var(--border2);
  text-align: center;
}
.metric-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-item span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ============================================================
   PROJECT CARDS (homepage featured layout)
   ============================================================ */
.projects-grid--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr) minmax(0, .85fr);
  gap: 22px;
}
.project-card--featured-item {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  min-width: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border2);
  transition: var(--transition);
}
.project-card--featured-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-card--featured-item.featured { grid-row: span 2; }
.project-card--featured-item .project-card__image { position: relative; overflow: hidden; display: block; cursor: pointer; }
.project-card--featured-item .project-card__image img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s ease; }
.project-card--featured-item.featured .project-card__image img { height: 420px; }
.project-card--featured-item:hover .project-card__image img { transform: scale(1.05); }
.project-card__badge { position: absolute; top: 16px; left: 16px; }
.project-card__body { padding: 24px; }
.project-card__title { font-size: 20px; color: var(--ink); margin: 12px 0 8px; }
.project-card__title a { color: inherit; text-decoration: none; }
.project-card__title a:hover { color: var(--gold); }
.project-card--featured-item.featured .project-card__title { font-size: 28px; }
.project-card__meta { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.project-card__meta svg { flex-shrink: 0; }
.project-card__price { font-size: 20px; font-weight: 800; color: var(--gold); margin: 14px 0 18px; font-family: var(--font-display); }
.project-card__legal { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.project-card__footer {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
}

/* Archive listing */
.projects-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   AREA CARDS
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card {
  min-height: 320px;
  border-radius: 28px;
  padding: 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
  cursor: pointer;
}
.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg,
      rgba(7, 25, 37, .96) 0%,
      rgba(7, 25, 37, .55) 45%,
      rgba(7, 25, 37, .12) 100%);
  transition: var(--transition);
}
.area-card:hover::before {
  background:
    linear-gradient(0deg,
      rgba(7, 25, 37, .98) 0%,
      rgba(7, 25, 37, .6) 50%,
      rgba(7, 25, 37, .08) 100%);
}
.area-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(7, 25, 37, .28); }
.area-card > * { position: relative; z-index: 1; }

/* Text panel at bottom */
.area-card__body {
  padding: 28px 28px 26px;
  position: relative;
  z-index: 1;
}
.area-card h3 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(7, 25, 37, .5);
  letter-spacing: -.3px;
}
.area-card:hover h3 { color: var(--gold2); }
.area-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .78);
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(7, 25, 37, .6);
}
.area-card .city-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 10px;
  opacity: .9;
}
.area-card .city-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.area-card .project-count {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(201, 154, 69, .22);
  border: 1px solid rgba(201, 154, 69, .45);
  color: var(--gold2);
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: .04em;
}

/* ============================================================
   PRICE TABLE
   ============================================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table th {
  background: var(--ink);
  color: #ffffff;
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--ivory); }
.price-up { color: #1a7a40; font-weight: 700; }
.price-down { color: #c53030; font-weight: 700; }
.price-stable { color: var(--muted); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(201, 154, 69, .12), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(201, 154, 69, .35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  font-weight: 900;
  color: var(--ink);
  font-size: 19px;
  box-shadow: 0 8px 24px rgba(201, 154, 69, .35);
  position: relative;
}
.service-card h3 { font-size: 21px; margin-bottom: 12px; position: relative; }
.service-card p { color: rgba(202, 217, 226, .9); font-size: 15px; line-height: 1.75; position: relative; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-step {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(201, 154, 69, .55) 0%, rgba(14, 58, 84, .25) 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 26px;
  padding: 26px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  background:
    linear-gradient(#ffffff, #fdfaf5) padding-box,
    linear-gradient(135deg, var(--gold) 0%, var(--navy2) 100%) border-box;
}
.process-num {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 38px;
  align-self: stretch;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy2) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  min-height: 72px;
}
.process-step h3 { grid-column: 2; grid-row: 1; font-size: 17px; color: var(--ink); margin-bottom: 8px; align-self: end; }
.process-step p { grid-column: 2; grid-row: 2; font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border2);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.news-card__image img { width: 100%; height: 230px; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card__image img { transform: scale(1.05); }
.news-card__body { padding: 24px; }
.news-card__cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.news-card h3 { font-size: 20px; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.news-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.news-card__date { font-size: 12px; color: var(--muted2); margin-top: 14px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-block {
  background-color: #071925;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201, 154, 69, .12), transparent 50%),
    linear-gradient(115deg, rgba(7, 25, 37, .96), rgba(7, 25, 37, .72)),
    url('../images/cta-consult-realestate.png') center/cover;
  border-radius: 40px;
  padding: 70px 64px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(201, 154, 69, .2);
}
.cta-block h2 { font-size: 46px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 18px; color: #ffffff; }
.cta-block p { color: rgba(255, 255, 255, .8); line-height: 1.75; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-info {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  padding: 28px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 15px;
  font-weight: 700;
}
.contact-info-item:last-child { border-bottom: 0; }
.contact-info-item svg { color: var(--gold2); flex-shrink: 0; }

/* ============================================================
   SEARCH FILTER BAR
   ============================================================ */
.search-filter-bar {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-group { flex: 1; min-width: 160px; }
.filter-group label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.filter-group select,
.filter-group input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 14px;
  background: var(--ivory);
  color: var(--text);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.filter-group select:focus,
.filter-group input:focus { border-color: var(--gold); }
.filter-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%236d7b86' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
}

/* ============================================================
   SINGLE PROJECT PAGE
   ============================================================ */
.project-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.project-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 25, 37, .9) 0%, rgba(7, 25, 37, .3) 60%);
}
.project-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  color: #ffffff;
}
.project-hero__content h1 { font-size: 44px; color: #ffffff; margin-bottom: 12px; }

.project-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}
.project-sidebar { position: sticky; top: 100px; }
.project-sidebar .hero-form-card { background: #ffffff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.quick-info-item {
  background: var(--ivory);
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}
.quick-info-item .label { font-size: 12px; color: var(--muted); font-weight: 600; display: block; margin-bottom: 6px; }
.quick-info-item .value { font-size: 17px; font-weight: 800; color: var(--ink); }
.quick-info-item .value.gold { color: var(--gold); font-family: var(--font-display); font-size: 20px; }

.content-block { margin-bottom: 48px; }
.content-block h2 {
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border2);
}

/* Gallery */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.project-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: transform .3s ease;
}
.project-gallery img:hover { transform: scale(1.03); }

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */
.page-hero {
  background: linear-gradient(115deg, var(--ink) 0%, var(--navy2) 100%);
  padding: 140px 0 70px;
  color: #ffffff;
  text-align: center;
}
.page-hero h1 { color: #ffffff; margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, .75); font-size: 18px; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}
.page-breadcrumb a { color: var(--gold2); }
.page-breadcrumb span { font-size: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #040f18;
  color: #a8bac6;
  position: relative;
}

/* Gold accent line at top */
.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold2) 60%, transparent 100%);
}

/* Pre-footer CTA strip */
.footer-cta-strip {
  background: linear-gradient(90deg, var(--ink) 0%, var(--navy2) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 28px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-text {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-cta-eyebrow {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(201, 154, 69, .18);
  border: 1px solid rgba(201, 154, 69, .35);
  color: var(--gold2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-cta-text strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}
.footer-cta-text > span {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}
.footer-cta-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* Ghost white btn for footer strip */
.btn--ghost-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .85);
}
.btn--ghost-white:hover {
  border-color: rgba(255, 255, 255, .7);
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
}

/* Main footer body */
.footer-body { padding: 64px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* Brand column */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  text-decoration: none;
}
.footer-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  flex-shrink: 0;
}
.footer-logo-text strong {
  display: block;
  font-size: 19px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
}
.footer-logo-text span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-top: 3px;
  letter-spacing: .04em;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #7a9aaa;
  margin-bottom: 28px;
  max-width: 320px;
}

/* Contact rows */
.footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
a.footer-contact-row:hover {
  background: rgba(201, 154, 69, .1);
  border-color: rgba(201, 154, 69, .25);
}
.footer-contact-row--hotline {
  display: inline-flex;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  gap: 12px;
}
a.footer-contact-row--hotline:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-1px);
}
.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(201, 154, 69, .15);
  border: 1px solid rgba(201, 154, 69, .25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
}
.footer-contact-row--hotline .footer-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(201, 154, 69, .28);
}
.footer-contact-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.footer-contact-row strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
}
.footer-contact-row--hotline .footer-contact-label {
  color: var(--gold2);
  font-weight: 800;
}
.footer-contact-row--hotline strong {
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: .01em;
  text-shadow: 0 10px 24px rgba(201, 154, 69, .22);
}

/* Social links */
.footer-social { display: flex; gap: 8px; }
.footer-social:empty { display: none; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  color: #8aa0ae;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Footer nav columns */
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 22px;
  padding-bottom: 14px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col h4 span { color: #ffffff; }

.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 2px; }
.footer-col .footer-nav a,
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6a8898;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: var(--transition);
  text-decoration: none;
}
.footer-col .footer-nav a::before,
.footer-col a:not(.footer-contact-row)::before {
  content: '';
  width: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .2s ease;
  flex-shrink: 0;
}
.footer-col .footer-nav a:hover,
.footer-col a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.footer-col .footer-nav a:hover::before,
.footer-col a:not(.footer-contact-row):hover::before { width: 12px; }
.footer-nav li:last-child a { border-bottom: 0; }

/* Trust row */
.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #6a8898;
}
.footer-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Bottom bar */
.footer-bottom-bar {
  background: rgba(0, 0, 0, .25);
  border-top: 1px solid rgba(255, 255, 255, .05);
}
.footer-bottom {
  padding: 20px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer-copyright {
  font-size: 13px;
  color: #4a6070;
  white-space: nowrap;
}
.footer-disclaimer {
  font-size: 11.5px;
  color: #3a5060;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
.footer-bottom-links { display: flex; gap: 18px; flex-shrink: 0; }
.footer-bottom-links a {
  font-size: 12px;
  color: #4a6070;
  transition: var(--transition);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--gold2); }

/* ============================================================
   TAXONOMY / ARCHIVE
   ============================================================ */
.taxonomy-desc {
  background: var(--ivory2);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  margin-bottom: 36px;
}
.taxonomy-desc h1 { font-size: 36px; margin-bottom: 10px; }
.taxonomy-desc p { color: var(--muted); }

.archive-header { margin-bottom: 36px; }
.archive-header h1 { font-size: 36px; margin-bottom: 10px; }
.archive-count { font-size: 14px; color: var(--muted); font-weight: 600; }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: var(--transition);
  background: #ffffff;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--ink); color: #ffffff; border-color: var(--ink); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: var(--muted2); }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget {
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 24px;
}
.widget__title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border2);
}
.widget__list { display: flex; flex-direction: column; gap: 10px; }
.widget__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border2);
}
.widget__list li:last-child a { border-bottom: 0; }
.widget__list li a:hover { color: var(--gold); }

/* ============================================================
   TAGS / NEED GROUPS
   ============================================================ */
.home-needs-section { padding: 66px 0; }
.home-needs-section .section-head { margin-bottom: 28px; }
.home-needs-section .heading-lg { font-size: clamp(32px, 3.4vw, 50px); }
.need-tags { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.need-tag {
  padding: 16px 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1.5px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  color: var(--text2);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xs);
  text-align: left;
  line-height: 1.4;
}
.need-tag::before {
  content: '→';
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.need-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 154, 69, .05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.need-tag:hover::before { transform: translateX(3px); }
.need-tag.active { background: var(--ink); color: #ffffff; border-color: var(--ink); }
.need-tag.active::before { color: var(--gold2); }

/* ============================================================
   EXPERT CARD
   ============================================================ */
.experts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.expert-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
  padding: 28px;
  text-align: center;
}
.expert-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid rgba(201, 154, 69, .4);
}
.expert-card h3 { font-size: 18px; color: #ffffff; margin-bottom: 4px; }
.expert-card .position { font-size: 13px; color: var(--gold2); margin-bottom: 12px; }
.expert-card .area { font-size: 13px; color: #cad9e2; }

/* ============================================================
   SINGLE POST / PAGE CONTENT
   ============================================================ */
.entry-content { max-width: 760px; }
.entry-content h2 { font-size: 28px; margin: 36px 0 16px; color: var(--ink); }
.entry-content h3 { font-size: 22px; margin: 28px 0 12px; color: var(--ink); }
.entry-content p { margin-bottom: 18px; line-height: 1.8; color: var(--text2); }
.entry-content ul, .entry-content ol { margin: 0 0 18px 24px; }
.entry-content li { margin-bottom: 8px; line-height: 1.7; color: var(--text2); }
.entry-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 24px 0;
  padding: 16px 24px;
  background: var(--ivory2);
  border-radius: 0 16px 16px 0;
  font-style: italic;
  color: var(--text2);
}
.entry-content img { border-radius: 18px; margin: 24px 0; }
.entry-content a { color: var(--gold); font-weight: 600; }
.entry-content a:hover { text-decoration: underline; }

/* ============================================================
   ADMIN NOTICE
   ============================================================ */
.acf-notice {
  background: #fff8e1;
  border: 1px solid #f9c536;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px;
  font-size: 14px;
  color: #7a5a00;
}
.acf-notice strong { display: block; margin-bottom: 6px; font-size: 16px; }

/* ============================================================
   LOADING / ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-in { animation: fadeInUp .6s ease forwards; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1300px) {
  .hero-section {
    min-height: auto;
    padding: 130px 0 78px;
  }
  .hero-grid {
    gap: 34px;
    max-width: 860px;
    margin: 0 auto;
  }
  .hero-left {
    max-width: 760px;
  }
  .hero-left .heading-xl {
    font-size: clamp(40px, 6vw, 64px);
    max-width: 760px;
  }
  .hero-desc {
    max-width: 720px;
  }
  .hero-form-card {
    max-width: 640px;
    width: 100%;
    justify-self: start;
  }
  .projects-grid--featured { grid-template-columns: 1fr 1fr; }
  .project-card--featured-item.featured { grid-column: 1 / -1; grid-row: auto; }
  .project-card--featured-item.featured .project-card__image img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .need-tags { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1020px) {
  .hamburger { display: flex; }
  .main-nav { display: none; }
  .hero-form-card { max-width: 540px; justify-self: start; }
  .metrics-panel { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid .area-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 460px; margin: 0 auto; }
  .cta-block { grid-template-columns: 1fr; padding: 48px 40px; }
  .experts-grid { grid-template-columns: repeat(2, 1fr); }
  .project-layout { grid-template-columns: 1fr; }
  .project-sidebar { position: static; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .quick-info-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-archive { grid-template-columns: 1fr 1fr; }
  .projects-grid--featured { grid-template-columns: 1fr 1fr; }
  .need-tags { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #site-header { top: 10px; }
  #site-header .container { padding: 0 14px; }
  .header-inner {
    border-radius: 22px;
    padding: 6px 8px 6px 7px;
    gap: 8px;
    min-height: 54px;
  }
  .site-logo {
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .logo-img { max-width: 145px; height: 34px; object-fit: contain; }
  .logo-text { min-width: 0; }
  .logo-text strong {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }
  .logo-text span { display: none; }
  .header-cta {
    gap: 5px;
    flex: 0 0 auto;
    min-width: 0;
  }
  .header-cta .btn--sm {
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }
  .header-phone { display: none; }
  .header-user-btn {
    height: 38px;
    gap: 6px;
    padding: 4px 8px 4px 4px;
  }
  .header-user-avatar {
    width: 30px;
    height: 30px;
  }
  .header-user-name {
    max-width: 58px;
    font-size: 12px;
  }
  .header-user-btn svg { width: 10px; height: 10px; }
  .header-user-dropdown {
    right: -50px;
    min-width: 200px;
  }
  .hamburger {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    flex: 0 0 38px;
    gap: 4px;
  }
  .hamburger span { width: 18px; }
  .hero-section { padding-top: 118px; }
  .hero-grid { gap: 40px; }
  .hero-actions {
    gap: 12px;
    margin-bottom: 36px;
  }
  .hero-actions .btn {
    min-width: min(100%, 214px);
    justify-content: center;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    padding-top: 26px;
  }
  .hero-stat {
    min-width: 0;
  }
  .hero-stat b {
    font-size: 31px;
    margin-bottom: 7px;
  }
  .hero-stat span {
    display: block;
    max-width: 120px;
    font-size: 12px;
    line-height: 1.35;
  }
  .form-grid { grid-template-columns: 1fr; }
  .metrics-panel { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
  .projects-grid--featured { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .need-tags { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-pad { padding: 48px 0; }
  .cta-block { padding: 36px 28px; border-radius: 28px; }
  .cta-block h2 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-trust { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-disclaimer { display: none; }
  .footer-bottom-links { justify-content: center; }
  .section-head h2.heading-lg { font-size: 30px; }
  .project-gallery { grid-template-columns: 1fr 1fr; }
  .experts-grid { grid-template-columns: 1fr 1fr; }
  .quick-info-grid { grid-template-columns: 1fr 1fr; }
  .projects-archive { grid-template-columns: 1fr; }
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 12px 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  #site-header .container { padding: 0 12px; }
  .header-inner {
    padding: 6px;
    gap: 6px;
  }
  .logo-mark {
    width: 34px;
    height: 34px;
  }
  .logo-text strong {
    max-width: 138px;
    font-size: 13px;
  }
  .header-cta .btn--sm {
    height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }
  .header-user-name { max-width: 48px; }
  .header-user-btn { padding-right: 7px; }
  .hamburger {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .hero-section { padding-top: 112px; }
  .hero-actions .btn {
    width: min(100%, 214px);
    min-width: 0;
  }
  .hero-stats {
    gap: 20px 14px;
    padding-top: 24px;
  }
  .hero-stat b { font-size: 30px; }
  .hero-stat span { max-width: 112px; }
  .areas-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .experts-grid { grid-template-columns: 1fr; }
  .need-tags { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-trust { grid-template-columns: 1fr 1fr; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-cta-text { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   FLOATING CONTACT WIDGET
   ============================================================ */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(0,0,0,.28); color: #fff; }
.float-btn--zalo { background: #0068FF; }
.float-btn--phone {
  isolation: isolate;
  gap: 12px;
  padding: 9px 18px 9px 10px;
  min-height: 54px;
  color: #061725;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.78) 0 10%, transparent 24%),
    linear-gradient(135deg, #f6c85d 0%, #e49a12 58%, #c97906 100%);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow:
    0 18px 44px rgba(193, 115, 6, .28),
    0 8px 20px rgba(7, 25, 37, .18),
    inset 0 1px 0 rgba(255,255,255,.62),
    inset 0 -12px 24px rgba(122, 64, 0, .12);
  overflow: visible;
}
.float-btn--phone::before {
  content: '';
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(232,162,26,.38), transparent 68%);
  filter: blur(8px);
  opacity: .85;
  animation: dndPhoneGlow 2.4s ease-in-out infinite;
}
.float-btn--phone::after {
  content: '';
  position: absolute;
  inset: 6px auto 6px 7px;
  width: 40px;
  border-radius: 999px;
  background: rgba(7, 25, 37, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32);
  z-index: -1;
}
.float-btn--phone svg {
  width: 21px;
  height: 21px;
  padding: 7px;
  box-sizing: content-box;
  border-radius: 999px;
  background: #071925;
  color: #f6c85d;
  box-shadow: 0 8px 18px rgba(7,25,37,.26);
}
.float-btn--phone span {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .015em;
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
}
.float-btn--phone:hover {
  color: #061725;
  box-shadow:
    0 24px 56px rgba(193, 115, 6, .36),
    0 10px 24px rgba(7, 25, 37, .22),
    inset 0 1px 0 rgba(255,255,255,.68),
    inset 0 -12px 24px rgba(122, 64, 0, .12);
}
.float-btn svg { flex-shrink: 0; }
@keyframes dndPhoneGlow {
  0%, 100% { opacity: .62; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.04); }
}
@media (max-width: 480px) {
  .float-btn span { display: none; }
  .float-btn { padding: 13px; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
  .float-btn--phone { min-height: 50px; padding: 0; }
  .float-btn--phone::after { display: none; }
  .float-btn--phone svg { width: 20px; height: 20px; padding: 0; background: transparent; box-shadow: none; color: #061725; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}
.error-404-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.error-404-code {
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.error-404-title { font-size: 32px; margin-bottom: 16px; }
.error-404-desc { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.error-404-search {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 28px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.error-404-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 15px;
  background: transparent;
  color: var(--text);
}
.error-404-search button {
  padding: 0 22px;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.error-404-search button:hover { background: var(--gold); color: var(--ink); }
.error-404-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.error-404-suggest p { font-size: 13px; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.error-404-quick { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.error-404-quick a {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ivory2);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: var(--transition);
}
.error-404-quick a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.search-hero {
  background: linear-gradient(115deg, var(--ink) 0%, var(--navy2) 100%);
  padding: 140px 0 60px;
  color: #fff;
  text-align: center;
}
.search-hero h1 { color: #fff; margin-bottom: 24px; }
.search-form-bar {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
}
.search-form-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 22px;
  font-size: 15px;
  background: transparent;
  color: #fff;
}
.search-form-bar input::placeholder { color: rgba(255,255,255,.5); }
.search-form-bar button {
  padding: 0 26px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.search-form-bar button:hover { background: var(--gold2); }
.search-results-section { padding: 60px 0 80px; }
.search-results-count { font-size: 15px; color: var(--muted); margin-bottom: 32px; font-weight: 600; }
.search-results-count strong { color: var(--ink); }
.search-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-section-title .count-badge {
  font-size: 12px;
  background: var(--ivory2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}
.search-post-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.search-post-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 18px;
  transition: var(--transition);
}
.search-post-item:hover { box-shadow: var(--shadow-xs); transform: translateY(-2px); }
.search-post-thumb { border-radius: 12px; overflow: hidden; }
.search-post-thumb img { width: 100%; height: 80px; object-fit: cover; }
.search-post-body h3 { font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.search-post-body h3 a:hover { color: var(--gold); }
.search-post-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.search-post-meta { font-size: 12px; color: var(--muted2); margin-top: 6px; }
.search-no-results { text-align: center; padding: 48px 0; color: var(--muted); }
.search-no-results svg { margin: 0 auto 16px; color: var(--muted2); }

/* ============================================================
   TAXONOMY KHU VỰC — AREA LANDING PAGE
   ============================================================ */
.area-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  padding-top: calc(var(--header-h, 80px) + 40px);
}
.area-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,25,37,.92) 0%, rgba(7,25,37,.45) 60%, rgba(7,25,37,.2) 100%);
}
.area-hero .container { position: relative; z-index: 2; width: 100%; }
.area-hero .breadcrumb { margin-bottom: 16px; }
.area-hero__content { padding-bottom: 60px; }
.area-hero__content .eyebrow--light {
  color: var(--gold);
  margin-bottom: 12px;
}
.area-hero__content .heading-xl {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.area-hero__desc {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.area-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.area-hero__stat b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 4px;
}
.area-hero__stat span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* projects-archive grid reuses project-card--featured-item layout */
.projects-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.projects-archive .project-card--featured-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border2);
  box-shadow: 0 4px 20px rgba(7,25,37,.06);
  transition: var(--transition);
}
.projects-archive .project-card--featured-item:hover {
  box-shadow: 0 12px 40px rgba(7,25,37,.13);
  transform: translateY(-4px);
}
.projects-archive .project-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.projects-archive .project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.projects-archive .project-card--featured-item:hover .project-card__image img {
  transform: scale(1.05);
}
.projects-archive .project-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.projects-archive .project-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.projects-archive .project-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.35;
}
.projects-archive .project-card__title a:hover { color: var(--gold); }
.projects-archive .project-card__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
}
.projects-archive .project-card__price {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
}

@media (max-width: 1020px) {
  .projects-archive { grid-template-columns: repeat(2, 1fr); }
  .area-hero { min-height: 420px; }
}
@media (max-width: 640px) {
  .projects-archive { grid-template-columns: 1fr; }
  .area-hero__stats { gap: 24px; }
  .area-hero__content .heading-xl { font-size: 2rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #site-header, .site-footer, .hero-form-card, .cta-block, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE DỰ ÁN — REDESIGN
════════════════════════════════════════════════════════════ */

/* ---- Hero ---- */
.sp-hero {
    min-height: 640px;
    padding-top: calc(var(--header-h, 80px) + 60px);
    background: var(--navy) var(--hero-bg) center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.sp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7,25,37,.95) 0%, rgba(7,25,37,.65) 45%, rgba(7,25,37,.45) 100%);
}
.sp-hero__inner { position: relative; z-index: 2; padding-bottom: 3rem; width: 100%; }
.sp-hero__content { max-width: 800px; }

.sp-hero__badges { display: flex; gap: .6rem; align-items: center; margin-bottom: 1.1rem; flex-wrap: wrap; }
.sp-badge { display: inline-block; font-size: .75rem; font-weight: 600; padding: .3rem .85rem; border-radius: 20px; letter-spacing: .03em; }
.sp-badge--type { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(4px); }

.sp-hero__title {
    font-size: clamp(1.75rem, 3.8vw, 3rem);
    color: #fff;
    margin-bottom: .75rem;
    line-height: 1.2;
    font-family: var(--font-display);
    text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.sp-hero__location { color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: 1.75rem; display: flex; align-items: center; gap: .4rem; }

.sp-hero__stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255,255,255,.08);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    width: fit-content;
}
.sp-hero__stat { display: flex; flex-direction: column; gap: .2rem; }
.sp-hero__stat span { font-size: .72rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .07em; }
.sp-hero__stat strong { font-size: 1.1rem; color: #fff; font-family: var(--font-display); font-weight: 700; }
.sp-hero__price { color: var(--gold) !important; font-size: 1.45rem !important; }

.sp-hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }

/* Scroll cue */
.sp-hero__scroll-cue {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: .6;
}
.sp-hero__scroll-dot {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 14px;
    position: relative;
}
.sp-hero__scroll-dot::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: rgba(255,255,255,.8);
    border-radius: 3px;
    animation: spScrollDot 1.7s ease-in-out infinite;
}
@keyframes spScrollDot {
    0%, 100% { top: 6px; opacity: 1; }
    60% { top: 24px; opacity: .25; }
}

/* ---- Quick Info Bar ---- */
.sp-quickinfo {
    background: #fff;
    border-bottom: 1px solid var(--ivory2);
    box-shadow: 0 4px 20px rgba(7,25,37,.06);
}
.sp-quickinfo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 0;
}
.sp-quickinfo__item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1.2rem 1.4rem;
    border-right: 1px solid var(--ivory2);
    transition: background .2s;
}
.sp-quickinfo__item:last-child { border-right: none; }
.sp-quickinfo__item:hover { background: var(--ivory); }
.sp-quickinfo__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ivory);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.sp-quickinfo__item:hover .sp-quickinfo__icon-wrap { background: var(--navy); color: var(--gold); }
.sp-quickinfo__text { min-width: 0; }
.sp-quickinfo__label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; display: block; margin-bottom: .15rem; white-space: nowrap; }
.sp-quickinfo__val { font-weight: 700; color: var(--navy); font-size: .88rem; line-height: 1.35; word-break: break-word; }

/* ---- In-page Sticky Nav ---- */
.sp-subnav {
    position: sticky;
    top: var(--header-h, 88px);
    z-index: 90;
    background: #fff;
    border-bottom: 2px solid var(--ivory2);
    box-shadow: 0 2px 16px rgba(7,25,37,.06);
}
.sp-subnav__list { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.sp-subnav__list::-webkit-scrollbar { display: none; }
.sp-subnav__link {
    display: inline-block;
    padding: 1rem 1.35rem;
    font-size: .84rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
}
.sp-subnav__link:hover,
.sp-subnav__link.is-active { color: var(--navy); border-bottom-color: var(--gold); }

/* ---- Outer wrap & Layout ---- */
.sp-outer-wrap { background: var(--ivory); padding-bottom: 1px; }
.sp-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    align-items: start;
}
.sp-content { min-width: 0; }
.sp-sidebar__sticky {
    position: sticky;
    top: calc(var(--header-h, 88px) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ---- Sections ---- */
.sp-section {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(7,25,37,.05);
}
.sp-section:last-child { margin-bottom: 0; }
.sp-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ivory2);
}
.sp-section__title { font-size: 1.3rem; color: var(--navy); margin: 0; font-family: var(--font-display); }
.sp-section__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    color: var(--muted);
    font-size: .73rem;
    font-weight: 600;
    padding: .2rem .65rem;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}
.sp-section__sub { color: var(--muted); font-size: .9rem; margin-top: -.75rem; margin-bottom: 1.25rem; }

/* Prose */
.sp-prose, .sp-prose.prose { line-height: 1.8; color: var(--text); font-size: .97rem; }
.sp-prose p { margin-bottom: 1em; }
.sp-prose p:last-child { margin-bottom: 0; }
.sp-prose ul, .sp-prose ol { padding-left: 1.4em; margin-bottom: 1em; }
.sp-prose li { margin-bottom: .3em; }
.sp-prose strong { color: var(--navy); }

/* ---- Key Highlights ---- */
.sp-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ivory2);
}
.sp-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem;
    background: var(--ivory);
    border-radius: 12px;
    border: 1px solid var(--ivory2);
    transition: border-color .2s, box-shadow .2s;
}
.sp-highlight-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(196,156,65,.1); }
.sp-highlight-icon {
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
}
.sp-highlight-item > div:last-child { min-width: 0; }
.sp-highlight-item span { display: block; font-size: .71rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.sp-highlight-item strong { display: block; font-size: .9rem; color: var(--navy); font-weight: 700; }

/* ---- Gallery ---- */
.sp-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: .75rem;
}
.sp-gallery__item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    position: relative;
    cursor: zoom-in;
}
.sp-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.sp-gallery__item:hover img { transform: scale(1.07); }
.sp-gallery__hover {
    position: absolute;
    inset: 0;
    background: rgba(7,25,37,.48);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    border-radius: inherit;
}
.sp-gallery__item:hover .sp-gallery__hover { opacity: 1; }

/* ---- Master Plan ---- */
.sp-masterplan-wrap { display: block; position: relative; border-radius: 16px; overflow: hidden; cursor: zoom-in; }
.sp-masterplan { width: 100%; border-radius: inherit; display: block; transition: transform .4s ease; }
.sp-masterplan-wrap:hover .sp-masterplan { transform: scale(1.02); }
.sp-masterplan__zoom {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(7,25,37,.78);
    color: #fff;
    font-size: .8rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .9rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
}
.sp-masterplan-wrap:hover .sp-masterplan__zoom { opacity: 1; }

/* Map */
.sp-map iframe { width: 100%; height: 380px; border-radius: 16px; border: none; display: block; }

/* ---- Payment Steps ---- */
.sp-payment-box { background: var(--ivory); border-radius: 14px; padding: 1.5rem; }
.sp-payment-steps { display: flex; flex-direction: column; gap: .85rem; }
.sp-payment-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--ivory2);
    transition: border-color .2s, box-shadow .2s;
}
.sp-payment-step:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(196,156,65,.1); }
.sp-payment-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-display);
}
.sp-payment-step__text { font-size: .9rem; color: var(--text); line-height: 1.6; padding-top: .35rem; }

/* ---- Progress ---- */
.sp-progress-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--ivory);
    border-radius: 14px;
    padding: 1.5rem;
}
.sp-progress-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--ivory2);
}

/* ---- Legal Card ---- */
.sp-legal-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #f0f9f0 0%, #e4f4e4 100%);
    border: 1.5px solid #a8d8a8;
    border-radius: 16px;
    padding: 1.75rem;
}
.sp-legal-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #a8d8a8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2d7d2d;
}
.sp-legal-card__body { min-width: 0; }
.sp-legal-card__title { display: block; font-size: 1.1rem; font-weight: 700; color: #1d5c1d; margin-bottom: .5rem; }
.sp-legal-card__body > p { font-size: .88rem; color: #3d7d3d; line-height: 1.7; margin-bottom: 1rem; }
.sp-legal-checks { display: flex; flex-wrap: wrap; gap: .5rem .8rem; }
.sp-legal-check {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .81rem;
    font-weight: 600;
    color: #2d6b2d;
    background: rgba(255,255,255,.7);
    padding: .3rem .7rem;
    border-radius: 20px;
}
.sp-legal-check svg { color: #2d7d2d; flex-shrink: 0; }

/* ---- Form section (dark) ---- */
.sp-section--form {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2d44 100%);
    border-radius: 20px;
    padding: 2rem;
    border: none;
}
.sp-section--form .sp-section__head { border-bottom-color: rgba(255,255,255,.12); }
.sp-section--form .sp-section__title { color: #fff; }
.sp-section--form .sp-section__sub { color: rgba(255,255,255,.7); }
.sp-form-wrap { }

/* ---- Price Card (sidebar) ---- */
.sp-price-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(7,25,37,.13);
    overflow: hidden;
    border-top: 4px solid var(--gold);
}
.sp-price-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem .8rem;
    border-bottom: 1px solid var(--ivory2);
}
.sp-price-card__code {
    font-size: .71rem;
    font-weight: 600;
    color: var(--muted);
    background: var(--ivory);
    padding: .25rem .7rem;
    border-radius: 12px;
    letter-spacing: .04em;
}
.sp-price-card__price { padding: 1.25rem 1.4rem .4rem; display: flex; flex-direction: column; gap: .2rem; }
.sp-price-card__price span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.sp-price-card__price strong { font-size: 2.1rem; font-weight: 900; color: var(--gold); font-family: var(--font-display); line-height: 1.1; }
.sp-price-card__perunit { padding: 0 1.4rem .85rem; font-size: .82rem; color: var(--muted); }
.sp-price-card__perunit b { color: var(--navy); }
.sp-price-card__actions { padding: 1rem 1.4rem 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.sp-price-card__brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .85rem 1.4rem;
    border-top: 1px solid var(--ivory2);
    font-size: .83rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color .2s, background .2s;
}
.sp-price-card__brochure:hover { background: var(--ivory); color: var(--gold); }

/* ---- Consult sidebar ---- */
.consult-sidebar { background: #fff; border-radius: 20px; box-shadow: 0 4px 24px rgba(7,25,37,.08); padding: 1.75rem; border-top: 3px solid var(--gold); }
.consult-sidebar__header { margin-bottom: 1.5rem; }
.consult-sidebar__title { font-size: 1.1rem; color: var(--navy); margin-bottom: .3rem; }
.consult-sidebar__sub { font-size: .8rem; color: var(--muted); }
.consult-sidebar__experts { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.consult-sidebar__expert { display: flex; align-items: center; gap: .75rem; font-size: .85rem; }
.expert-avt { position: relative; width: 44px; height: 44px; border-radius: 50%; overflow: visible; flex-shrink: 0; }
.expert-avt img, .expert-avt__initials { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.expert-avt__initials { background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.expert-avt__online { position: absolute; bottom: 0; right: 0; width: 12px; height: 12px; background: #22c55e; border-radius: 50%; border: 2px solid #fff; }
.consult-sidebar__hotline { margin-top: 1.25rem; }
.consult-sidebar__note { font-size: .75rem; color: var(--muted); margin-top: .75rem; text-align: center; }

/* ---- Related projects ---- */
.sp-related { }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .sp-layout { grid-template-columns: 1fr 320px; gap: 2rem; }
}
@media (max-width: 860px) {
    .sp-layout { grid-template-columns: 1fr; }
    .sp-sidebar { order: -1; }
    .sp-sidebar__sticky { position: static; }
    .sp-price-card { display: grid; grid-template-columns: 1fr 1fr; }
    .sp-price-card__top,
    .sp-price-card__actions { grid-column: 1 / -1; }
    .sp-price-card__actions { flex-direction: row; }
    .sp-quickinfo__grid { grid-template-columns: repeat(3, 1fr); }
    .sp-quickinfo__item { border-bottom: 1px solid var(--ivory2); }
    .sp-hero__stats { gap: 1.5rem; }
}
@media (max-width: 600px) {
    .sp-hero { min-height: 500px; padding-top: calc(var(--header-h, 80px) + 30px); }
    .sp-hero__stats { gap: 1rem; padding: 1rem 1.25rem; width: 100%; }
    .sp-hero__price { font-size: 1.25rem !important; }
    .sp-hero__actions { flex-direction: column; }
    .sp-hero__actions .btn { width: 100%; justify-content: center; }
    .sp-layout { padding-top: 1.25rem; gap: 1.25rem; }
    .sp-section { padding: 1.4rem; border-radius: 16px; }
    .sp-highlights { grid-template-columns: 1fr 1fr; }
    .sp-legal-card { flex-direction: column; gap: 1rem; }
    .sp-legal-card__icon { width: 48px; height: 48px; }
    .sp-quickinfo__grid { grid-template-columns: repeat(2, 1fr); }
    .sp-subnav__link { padding: .85rem .9rem; font-size: .8rem; }
    .sp-price-card__price strong { font-size: 1.7rem; }
}

/* ═══════════════════════════════════════════════════════════
   ARCHIVE DỰ ÁN
════════════════════════════════════════════════════════════ */
.archive-hero { background:var(--navy);padding:7rem 0 3rem;text-align:left; }
.archive-hero--has-image { background:var(--navy) var(--hero-bg) center/cover no-repeat;position:relative; }
.archive-hero--has-image .archive-hero__overlay { position:absolute;inset:0;background:rgba(7,25,37,.72); }
.archive-hero--has-image .archive-hero__inner { position:relative;z-index:2; }
.archive-hero__title { color:#fff;font-size:clamp(1.8rem,4vw,3rem);margin:.5rem 0 .75rem; }
.archive-hero__desc { color:rgba(255,255,255,.8);max-width:640px;font-size:1rem; }
.archive-hero__tax { color:var(--gold);font-size:.8rem;text-transform:uppercase;letter-spacing:.1em; }

.archive-filter { background:var(--ivory2);border-bottom:1px solid var(--ivory); }
.filter-bar { display:flex;align-items:flex-end;gap:1rem;flex-wrap:wrap;padding:1.5rem 0; }
.filter-bar__group { display:flex;flex-direction:column;gap:.4rem;flex:1;min-width:160px; }
.filter-bar__label { font-size:.75rem;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.06em; }
.filter-bar__select { height:44px;padding:0 1rem;border:1.5px solid #ddd;border-radius:8px;background:#fff;color:var(--navy);font-size:.9rem;cursor:pointer; }
.filter-bar__btn { height:44px;padding:0 1.75rem;white-space:nowrap;flex-shrink:0; }
.filter-bar__reset { color:var(--muted);font-size:.85rem;text-decoration:underline;cursor:pointer;white-space:nowrap; }

.archive-results__count { margin-bottom:1.5rem;color:var(--muted); }
.archive-results__count strong { color:var(--navy); }

.archive-pagination { margin-top:3rem;display:flex;justify-content:center;gap:.5rem;flex-wrap:wrap; }
.archive-pagination .page-numbers { display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border:1.5px solid var(--ivory2);border-radius:8px;color:var(--navy);text-decoration:none;font-size:.9rem;transition:all .2s;background:none;cursor:pointer;font-family:inherit; }
.archive-pagination .page-numbers:hover,.archive-pagination .page-numbers.current { background:var(--navy);color:#fff;border-color:var(--navy); }
.archive-pagination .page-numbers.prev,.archive-pagination .page-numbers.next { width:auto;padding:0 1rem; }
.archive-pagination--ajax { margin-top:2rem; }

/* ═══════════════════════════════════════════════════════════
   PROJECT CARD
════════════════════════════════════════════════════════════ */
.project-card { background:#fff;border-radius:16px;box-shadow:0 4px 24px rgba(7,25,37,.08);overflow:hidden;display:flex;flex-direction:column;transition:transform .25s,box-shadow .25s; }
.project-card:hover { transform:translateY(-4px);box-shadow:0 12px 40px rgba(7,25,37,.14); }
.project-card__thumb-wrap { position:relative;overflow:hidden;aspect-ratio:4/3;display:block; }
.project-card__thumb { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.project-card__thumb-wrap:hover .project-card__thumb { transform:scale(1.06); }
.project-card__code { position:absolute;top:.75rem;left:.75rem;background:rgba(7,25,37,.7);color:rgba(255,255,255,.8);font-size:.7rem;padding:.2rem .6rem;border-radius:20px; }
.project-card__body { padding:1.25rem 1.5rem 1.5rem;display:flex;flex-direction:column;flex:1; }
.project-card__area { font-size:.78rem;color:var(--muted);display:flex;align-items:center;gap:.3rem;margin-bottom:.4rem; }
.project-card__title { font-size:1.05rem;margin-bottom:1rem;line-height:1.4;flex:1; }
.project-card__title a { color:var(--navy);text-decoration:none; }
.project-card__title a:hover { color:var(--gold); }
.project-card__meta { display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.25rem;font-size:.82rem; }
.project-card__meta-item { display:flex;justify-content:space-between;padding:.35rem 0;border-bottom:1px solid var(--ivory2); }
.project-card__meta-item:last-child { border-bottom:none; }
.project-card__label { color:var(--muted); }
.project-card__price { color:var(--gold);font-weight:700;font-family:var(--font-display);font-size:.95rem; }
.project-card__cta { margin-top:auto; }
.project-card--featured { grid-column:1/-1; }

/* Projects grid */
.projects-grid { display:grid;gap:1.5rem; }
.projects-grid--3 { grid-template-columns:repeat(3,1fr); }
.projects-grid--4 { grid-template-columns:repeat(4,1fr); }

/* Project status badge */
.badge { display:inline-block;font-size:.72rem;font-weight:600;padding:.25rem .7rem;border-radius:20px;text-transform:uppercase;letter-spacing:.05em; }
.badge--green { background:#dcfce7;color:#15803d; }
.badge--blue { background:#dbeafe;color:#1d4ed8; }
.badge--yellow { background:#fef9c3;color:#a16207; }
.badge--gray { background:#f1f5f9;color:#64748b; }

/* ═══════════════════════════════════════════════════════════
   NEWS CARD
════════════════════════════════════════════════════════════ */
.news-card { background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px rgba(7,25,37,.07);transition:transform .25s,box-shadow .25s; }
.news-card:hover { transform:translateY(-3px);box-shadow:0 10px 32px rgba(7,25,37,.12); }
.news-card__thumb-wrap { display:block;overflow:hidden;aspect-ratio:16/9; }
.news-card__thumb { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.news-card__thumb-wrap:hover .news-card__thumb { transform:scale(1.06); }
.news-card__body { padding:1.25rem 1.5rem 1.5rem; }
.news-card__cat { font-size:.72rem;color:var(--gold);font-weight:700;text-transform:uppercase;letter-spacing:.08em;text-decoration:none;margin-bottom:.5rem;display:inline-block; }
.news-card__title { font-size:1rem;margin-bottom:.6rem;line-height:1.4; }
.news-card__title a { color:var(--navy);text-decoration:none; }
.news-card__title a:hover { color:var(--gold); }
.news-card__excerpt { font-size:.85rem;color:var(--muted);margin-bottom:1rem;line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.news-card__foot { display:flex;justify-content:space-between;align-items:center;font-size:.8rem; }
.news-card__date { color:var(--muted); }
.news-card__read { color:var(--gold);font-weight:600;text-decoration:none; }
.news-card__read:hover { text-decoration:underline; }

.news-grid { display:grid;gap:1.5rem; }
.news-grid--3 { grid-template-columns:repeat(3,1fr); }

/* ═══════════════════════════════════════════════════════════
   BLOG HOME — PROFESSIONAL NEWS ARCHIVE (home.php)
════════════════════════════════════════════════════════════ */

/* ---- Blog Hero ---- */
.blog-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2d44 60%, #071520 100%);
    padding-top: calc(var(--header-h, 80px) + 34px);
    padding-bottom: 0;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(201,154,69,.12) 0%, transparent 60%);
    pointer-events: none;
}
.blog-hero__overlay { display: none; }
.blog-hero__inner { position: relative; z-index: 2; }
.blog-hero__top {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    margin-bottom: 2.5rem;
}
.blog-hero__text { max-width: 640px; }
.blog-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: .85rem;
    font-family: var(--font-display);
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.blog-hero__title span { color: var(--gold); }
.blog-hero__desc { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.7; max-width: 520px; }
.blog-hero .eyebrow--light { color: var(--gold); margin-bottom: 1rem; }

.blog-hero-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
    min-height: 310px;
}
.blog-hero-panel::before {
    content: '';
    position: absolute;
    inset: -1.25rem -1.5rem;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
    box-shadow: 0 28px 80px rgba(0,0,0,.22);
    pointer-events: none;
}
.blog-hero-panel__feature {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 310px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.08);
}
.blog-hero-panel__image,
.blog-hero-panel__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.blog-hero-panel__image {
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .45s ease;
}
.blog-hero-panel__feature:hover .blog-hero-panel__image { transform: scale(1.06); }
.blog-hero-panel__shade {
    background:
        linear-gradient(180deg, rgba(7,25,37,.15) 0%, rgba(7,25,37,.86) 100%),
        linear-gradient(90deg, rgba(7,25,37,.55), transparent 62%);
}
.blog-hero-panel__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
    padding: .4rem .75rem;
    color: var(--navy);
    background: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}
.blog-hero-panel__content {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
}
.blog-hero-panel__content strong {
    display: block;
    margin-top: .4rem;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.25;
    font-family: var(--font-display);
}
.blog-hero-panel__meta {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: .78rem;
    font-weight: 700;
}
.blog-hero-panel__insights {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .8rem;
}
.blog-hero-panel__insights div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 94px;
    padding: 1rem;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,.09);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.blog-hero-panel__insights span {
    margin-bottom: .35rem;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}
.blog-hero-panel__insights strong {
    color: #fff;
    font-size: .92rem;
    line-height: 1.35;
}

/* Category filter tabs */
.blog-cat-tabs {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,.14);
}
.blog-cat-tab {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.15rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
    color: rgba(255,255,255,.88);
    background:
        linear-gradient(135deg, rgba(201,154,69,.22), rgba(255,255,255,.08));
    border: 1px solid rgba(241,209,138,.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 24px rgba(0,0,0,.08);
    text-decoration: none;
    transition: transform .2s, color .2s, background .2s, border-color .2s, box-shadow .2s;
    white-space: nowrap;
}
.blog-cat-tab:hover {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(226,168,58,.36), rgba(64,120,144,.22));
    border-color: rgba(241,209,138,.58);
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
    transform: translateY(-2px);
}
.blog-cat-tab.is-active {
    color: var(--navy);
    background: linear-gradient(135deg, #e7b348, #f4d487);
    border-color: #f4d487;
    box-shadow: 0 12px 28px rgba(201,154,69,.28);
}
.blog-cat-tab__count {
    font-size: .72rem;
    font-weight: 800;
    opacity: .9;
    background: rgba(255,255,255,.18);
    padding: .1rem .45rem;
    border-radius: 10px;
}
.blog-cat-tab.is-active .blog-cat-tab__count { background: rgba(7,25,37,.16); }

/* ---- Main blog wrapper ---- */
.blog-main { padding-bottom: 0; }
.blog-main > .container { padding-top: 3rem; padding-bottom: 3rem; }

/* ---- Featured Post ---- */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(7,25,37,.12);
    margin-bottom: 3.5rem;
    border: 1px solid var(--ivory2);
    transition: box-shadow .3s, transform .3s;
}
.featured-post:hover { box-shadow: 0 20px 60px rgba(7,25,37,.16); transform: translateY(-4px); }
.featured-post__thumb-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.featured-post__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.featured-post:hover .featured-post__thumb { transform: scale(1.04); }
.featured-post__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 800;
    padding: .3rem .85rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.featured-post__body {
    padding: 2.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-post__cat {
    display: inline-block;
    font-size: .73rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    margin-bottom: 1rem;
    padding: .3rem .75rem;
    background: rgba(201,154,69,.1);
    border-radius: 20px;
    border: 1px solid rgba(201,154,69,.25);
    width: fit-content;
}
.featured-post__title {
    font-size: clamp(1.3rem, 2.2vw, 1.85rem);
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}
.featured-post__title a { color: inherit; text-decoration: none; transition: color .2s; }
.featured-post__title a:hover { color: var(--gold); }
.featured-post__excerpt {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.featured-post__summary {
    color: var(--text2);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(201,154,69,.08), rgba(7,25,37,.025));
    border-radius: 0 14px 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.featured-post__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: .82rem;
    color: var(--muted);
    border-top: 1px solid var(--ivory2);
    padding-top: 1.25rem;
}
.featured-post__date,
.featured-post__read {
    display: flex;
    align-items: center;
    gap: .35rem;
}
.featured-post__cta { margin-left: auto; }

/* ---- Section Head ---- */
.blog-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ivory2);
}
.blog-section-head__title { font-size: 1.5rem; color: var(--navy); margin: 0; font-family: var(--font-display); }
.blog-section-head__count { font-size: .85rem; color: var(--muted); margin-top: .25rem; }
.blog-sort__select {
    padding: .5rem 1rem;
    border: 1.5px solid var(--ivory2);
    border-radius: 8px;
    font-size: .85rem;
    color: var(--navy);
    background: #fff;
    cursor: pointer;
}

/* ---- Blog Card Grid ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}
.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(7,25,37,.07);
    border: 1px solid var(--ivory2);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(7,25,37,.13); }
.blog-card__thumb-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.blog-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.blog-card:hover .blog-card__thumb { transform: scale(1.07); }
.blog-card__cat-badge {
    position: absolute;
    bottom: .95rem;
    left: .95rem;
    max-width: calc(100% - 1.9rem);
    background: linear-gradient(135deg, #082237 0%, #04131f 100%);
    color: var(--gold2);
    font-size: .72rem;
    font-weight: 850;
    padding: .45rem .85rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.2;
    border: 1px solid rgba(241, 209, 138, .38);
    box-shadow: 0 12px 26px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
    text-shadow: 0 1px 0 rgba(0,0,0,.28);
}
.blog-card__body {
    padding: 1.35rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card__title {
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: .7rem;
    font-weight: 700;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    color: var(--muted);
    padding-top: .75rem;
    border-top: 1px solid var(--ivory2);
    margin-top: auto;
}
.blog-card__read { color: var(--navy); font-weight: 600; }

/* ---- Pagination ---- */
.blog-pagination { display: flex; justify-content: center; margin-bottom: 2rem; }
.blog-pagination ul { display: flex; gap: .4rem; list-style: none; flex-wrap: wrap; }
.blog-pagination ul li a,
.blog-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 .75rem;
    border: 1.5px solid var(--ivory2);
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: all .2s;
    background: #fff;
}
.blog-pagination ul li a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.blog-pagination ul li span.current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---- Newsletter Strip ---- */
.blog-newsletter {
    background: linear-gradient(135deg, var(--navy) 0%, #0a2540 100%);
    padding: 3.5rem 0;
    margin-top: 0;
}
.blog-newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.blog-newsletter__title {
    font-size: 1.65rem;
    color: #fff;
    margin-bottom: .4rem;
    font-family: var(--font-display);
}
.blog-newsletter__sub { color: rgba(255,255,255,.7); font-size: .95rem; }
.blog-newsletter__actions { display: flex; gap: .85rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---- Header nav highlight (Ký gửi CTA) ---- */
.nav-menu > li.nav-highlight > a {
    color: var(--gold) !important;
    background: rgba(201,154,69,.1) !important;
    border: 1.5px solid rgba(201,154,69,.35) !important;
    border-radius: 999px !important;
}
.nav-menu > li.nav-highlight > a:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-color: var(--gold) !important;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .blog-hero__top { grid-template-columns: 1fr; }
    .blog-hero-panel { grid-template-columns: minmax(0, 1fr) 220px; }
    .featured-post { grid-template-columns: 1fr; }
    .featured-post__thumb-wrap { aspect-ratio: 16/8; }
    .featured-post__body { padding: 2rem; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-hero { padding-top: calc(var(--header-h, 80px) + 30px); }
    .blog-hero__top { gap: 1.5rem; margin-bottom: 1.75rem; }
    .blog-hero__title { font-size: 2rem; }
    .blog-hero-panel { grid-template-columns: 1fr; min-height: 0; }
    .blog-hero-panel::before { inset: -.75rem; }
    .blog-hero-panel__feature { min-height: 245px; }
    .blog-hero-panel__insights { grid-template-columns: 1fr; }
    .blog-hero-panel__insights div { min-height: 0; }
    .blog-cat-tabs { gap: .3rem; }
    .blog-cat-tab { font-size: .77rem; padding: .4rem .85rem; }
    .featured-post__body { padding: 1.5rem; }
    .featured-post__title { font-size: 1.25rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-section-head { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .blog-newsletter__inner { flex-direction: column; text-align: center; }
    .blog-newsletter__actions { justify-content: center; }
}

@media (max-width: 640px) {
  .contact-map--wide iframe {
    height: 340px;
  }
}

/* ═══════════════════════════════════════════════════════════
   BLOG SINGLE
════════════════════════════════════════════════════════════ */
.post-hero { min-height:420px;background:var(--navy);display:flex;align-items:flex-end;position:relative;padding-top:100px; }
.post-hero { background:var(--navy) var(--hero-bg) center/cover no-repeat; }
.post-hero__overlay { position:absolute;inset:0;background:linear-gradient(0deg,rgba(7,25,37,.85) 0%,rgba(7,25,37,.25) 100%); }
.post-hero__inner { position:relative;z-index:2;padding-bottom:2.5rem;width:100%; }
.post-hero__cat { color:var(--gold);font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;margin-bottom:.75rem;display:inline-block;text-decoration:none; }
.post-hero__title { font-size:clamp(1.5rem,3.5vw,2.5rem);color:#fff;margin-bottom:1rem;max-width:780px;line-height:1.25; }
.post-hero__meta { color:rgba(255,255,255,.65);font-size:.82rem;display:flex;gap:.5rem;flex-wrap:wrap; }

.post-layout { display:grid;grid-template-columns:1fr 320px;gap:3rem;padding-top:3rem;padding-bottom:3rem; }
.post-content { min-width:0; }
.post-sidebar { display:flex;flex-direction:column;gap:2rem; }

.post-tags { display:flex;flex-wrap:wrap;gap:.5rem;margin:2rem 0; }
.tag-pill { background:var(--ivory);color:var(--navy);font-size:.78rem;padding:.25rem .75rem;border-radius:20px;text-decoration:none;transition:background .2s; }
.tag-pill:hover { background:var(--gold);color:#fff; }

.post-share { display:flex;align-items:center;gap:.75rem;margin-top:2rem;padding-top:2rem;border-top:1px solid var(--ivory2);font-size:.9rem; }
.share-btn { padding:.4rem 1rem;border-radius:6px;font-size:.8rem;font-weight:600;text-decoration:none; }
.share-btn--fb { background:#1877f2;color:#fff; }
.share-btn--tw { background:#1da1f2;color:#fff; }

.sidebar-widget { background:#fff;border-radius:16px;padding:1.5rem;box-shadow:0 4px 20px rgba(7,25,37,.07); }
.sidebar-widget__title { font-size:1rem;color:var(--navy);margin-bottom:1rem;padding-bottom:.75rem;border-bottom:2px solid var(--ivory2); }
.sidebar-posts { list-style:none;display:flex;flex-direction:column;gap:.75rem; }
.sidebar-post { display:flex;gap:.75rem;text-decoration:none; }
.sidebar-post img { width:64px;height:48px;object-fit:cover;border-radius:6px;flex-shrink:0; }
.sidebar-post__title { font-size:.82rem;color:var(--navy);line-height:1.35;display:block; }
.sidebar-post__date { font-size:.72rem;color:var(--muted);display:block;margin-top:.2rem; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════ */
.contact-layout { display:grid;grid-template-columns:1fr 1fr;gap:3rem;padding-top:1rem; }
.contact-info__title,.contact-form-card__title { font-size:1.5rem;color:var(--navy);margin-bottom:1.5rem; }
.contact-info__cards { display:flex;flex-direction:column;gap:1rem;margin-bottom:2rem; }
.contact-card { display:flex;align-items:flex-start;gap:1rem;background:var(--ivory);border-radius:12px;padding:1.25rem; }
.contact-card__icon { font-size:1.5rem;flex-shrink:0; }
.contact-card__val { display:block;color:var(--navy);font-weight:600;text-decoration:none;margin-top:.2rem; }
.contact-card__val--big { font-size:1.2rem;color:var(--gold); }
.contact-card__note { font-size:.78rem;color:var(--muted);display:block;margin-top:.2rem; }
.contact-map { border-radius:12px;overflow:hidden; }
.contact-map--wide {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(7,25,37,.08);
}
.contact-map--wide iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}
.contact-form-card { background:#fff;border-radius:16px;box-shadow:var(--shadow);padding:2.5rem;border-top:3px solid var(--gold); }

/* ═══════════════════════════════════════════════════════════
   KÝ GỬI PAGE
════════════════════════════════════════════════════════════ */
.benefits-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem; }
.benefit-card { background:#fff;border-radius:16px;padding:1.75rem;box-shadow:0 4px 20px rgba(7,25,37,.07);text-align:center; }
.benefit-card__icon { font-size:2rem;display:block;margin-bottom:1rem; }
.benefit-card h3 { font-size:1rem;color:var(--navy);margin-bottom:.5rem; }
.benefit-card p { font-size:.85rem;color:var(--muted); }

.ky-gui-layout { display:grid;grid-template-columns:1fr 360px;gap:3rem;align-items:start; }
.ky-gui-steps { background:var(--ivory);border-radius:16px;padding:1.75rem;margin-bottom:1.5rem; }
.ky-gui-steps h3 { font-size:1rem;color:var(--navy);margin-bottom:1.25rem; }
.ky-gui-step { display:flex;align-items:center;gap:1rem;padding:.6rem 0;border-bottom:1px solid var(--ivory2);font-size:.88rem; }
.ky-gui-step:last-child { border-bottom:none; }
.ky-gui-step__num { font-weight:800;color:var(--gold);font-size:.9rem;min-width:24px; }
.ky-gui-cta { background:var(--navy);border-radius:12px;padding:1.5rem;text-align:center;color:rgba(255,255,255,.85); }
.ky-gui-cta p { margin-bottom:1rem; }

/* ═══════════════════════════════════════════════════════════
   ABOUT / GIỚI THIỆU
════════════════════════════════════════════════════════════ */
.about-intro { display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center; }
.about-intro__stats { display:grid;grid-template-columns:1fr 1fr;gap:1rem; }
.about-stat { background:var(--navy);color:#fff;border-radius:16px;padding:1.5rem;text-align:center; }
.about-stat__num { font-size:2.2rem;color:var(--gold);font-family:var(--font-display);display:block;margin-bottom:.25rem; }
.values-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem; }
.value-card { background:#fff;border-radius:16px;padding:1.75rem;box-shadow:0 4px 20px rgba(7,25,37,.07); }
.value-card__icon { font-size:1.8rem;display:block;margin-bottom:1rem; }
.value-card h3 { font-size:1rem;color:var(--navy);margin-bottom:.5rem; }
.value-card p { font-size:.85rem;color:var(--muted); }
.experts-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem; }
.expert-card { background:#fff;border-radius:16px;padding:1.75rem;box-shadow:0 4px 20px rgba(7,25,37,.07);text-align:center; }
.expert-card__avatar { width:80px;height:80px;margin:0 auto 1rem;border-radius:50%;overflow:hidden; }
.expert-card__avatar img { width:100%;height:100%;object-fit:cover; }
.expert-card__initials { width:80px;height:80px;background:var(--navy);color:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2rem;font-weight:700;margin:0 auto; }
.expert-card__name { font-size:1.05rem;color:var(--navy);margin-bottom:.25rem; }
.expert-card__pos { font-size:.8rem;color:var(--muted);margin-bottom:.25rem; }
.expert-card__area { font-size:.8rem;margin-bottom:.5rem; }
.expert-card__exp { font-size:.78rem;color:var(--muted);margin-bottom:.75rem; }
.expert-card__phone { color:var(--gold);font-weight:600;text-decoration:none;font-size:.88rem; }

/* ═══════════════════════════════════════════════════════════
   QUY TRÌNH
════════════════════════════════════════════════════════════ */
.process-timeline { display:flex;flex-direction:column;gap:0;max-width:800px;margin:auto; }
.process-step { display:flex;gap:2rem;align-items:flex-start;padding:2rem 0;border-bottom:1px solid var(--ivory2);position:relative; }
.process-step:last-child { border-bottom:none; }
.process-step__marker { display:flex;flex-direction:column;align-items:center;flex-shrink:0;width:56px; }
.process-step__icon { font-size:1.8rem;display:block;margin-bottom:.5rem; }
.process-step__num { font-size:.7rem;font-weight:800;color:var(--gold);letter-spacing:.1em; }
.process-step__body h3 { font-size:1.15rem;color:var(--navy);margin-bottom:.5rem; }
.process-step__body p { color:var(--muted);font-size:.9rem;line-height:1.7;margin-bottom:.75rem; }
.process-step__time { font-size:.78rem;color:var(--gold);font-weight:600; }

/* ═══════════════════════════════════════════════════════════
   PHÁP LÝ PAGE
════════════════════════════════════════════════════════════ */
.legal-cards { display:flex;flex-direction:column;gap:1.5rem;margin:1.5rem 0 2rem; }
.legal-card { border-radius:12px;padding:1.5rem;border-left:4px solid; }
.legal-card--green { background:#f0fdf4;border-color:#22c55e; }
.legal-card--yellow { background:#fefce8;border-color:#eab308; }
.legal-card--blue { background:#eff6ff;border-color:#3b82f6; }
.legal-card h3 { font-size:1rem;margin-bottom:.75rem; }
.legal-card ul { padding-left:1.25rem;display:flex;flex-direction:column;gap:.35rem;font-size:.88rem;color:var(--muted); }

.legal-checklist { display:flex;flex-direction:column;gap:.5rem;margin:1.5rem 0 2rem; }
.checklist-item { display:flex;align-items:center;gap:.75rem;padding:.6rem 1rem;background:var(--ivory);border-radius:8px;font-size:.88rem;cursor:pointer; }
.checklist-item input { width:16px;height:16px;cursor:pointer; }

.legal-cta-box { background:linear-gradient(135deg,var(--navy),var(--navy2));color:#fff;border-radius:16px;padding:2rem;margin-top:3rem;text-align:center; }
.legal-cta-box h3 { color:#fff;margin-bottom:.75rem; }
.legal-cta-box p { opacity:.85;margin-bottom:1.5rem; }

/* ═══════════════════════════════════════════════════════════
   HỢP TÁC PAGE
════════════════════════════════════════════════════════════ */
.collab-layout { display:grid;grid-template-columns:1fr 400px;gap:3rem;align-items:start; }
.collab-benefits { display:flex;flex-direction:column;gap:1rem;margin:1.5rem 0 2rem; }
.collab-benefit { display:flex;align-items:flex-start;gap:1rem;background:var(--ivory);border-radius:12px;padding:1.25rem; }
.collab-benefit > span { font-size:1.5rem;flex-shrink:0; }
.collab-benefit strong { color:var(--navy);display:block;margin-bottom:.25rem; }
.collab-benefit p { font-size:.85rem;color:var(--muted);margin:0; }
.collab-form-card { background:#fff;border-radius:16px;box-shadow:var(--shadow);padding:2rem;border-top:3px solid var(--gold);position:sticky;top:calc(var(--header-h) + 1.5rem); }
.collab-form-card h3 { font-size:1.2rem;color:var(--navy);margin-bottom:.5rem; }
.collab-hotline { margin-top:1.5rem;text-align:center;font-size:.85rem;color:var(--muted); }
.collab-hotline p { margin-bottom:.75rem; }

/* ═══════════════════════════════════════════════════════════
   CẢNH BÁO PAGE
════════════════════════════════════════════════════════════ */
.page-hero--warning { background:linear-gradient(135deg,#7c2d12,#991b1b); }
.warning-box { background:#fef2f2;border:1px solid #fca5a5;border-left:4px solid #ef4444;border-radius:10px;padding:1.25rem 1.5rem;margin-bottom:2rem;font-size:.9rem; }

/* ═══════════════════════════════════════════════════════════
   PROJECT CARD — COMPARE BUTTON
════════════════════════════════════════════════════════════ */
.project-card__actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ============================================================
   PROJECT ARCHIVE - PREMIUM 2026
   ============================================================ */
.archive-du-an {
  background:
    linear-gradient(180deg, #071925 0, #071925 320px, var(--ivory) 320px, var(--ivory) 100%);
}
.archive-du-an .archive-hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(115deg, rgba(7, 25, 37, .96) 0%, rgba(7, 25, 37, .86) 45%, rgba(7, 25, 37, .66) 100%),
    url('../images/hero-datnenduan-luxury-real-estate.png') center/cover no-repeat;
}
.archive-du-an .archive-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(0deg, var(--ivory) 0%, rgba(247, 243, 234, 0) 100%);
  pointer-events: none;
}
.archive-du-an .archive-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: end;
}
.archive-du-an .breadcrumb {
  color: rgba(255, 255, 255, .66);
  margin-bottom: 24px;
}
.archive-du-an .breadcrumb a { color: var(--gold2); }
.archive-hero__eyebrow,
.archive-results__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.archive-hero__eyebrow::before,
.archive-results__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.archive-du-an .archive-hero__title {
  max-width: 850px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: .98;
  letter-spacing: 0;
  margin: 0 0 22px;
}
.archive-du-an .archive-hero__desc {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}
.archive-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.archive-hero__chips a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(241, 209, 138, .44);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201,154,69,.22), rgba(255,255,255,.08));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 24px rgba(0,0,0,.1);
  transition: transform .2s, color .2s, background .2s, border-color .2s, box-shadow .2s;
}
.archive-hero__chips a:hover {
  color: var(--ink);
  background: linear-gradient(135deg, #e7b348, #f4d487);
  border-color: #f4d487;
  box-shadow: 0 14px 30px rgba(201,154,69,.24);
  transform: translateY(-2px);
}
.archive-hero__panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(241, 209, 138, .28);
  border-radius: 8px;
  background: rgba(241, 209, 138, .28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}
.archive-hero__panel div {
  padding: 22px 24px;
  background: rgba(7, 25, 37, .72);
  backdrop-filter: blur(16px);
}
.archive-hero__panel span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.archive-hero__panel strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
}
.archive-du-an .archive-filter {
  position: relative;
  z-index: 4;
  margin-top: -36px;
  background: transparent;
  border-bottom: 0;
}
.archive-du-an .filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(7, 25, 37, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(7, 25, 37, .13);
  backdrop-filter: blur(18px);
}
.archive-du-an .filter-bar__group {
  min-width: 0;
  gap: 8px;
}
.archive-du-an .filter-bar__label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}
.archive-du-an .filter-bar__select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(7, 25, 37, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #fbf8f0 100%);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}
.archive-du-an .filter-bar__select:focus {
  outline: 2px solid rgba(201, 154, 69, .26);
  border-color: var(--gold);
}
.archive-du-an .filter-bar__btn {
  height: 50px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(201, 154, 69, .25);
}
.archive-du-an .filter-bar__reset {
  grid-column: 1 / -1;
  justify-self: end;
  color: var(--gold);
  font-weight: 750;
  text-decoration: none;
}
.archive-du-an .archive-results.section {
  padding-top: 54px;
  background: var(--ivory);
}
.archive-results__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.archive-results__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}
.archive-du-an .archive-results__count {
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(7, 25, 37, .08);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.archive-du-an .archive-results__count strong { color: var(--gold); }
.archive-du-an .projects-grid {
  gap: 22px;
}
.archive-du-an .project-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(7, 25, 37, .08);
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(201, 154, 69, .32), rgba(14, 58, 84, .08)) border-box;
  box-shadow: 0 18px 45px rgba(7, 25, 37, .08);
  overflow: hidden;
}
.archive-du-an .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(7, 25, 37, .16);
}
.archive-du-an .project-card__thumb-wrap {
  aspect-ratio: 16 / 10;
  background: var(--ink);
}
.archive-du-an .project-card__thumb-wrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(7, 25, 37, .78), transparent);
  pointer-events: none;
}
.archive-du-an .project-card__code {
  top: 12px;
  left: 12px;
  border: 1px solid rgba(241, 209, 138, .38);
  border-radius: 999px;
  background: rgba(7, 25, 37, .76);
  color: var(--gold2);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
  backdrop-filter: blur(10px);
}
.archive-du-an .sp-badge,
.archive-du-an .project-card .sp-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.archive-du-an .project-card__body {
  padding: 20px;
}
.archive-du-an .project-card__area {
  min-height: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.archive-du-an .project-card__title {
  min-height: 58px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
}
.archive-du-an .project-card__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.archive-du-an .project-card__meta-item {
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(7, 25, 37, .08);
}
.archive-du-an .project-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.archive-du-an .project-card__meta-item strong {
  max-width: 58%;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}
.archive-du-an .project-card__price {
  color: var(--gold);
  font-size: 17px;
}
.archive-du-an .project-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.archive-du-an .project-card__cta {
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
}
.archive-du-an .dnd-compare-btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0;
}
.archive-du-an .dnd-compare-btn svg { margin: 0; }
.archive-du-an .archive-pagination .page-numbers {
  border-radius: 8px;
  background: #fff;
}
.archive-du-an .archive-pagination .page-numbers.current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

@media (max-width: 1100px) {
  .archive-du-an .archive-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .archive-hero__panel {
    grid-template-columns: repeat(3, 1fr);
  }
  .archive-du-an .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .archive-du-an {
    background: var(--ivory);
  }
  .archive-du-an .archive-hero {
    padding: 104px 0 70px;
  }
  .archive-du-an .archive-hero__title {
    font-size: 42px;
  }
  .archive-du-an .archive-hero__desc {
    font-size: 15px;
  }
  .archive-hero__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .archive-hero__chips a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .archive-hero__panel {
    grid-template-columns: 1fr;
  }
  .archive-hero__panel div {
    padding: 16px 18px;
  }
  .archive-hero__panel strong {
    font-size: 30px;
  }
  .archive-du-an .archive-filter {
    margin-top: -28px;
  }
  .archive-du-an .filter-bar {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .archive-du-an .filter-bar__group {
    min-width: 100%;
  }
  .archive-du-an .filter-bar__btn {
    width: 100%;
  }
  .archive-results__head {
    display: block;
  }
  .archive-du-an .archive-results__count {
    display: inline-flex;
    margin-top: 14px;
  }
  .archive-du-an .project-card__title {
    min-height: 0;
  }
}
.btn--icon { display: inline-flex; align-items: center; gap: 5px; }
.dnd-compare-btn { color: var(--muted); border-color: var(--border); }
.dnd-compare-btn.active { color: var(--gold); border-color: var(--gold); background: rgba(201,154,69,.08); }

/* ═══════════════════════════════════════════════════════════
   COMPARE FLOATING BAR
════════════════════════════════════════════════════════════ */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--ink);
  border-top: 3px solid var(--gold);
  padding: 14px 0;
  box-shadow: 0 -8px 40px rgba(7,25,37,.25);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.compare-bar:not([hidden]) { transform: translateY(0); }
.compare-bar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.compare-bar__items { display: flex; gap: 12px; flex: 1; min-width: 0; }
.compare-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 6px 10px 6px 6px;
  max-width: 180px;
}
.compare-bar-item img { width: 40px; height: 32px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.compare-bar-item__name { font-size: 12px; color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100px; }
.compare-bar-item__remove { background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; font-size: 14px; padding: 0 0 0 4px; flex-shrink: 0; }
.compare-bar-item__remove:hover { color: #fff; }
.compare-bar-slot {
  width: 180px;
  height: 52px;
  border: 1.5px dashed rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: 12px;
}
.compare-bar__actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.compare-bar__clear { background: none; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7); padding: 7px 14px; border-radius: 8px; cursor: pointer; font-size: 13px; transition: all .2s; font-family: inherit; }
.compare-bar__clear:hover { border-color: #fff; color: #fff; }

/* ═══════════════════════════════════════════════════════════
   COMPARE PAGE
════════════════════════════════════════════════════════════ */
.compare-hero { background: linear-gradient(135deg, var(--ink), var(--navy2)); padding: calc(var(--header-h, 80px) + 30px) 0 40px; }
.compare-hero__title { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 8px; }
.compare-hero__sub { color: rgba(255,255,255,.7); font-size: 15px; }

.compare-empty { text-align: center; padding: 60px 0; }
.compare-empty h2 { font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.compare-empty p { color: var(--muted); }

.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border2);
  vertical-align: middle;
}
.compare-table__label-col { width: 160px; background: var(--ivory); font-size: 13px; font-weight: 700; color: var(--ink); position: sticky; left: 0; z-index: 2; }
.compare-table__label { background: var(--ivory); font-size: 13px; font-weight: 600; color: var(--ink); position: sticky; left: 0; }
.compare-table__proj-col { min-width: 200px; }
.compare-table__val { font-size: 14px; color: var(--text2); font-weight: 500; }
.compare-empty-val { color: var(--muted2); }
.compare-table__cta-row td { padding-top: 20px; padding-bottom: 20px; border-bottom: none; }

.compare-proj-thumb { position: relative; margin-bottom: 10px; }
.compare-proj-thumb img { width: 100%; height: 130px; object-fit: cover; border-radius: 12px; }
.compare-remove-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  transition: background .2s;
}
.compare-remove-btn:hover { background: #c53030; }
.compare-proj-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.compare-proj-name a:hover { color: var(--gold); }

.compare-add-col { text-align: center; }
.compare-add-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border: 2px dashed var(--border);
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s;
  font-size: 13px;
}
.compare-add-btn:hover { border-color: var(--gold); color: var(--gold); }
.compare-add-icon { font-size: 2rem; font-weight: 300; line-height: 1; }

/* ═══════════════════════════════════════════════════════════
   MÁY TÍNH TÀI CHÍNH
════════════════════════════════════════════════════════════ */
.dnd-calc {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border2);
  box-shadow: 0 8px 40px rgba(7,25,37,.08);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.dnd-calc__head { padding: 28px 32px 0; }
.dnd-calc__title { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.dnd-calc__subtitle { font-size: 14px; color: var(--muted); margin: 0; }

.dnd-calc__tabs { display: flex; gap: 0; padding: 20px 32px 0; border-bottom: 2px solid var(--border2); }
.dnd-calc__tab {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.dnd-calc__tab.active, .dnd-calc__tab:hover { color: var(--ink); }
.dnd-calc__tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.dnd-calc__panel { display: none; padding: 28px 32px; }
.dnd-calc__panel.active { display: block; }

.dnd-calc__inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.dnd-calc__group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.dnd-calc__input-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--ivory); margin-bottom: 8px; }
.dnd-calc__input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  font-family: inherit;
}
.dnd-calc__unit { padding: 0 12px; font-size: 13px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.dnd-calc__range {
  width: 100%;
  accent-color: var(--gold);
  height: 4px;
  cursor: pointer;
}

.dnd-calc__results { background: var(--ivory); border-radius: 16px; padding: 24px; }
.dnd-calc__result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dnd-calc__result-box { background: #fff; border-radius: 12px; padding: 16px; border: 1px solid var(--border2); }
.dnd-calc__result-box--highlight { background: linear-gradient(135deg, var(--ink), var(--navy2)); border: none; }
.dnd-calc__result-box--highlight .dnd-calc__result-label { color: rgba(255,255,255,.7); }
.dnd-calc__result-box--highlight .dnd-calc__result-val { color: var(--gold); }
.dnd-calc__result-label { display: block; font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.dnd-calc__result-val { display: block; font-size: 1.4rem; font-weight: 800; color: var(--ink); font-family: var(--font-display); }

.dnd-calc__disclaimer { font-size: 12px; color: var(--muted2); padding: 0 32px 20px; margin: 0; font-style: italic; }

@media (max-width: 640px) {
  .dnd-calc__inputs { grid-template-columns: 1fr; }
  .dnd-calc__result-grid { grid-template-columns: 1fr; }
  .dnd-calc__head, .dnd-calc__tabs, .dnd-calc__panel { padding-left: 20px; padding-right: 20px; }
  .dnd-calc__tab { padding: 8px 12px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE CHUYÊN GIA
════════════════════════════════════════════════════════════ */
.expert-hero {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy2) 100%);
  padding: calc(var(--header-h, 80px) + 40px) 0 60px;
  overflow: hidden;
}
.expert-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,154,69,.15) 0%, transparent 60%);
  pointer-events: none;
}
.expert-hero .container { position: relative; z-index: 2; }
.expert-hero .breadcrumb { margin-bottom: 32px; }
.expert-hero__inner { display: flex; align-items: flex-start; gap: 40px; }
.expert-avatar-wrap { position: relative; flex-shrink: 0; }
.expert-avatar { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(201,154,69,.5); box-shadow: 0 0 0 8px rgba(255,255,255,.08); }
.expert-online-dot { position: absolute; bottom: 12px; right: 12px; width: 18px; height: 18px; border-radius: 50%; background: #22c55e; border: 3px solid var(--ink); }
.expert-hero__info { flex: 1; }
.expert-hero__info .eyebrow--light { color: var(--gold); margin-bottom: 10px; }
.expert-hero__name { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; line-height: 1.1; }
.expert-hero__position { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 10px; }
.expert-hero__area { display: flex; align-items: center; gap: 6px; color: var(--gold); font-size: 14px; font-weight: 600; margin-bottom: 28px; }
.expert-hero__stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.expert-stat b { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); font-family: var(--font-display); line-height: 1; margin-bottom: 4px; }
.expert-stat span { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; }
.expert-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn--zalo { background: #0068ff; color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.btn--zalo:hover { background: #0052cc; color: #fff; }

.expert-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.expert-main { display: flex; flex-direction: column; gap: 24px; }
.expert-sidebar { position: sticky; top: calc(var(--header-h, 80px) + 20px); display: flex; flex-direction: column; gap: 20px; }

.expert-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid var(--border2); box-shadow: 0 4px 20px rgba(7,25,37,.06); }
.expert-card__title { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--border2); }
.expert-bio { font-size: 15px; line-height: 1.85; color: var(--text2); }

.expert-strengths { display: flex; flex-direction: column; gap: 16px; }
.expert-strength-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: var(--ivory); border-radius: 12px; }
.expert-strength-icon { font-size: 1.6rem; flex-shrink: 0; width: 40px; text-align: center; }
.expert-strength-item strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.expert-strength-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }

.expert-contact-card { border-top: 3px solid var(--gold); }
.expert-contact-row { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--ivory); border-radius: 12px; margin-bottom: 10px; text-decoration: none; transition: var(--transition); }
a.expert-contact-row:hover { background: var(--ivory2); }
a.expert-contact-row--phone { border: 1.5px solid rgba(201,154,69,.3); }
.expert-contact-icon { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; color: var(--ink); flex-shrink: 0; }
.expert-contact-label { font-size: 11px; color: var(--muted); display: block; margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.expert-contact-value { font-size: 15px; font-weight: 700; color: var(--ink); }
.expert-cta-buttons { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }

.expert-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.expert-stat-box { text-align: center; background: var(--ivory); border-radius: 12px; padding: 14px 10px; }
.expert-stat-box b { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); font-family: var(--font-display); line-height: 1; margin-bottom: 4px; }
.expert-stat-box span { font-size: 11px; color: var(--muted); }

@media (max-width: 1020px) {
  .expert-layout { grid-template-columns: 1fr; }
  .expert-sidebar { position: static; }
  .expert-hero__inner { flex-direction: column; align-items: center; text-align: center; }
  .expert-hero__area, .expert-hero__stats, .expert-hero__cta { justify-content: center; }
}
@media (max-width: 640px) {
  .expert-avatar { width: 130px; height: 130px; }
}

/* ═══════════════════════════════════════════════════════════
   TAXONOMY — CHILD TERMS
════════════════════════════════════════════════════════════ */
.taxonomy-children { background:var(--ivory);padding:1.25rem 0;border-bottom:1px solid var(--ivory2); }
.tag-cloud { display:flex;flex-wrap:wrap;gap:.5rem; }
.tag-cloud__item { background:#fff;border:1.5px solid var(--ivory2);color:var(--navy);padding:.4rem 1rem;border-radius:20px;font-size:.85rem;text-decoration:none;transition:all .2s; }
.tag-cloud__item:hover { background:var(--navy);color:var(--gold);border-color:var(--navy); }

/* ═══════════════════════════════════════════════════════════
   EMPTY STATE
════════════════════════════════════════════════════════════ */
.empty-state { text-align:center;padding:5rem 2rem; }
.empty-state__icon { font-size:3rem;display:block;margin-bottom:1rem; }
.empty-state h3 { color:var(--navy);font-size:1.3rem;margin-bottom:.75rem; }
.empty-state p { color:var(--muted); }

/* ═══════════════════════════════════════════════════════════
   PAGE DEFAULT
════════════════════════════════════════════════════════════ */
.page-hero { background:var(--navy);padding:7rem 0 3rem; }
.page-hero__title { color:#fff;font-size:clamp(1.8rem,4vw,3rem);margin:.5rem 0 .75rem; }
.page-hero__sub { color:rgba(255,255,255,.75);max-width:600px; }
.prose--page,.prose--legal { line-height:1.85; }
.prose--page h2,.prose--legal h2 { font-size:1.4rem;color:var(--navy);margin:2.5rem 0 1rem;padding-bottom:.5rem;border-bottom:2px solid var(--ivory2); }
.prose--page ul,.prose--legal ul,.prose--page ol,.prose--legal ol { padding-left:1.5rem;display:flex;flex-direction:column;gap:.4rem;color:var(--muted); }

/* ═══════════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════════ */
.bg-navy { background:var(--navy); }
.bg-ivory { background:var(--ivory); }
.text-ivory { color:#fff; }
.text-gold { color:var(--gold); }
.text-muted { color:var(--muted); }
.text-center { text-align:center; }

/* section-pad = standard vertical section rhythm */
.section-pad { padding: 80px 0; }

/* Standalone .section-title (not inside .section-head) */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.section-title.text-ivory { color: #fff; }

/* prose — generic readable content wrapper */
.prose { max-width: 760px; }
.prose p { margin-bottom: 16px; line-height: 1.8; color: var(--text2); }
.prose h2 { font-size: 26px; margin: 30px 0 14px; color: var(--ink); }
.prose h3 { font-size: 20px; margin: 24px 0 10px; color: var(--ink); }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; line-height: 1.7; color: var(--text2); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TEMPLATES
════════════════════════════════════════════════════════════ */
@media (max-width:1100px) {
    .sp-layout { grid-template-columns:1fr;gap:2rem; }
    .sp-sidebar { display:none; }
    .post-layout { grid-template-columns:1fr; }
    .post-sidebar { display:none; }
    .contact-layout { grid-template-columns:1fr; }
    .contact-map--wide iframe { height:340px; }
    .about-intro { grid-template-columns:1fr; }
    .experts-grid { grid-template-columns:repeat(2,1fr); }
    .values-grid { grid-template-columns:repeat(2,1fr); }
    .collab-layout { grid-template-columns:1fr; }
    .ky-gui-layout { grid-template-columns:1fr; }
    .collab-form-card { position:static; }
}
@media (max-width:980px) {
    .projects-grid--3,.projects-grid--4 { grid-template-columns:repeat(2,1fr); }
    .news-grid--3 { grid-template-columns:repeat(2,1fr); }
    .benefits-grid { grid-template-columns:repeat(2,1fr); }
    .sp-quickinfo__grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:640px) {
    .projects-grid--3,.projects-grid--4,.news-grid--3 { grid-template-columns:1fr; }
    .benefits-grid,.values-grid { grid-template-columns:1fr; }
    .sp-quickinfo__grid { grid-template-columns:repeat(2,1fr); }
    .sp-hero__stats { gap:1rem; }
    .filter-bar { flex-direction:column; }
    .filter-bar__group { min-width:100%; }
    .about-intro__stats { grid-template-columns:1fr 1fr; }
    .experts-grid { grid-template-columns:1fr 1fr; }
}
/* Dat nen ky gui */
.archive-listings {
  background:
    linear-gradient(180deg, #071925 0, #071925 300px, var(--ivory) 300px, var(--ivory) 100%);
}
.listing-archive-hero {
  position: relative;
  padding: calc(var(--header-h, 80px) + 28px) 0 88px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7,25,37,.96) 0%, rgba(7,25,37,.88) 48%, rgba(14,58,84,.7) 100%),
    url('../images/hero-datnenduan-luxury-real-estate.png') center/cover no-repeat;
}
.listing-archive-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(247,244,237,.95));
  pointer-events: none;
}
.listing-archive-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.listing-archive-hero__copy { max-width: 760px; }
.listing-archive-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold2);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.listing-archive-hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold2);
}
.listing-archive-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.7vw, 5rem);
  line-height: .98;
  letter-spacing: 0;
}
.listing-archive-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.75;
}
.listing-archive-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.listing-archive-hero__panel {
  border: 1px solid rgba(241,209,138,.36);
  background: rgba(7,25,37,.66);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.listing-archive-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(241,209,138,.24);
}
.listing-archive-hero__stats div {
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid rgba(241,209,138,.18);
}
.listing-archive-hero__stats div:last-child { border-right: 0; }
.listing-archive-hero__stats span,
.listing-archive-hero__steps span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.listing-archive-hero__stats strong {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1;
}
.listing-archive-hero__steps { padding: 22px 24px 24px; }
.listing-archive-hero__steps ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.listing-archive-hero__steps li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  line-height: 1.45;
}
.listing-archive-hero__steps li::before {
  content: counter(list-item);
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}
.listing-archive-filter {
  position: relative;
  z-index: 2;
  margin-top: -50px;
}
.listing-filter-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 20px;
  border: 1px solid rgba(7,25,37,.08);
  background: #fff;
  box-shadow: 0 22px 70px rgba(7,25,37,.12);
}
.listing-filter-bar label {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.listing-filter-bar label span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.listing-filter-bar select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1.5px solid var(--ivory2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}
.listing-filter-bar select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,154,69,.14);
}
.listing-filter-bar .btn { min-height: 50px; }
.listing-filter-bar__reset {
  align-self: center;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}
.archive-listings .archive-results { padding-top: 60px; }
.archive-listings .archive-results__head {
  align-items: flex-end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7,25,37,.1);
}
.listings-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.home-listings-section{background:#fff}
.home-listings-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;align-items:stretch}
.home-listings-grid--count-1{grid-template-columns:minmax(0,420px);justify-content:center}
.home-listings-grid--count-2{grid-template-columns:repeat(2,minmax(0,360px));justify-content:center}
.home-listings-grid--count-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.home-listings-grid--count-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.home-listings-grid .listing-public-card__body{padding:16px}
.home-listings-grid .listing-public-card__body h3{font-size:17px;line-height:1.35}
.home-listings-grid .listing-public-card__price{font-size:18px}
.home-listings-grid .listing-public-card__facts{grid-template-columns:1fr}
.home-listings-grid .listing-public-card__address,
.home-listings-grid .listing-public-card__project,
.home-listings-grid .listing-public-card__author{font-size:12px}
.home-listings-actions{display:flex;gap:12px;justify-content:center;align-items:center;flex-wrap:wrap;margin-top:36px}
@media (max-width:1100px){.home-listings-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:560px){.home-listings-grid{grid-template-columns:1fr}.home-listings-actions .btn{width:100%;justify-content:center}}
.listings-grid--compact{grid-template-columns:repeat(2,minmax(0,1fr))}
.listing-public-card{
  position: relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(7,25,37,.08);
  border-radius:8px;
  background:#fff;
  box-shadow:0 14px 38px rgba(7,25,37,.08);
  transition:transform .25s, box-shadow .25s, border-color .25s;
}
.listing-public-card:hover{
  transform:translateY(-5px);
  border-color:rgba(201,154,69,.32);
  box-shadow:0 26px 64px rgba(7,25,37,.14);
}
.listing-public-card__thumb{
  position:relative;
  display:block;
  aspect-ratio:16/10;
  background:#eef3f4;
  overflow:hidden;
}
.listing-public-card__thumb::after{
  content:'';
  position:absolute;
  inset:auto 0 0;
  height:58%;
  background:linear-gradient(0deg,rgba(7,25,37,.82),transparent);
  pointer-events:none;
}
.listing-public-card__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}
.listing-public-card:hover .listing-public-card__thumb img{transform:scale(1.05)}
.listing-public-card__badge{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(7,25,37,.76);
  color:var(--gold2);
  font-size:10px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.05em;
  backdrop-filter:blur(10px);
}
.listing-public-card__price{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:2;
  color:#fff;
  font-size:22px;
  font-weight:900;
  line-height:1.1;
}
.listing-public-card__body{
  padding:18px 20px 20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:0;
  flex:1;
}
.listing-public-card__body h3{
  margin:0;
  color:var(--ink);
  font-size:20px;
  line-height:1.32;
}
.listing-public-card__body h3 a{color:inherit;text-decoration:none}
.listing-public-card__body h3 a:hover{color:var(--gold)}
.listing-public-card__meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
}
.listing-public-card__meta span{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:4px 9px;
  border-radius:999px;
  background:rgba(201,154,69,.1);
}
.listing-public-card__facts{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.listing-public-card__facts div{
  min-width:0;
  padding:10px;
  border:1px solid rgba(7,25,37,.08);
  border-radius:8px;
  background:#fbfaf7;
}
.listing-public-card__facts span{
  display:block;
  margin-bottom:4px;
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
}
.listing-public-card__facts strong{
  display:block;
  color:var(--ink);
  font-size:14px;
  line-height:1.3;
  word-break:break-word;
}
.listing-public-card__address,
.listing-public-card__project,
.listing-public-card__author{margin:0;color:var(--muted);font-size:13px;line-height:1.55}
.listing-public-card__address{color:var(--ink);font-weight:700}
.listing-public-card__project{padding-top:2px}
.listing-public-card__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
  padding-top:14px;
  border-top:1px solid rgba(7,25,37,.08);
}
.listing-public-card__link{
  flex-shrink:0;
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  text-decoration:none;
}
.listing-public-card__link:hover{color:var(--navy)}
.single-listing{background:var(--ivory)}
.single-listing .listing-hero{
  position:relative;
  padding:calc(var(--header-h,80px) + 30px) 0 70px;
  overflow:hidden;
  background:
    radial-gradient(circle at 22% 42%, rgba(201,154,69,.28) 0, rgba(201,154,69,.12) 26%, transparent 56%),
    radial-gradient(circle at 84% 32%, rgba(64,120,144,.32) 0, transparent 46%),
    linear-gradient(115deg,rgba(7,25,37,.94) 0%,rgba(7,25,37,.82) 50%,rgba(14,58,84,.68) 100%),
    var(--listing-bg) center/cover no-repeat;
}
.single-listing .listing-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,25,37,.68), rgba(7,25,37,.28) 46%, rgba(7,25,37,.56)),
    var(--listing-bg) center/cover no-repeat;
  filter:blur(22px) saturate(1.08);
  transform:scale(1.08);
  opacity:.46;
  pointer-events:none;
}
.single-listing .listing-hero::after{
  content:'';
  position:absolute;
  inset:auto 0 0;
  height:170px;
  background:
    linear-gradient(180deg,transparent 0%, rgba(247,244,237,.42) 54%, var(--ivory) 100%);
  pointer-events:none;
}
.single-listing .listing-hero .container{
  position:relative;
  z-index:1;
}
.listing-hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);
  gap:32px;
  align-items:stretch;
}
.listing-gallery{min-width:0}
.listing-gallery{
  padding-top:6px;
}
.listing-gallery__main{
  position:relative;
  aspect-ratio:16/10;
  background:#e9eef0;
  border:1px solid rgba(241,209,138,.25);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.28);
}
.listing-gallery__main::after{
  content:'';
  position:absolute;
  inset:auto 0 0;
  height:38%;
  background:linear-gradient(0deg,rgba(7,25,37,.75),transparent);
  pointer-events:none;
}
.listing-gallery__main img{width:100%;height:100%;object-fit:cover;display:block}
.listing-gallery__badge{
  position:absolute;
  left:18px;
  top:18px;
  z-index:2;
  padding:8px 12px;
  border-radius:999px;
  background:var(--gold);
  color:var(--navy);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.listing-gallery__thumbs{display:grid;grid-template-columns:repeat(6,1fr);gap:8px;margin-top:10px}
.listing-gallery__thumbs div{min-width:0}
.listing-gallery__thumbs img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:6px;display:block;border:1px solid rgba(255,255,255,.18)}
.listing-gallery__context{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.listing-gallery__context div{
  min-width:0;
  padding:15px 16px;
  border:1px solid rgba(241,209,138,.22);
  border-radius:8px;
  background:linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  box-shadow:0 18px 46px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}
.listing-gallery__context span{
  display:block;
  margin-bottom:6px;
  color:var(--gold2);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.07em;
}
.listing-gallery__context strong{
  display:block;
  color:#fff;
  font-size:14px;
  line-height:1.35;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.listing-summary{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(circle at 88% 8%,rgba(201,154,69,.11),transparent 30%),
    linear-gradient(145deg,rgba(255,255,255,.98) 0%,rgba(250,248,243,.96) 56%,rgba(255,255,255,.94) 100%);
  border:1px solid rgba(241,209,138,.38);
  border-radius:8px;
  padding:24px 28px 22px;
  box-shadow:0 30px 86px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.86);
  display:flex;
  flex-direction:column;
  height:100%;
}
.listing-summary::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(90deg,rgba(201,154,69,.18),transparent 34%) 0 0/100% 1px no-repeat,
    linear-gradient(135deg,transparent 0 64%,rgba(7,25,37,.018) 64% 100%);
  pointer-events:none;
}
.listing-summary::after{
  content:'DATNENDUAN.COM';
  position:absolute;
  right:26px;
  bottom:96px;
  z-index:-1;
  color:rgba(7,25,37,.026);
  font-family:var(--font-display);
  font-size:38px;
  font-weight:950;
  letter-spacing:.1em;
  white-space:nowrap;
  pointer-events:none;
}
.listing-summary h1{
  color:var(--ink);
  font-family:var(--font-display);
  font-size:clamp(1.82rem,2.55vw,2.46rem);
  line-height:1.08;
  margin:8px 0 10px;
  letter-spacing:0;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.listing-summary__type{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  min-height:30px;
  padding:6px 12px;
  border-radius:999px;
  background:linear-gradient(135deg,rgba(201,154,69,.17),rgba(241,209,138,.13));
  border:1px solid rgba(201,154,69,.15);
  color:var(--gold);
  font-size:12px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.05em;
}
.listing-summary__location{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.listing-summary__price{
  color:var(--gold);
  font-size:clamp(2.1rem,3.15vw,3.28rem);
  font-weight:950;
  line-height:1;
  margin-bottom:20px;
}
.listing-summary__facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-bottom:22px}
.listing-summary__facts div{
  position:relative;
  border:1px solid rgba(7,25,37,.08);
  border-radius:8px;
  padding:14px 14px 13px;
  min-width:0;
  background:rgba(255,255,255,.82);
  box-shadow:0 12px 30px rgba(7,25,37,.045);
}
.listing-summary__facts div::before{
  content:'';
  position:absolute;
  left:14px;
  right:14px;
  top:0;
  height:2px;
  background:linear-gradient(90deg,rgba(201,154,69,.72),transparent);
  border-radius:999px;
}
.listing-summary__facts span{display:block;color:var(--muted);font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.05em;margin-bottom:7px}
.listing-summary__facts strong{display:block;color:var(--ink);font-size:14px;line-height:1.35;word-break:break-word}
.listing-summary__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin:auto 0 0;
  padding:12px;
  border:1px solid rgba(7,25,37,.06);
  border-radius:8px;
  background:linear-gradient(135deg,rgba(255,255,255,.72),rgba(241,209,138,.1));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.78),0 12px 28px rgba(7,25,37,.045);
}
.listing-summary__actions .btn{
  min-height:46px;
  padding:0 22px;
  box-sizing:border-box;
  min-width:0;
}
.listing-summary__actions .dnd-fav-btn{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 22px;
  box-sizing:border-box;
  min-width:0;
  border:2px solid var(--navy);
  border-radius:999px;
  background:#fff;
  color:var(--navy);
  font:inherit;
  font-size:.95rem;
  font-weight:850;
  line-height:1;
  text-decoration:none;
  cursor:pointer;
  transition:background .22s ease,color .22s ease,border-color .22s ease,box-shadow .22s ease,transform .22s ease;
}
.listing-summary__actions .dnd-fav-btn:hover,
.listing-summary__actions .dnd-fav-btn.is-saved{
  border-color:#d8466b;
  background:#fff5f8;
  color:#d8466b;
  box-shadow:0 10px 24px rgba(216,70,107,.14);
  transform:translateY(-1px);
}
.listing-summary__actions .dnd-fav-btn .fav-icon-on{display:none}
.listing-summary__actions .dnd-fav-btn.is-saved .fav-icon-off{display:none}
.listing-summary__actions .dnd-fav-btn.is-saved .fav-icon-on{display:inline-flex}
.listing-summary__actions .dnd-fav-btn svg{flex-shrink:0}
@media (min-width:1101px){
  .listing-summary__facts{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .listing-summary__facts div{
    min-height:94px;
  }
  .listing-summary__actions{
    display:grid;
    grid-template-columns:minmax(0,1.12fr) minmax(0,.6fr) minmax(0,.92fr) minmax(0,.72fr);
    gap:10px;
  }
  .listing-summary__actions .btn,
  .listing-summary__actions .dnd-fav-btn{
    width:100%;
    min-height:44px;
    padding:0 12px;
    font-size:.88rem;
    white-space:nowrap;
    justify-content:center;
  }
}
.single-listing .listing-detail{padding-top:18px}
.listing-detail__grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:28px;align-items:start}
.listing-detail__content{display:grid;gap:22px;min-width:0}
.listing-detail__side{min-width:0;position:sticky;top:calc(var(--header-h,80px) + 20px)}
.listing-section{border-radius:8px;border:1px solid rgba(7,25,37,.08);box-shadow:0 16px 44px rgba(7,25,37,.06)}
.listing-info-table{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.listing-info-table div{border:1px solid rgba(7,25,37,.08);border-radius:8px;padding:13px;background:#fbfaf7;min-width:0}
.listing-info-table span{display:block;color:var(--muted);font-size:12px;font-weight:800;text-transform:uppercase;margin-bottom:5px}
.listing-info-table strong{display:block;color:var(--ink);line-height:1.35;word-break:break-word}
.listing-location-line{
  padding:14px 16px;
  border-left:3px solid var(--gold);
  background:#fbfaf7;
  color:var(--ink);
  font-weight:800;
}
.listing-location-map{
  position:relative;
  margin:0 0 16px;
  border:1px solid rgba(201,154,69,.24);
  border-radius:8px;
  overflow:hidden;
  background:#071925;
  box-shadow:0 18px 48px rgba(7,25,37,.12);
}
.listing-location-map::after{
  content:'';
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,.18);
  pointer-events:none;
}
.listing-location-map img{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  height:auto;
  object-fit:cover;
}
.listing-duo{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.listing-mini-card{
  min-width:0;
  padding:22px;
  border:1px solid rgba(201,154,69,.24);
  border-radius:8px;
  background:#fff;
  box-shadow:0 14px 38px rgba(7,25,37,.06);
}
.listing-mini-card span{display:block;color:var(--muted);font-size:12px;font-weight:850;text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px}
.listing-mini-card strong{display:block;color:var(--navy);font-size:1.55rem;line-height:1.15}
.listing-mini-card p{color:var(--muted);margin-top:8px}
.related-project-card,.listing-empty--project{border:1px solid rgba(10,30,50,.1);border-radius:8px;padding:20px;background:#fff}
.single-listing .sp-price-card{
  border-radius:8px;
  border:1px solid rgba(201,154,69,.24);
  background:#fff;
  box-shadow:0 20px 56px rgba(7,25,37,.1);
  padding:24px;
  display:block;
  max-width:100%;
  min-width:0;
}
.listing-sidebar-map{
  position:relative;
  margin:-8px -8px 18px;
  border-radius:8px;
  overflow:hidden;
  background:#071925;
}
.listing-sidebar-map img{
  display:block;
  width:100%;
  aspect-ratio:16/10;
  height:auto;
  object-fit:cover;
}
.listing-sidebar-map::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(7,25,37,.28),transparent 56%);
  pointer-events:none;
}
.listing-sidebar__eyebrow{display:block;color:var(--gold);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px}
.listing-sidebar__note{margin:14px 0 18px;padding:14px;border-left:3px solid var(--gold);background:#fbfaf7;color:var(--muted);font-size:13px;line-height:1.6}
.dn-toc {
  background: linear-gradient(135deg,#fffaf0,#f6efe2);
  border: 1px solid rgba(201,154,69,.28);
  border-radius: 20px;
  padding: 20px 22px;
  margin: 24px 0;
  box-shadow: 0 14px 38px rgba(7,25,37,.06);
}
.dn-toc-title {
  font-weight: 800;
  color: #071925;
  margin-bottom: 10px;
}
.dn-toc ol {
  margin: 0;
  padding-left: 20px;
}
.dn-toc li {
  margin: 7px 0;
}
.dn-toc a {
  color: #0b344d;
  text-decoration: none;
  font-weight: 600;
}
.dn-toc a:hover {
  color: #c99a45;
}
.dn-article-figure {
  margin: 24px 0;
}
.dn-article-figure img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}
.dn-article-figure figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
}
.dn-cta-box {
  background: #071925;
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  margin: 28px 0;
}
.dn-cta-box a { color: #f1c36d; font-weight: 800; }
@media (max-width:900px){
  .listing-archive-hero__inner,
  .listing-filter-bar,
  .listings-grid,.listings-grid--compact,.listing-hero__grid,.listing-detail__grid{grid-template-columns:1fr}
  .listing-hero__grid{align-items:start}
  .listing-summary{height:auto}
  .listing-archive-hero__panel{max-width:none}
  .listing-archive-hero__stats{grid-template-columns:repeat(3,1fr)}
  .listing-gallery__context{grid-template-columns:1fr}
  .listing-detail__side{position:static}
  .listing-summary__facts,.listing-info-table,.listing-duo{grid-template-columns:1fr}
  .single-listing .sp-price-card{display:block;width:100%;box-sizing:border-box}
  .single-listing .sp-price-card .btn{width:100%;max-width:100%;justify-content:center;white-space:normal;text-align:center;line-height:1.25}
}
@media (max-width:560px){
  .listing-archive-hero{padding-top:calc(var(--header-h, 80px) + 24px)}
  .listing-archive-hero h1{font-size:2.35rem}
  .listing-archive-hero p{font-size:15px}
  .listing-archive-hero__actions .btn{width:100%;justify-content:center}
  .listing-archive-hero__stats{grid-template-columns:1fr}
  .listing-archive-hero__stats div{border-right:0;border-bottom:1px solid rgba(241,209,138,.18)}
  .listing-filter-bar{padding:16px}
  .listing-public-card__facts{grid-template-columns:1fr}
  .listing-public-card__footer{align-items:flex-start;flex-direction:column}
  .single-listing .listing-hero{padding-top:calc(var(--header-h,80px) + 24px)}
  .single-listing .listing-detail{padding-top:8px}
  .single-listing .sp-price-card{padding:16px}
  .listing-sidebar-map{margin:0 0 16px}
  .listing-sidebar__eyebrow{white-space:normal;line-height:1.35}
  .single-listing .sp-price-card h3{font-size:20px;line-height:1.25;margin-bottom:8px}
  .single-listing .sp-price-card p{margin-bottom:10px}
  .listing-sidebar__note{margin:12px 0 16px;padding:12px;font-size:12px}
  .listing-summary{padding:20px}
  .listing-summary__actions .btn,.listing-summary__actions .dnd-fav-btn{width:100%;justify-content:center}
  .listing-gallery__thumbs{grid-template-columns:repeat(3,1fr)}
}

/* Professional editorial single post */
.single-post--editorial {
  background:
    radial-gradient(circle at 12% 0%, rgba(201,154,69,.12), transparent 28%),
    linear-gradient(180deg,#fbf7ee 0%,#f7f1e6 48%,#ffffff 100%);
}
.article-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h, 86px) + 48px) 0 58px;
  background:
    linear-gradient(135deg,rgba(7,25,37,.98) 0%,rgba(8,35,54,.94) 58%,rgba(16,58,84,.9) 100%);
}
.article-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -44% 45%;
  height: 360px;
  background: radial-gradient(circle,rgba(241,209,138,.18),transparent 64%);
  pointer-events: none;
}
.article-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(360px,520px);
  gap: 42px;
  align-items: center;
}
.article-hero .breadcrumb,
.article-hero .breadcrumb a {
  color: rgba(255,255,255,.72);
}
.article-hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 18px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.article-hero__cat {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(241,209,138,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--gold2);
}
.article-hero__title {
  max-width: 880px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 46px;
  line-height: 1.14;
  letter-spacing: 0;
}
.article-hero__excerpt {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 22px;
}
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.article-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.article-hero__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16/10.5;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(241,209,138,.36);
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
}
.article-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(7,25,37,0) 45%,rgba(7,25,37,.28) 100%);
  pointer-events: none;
}
.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0,900px) 360px;
  gap: 34px;
  align-items: start;
  padding-top: 42px;
  padding-bottom: 72px;
}
.article-main {
  min-width: 0;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(201,154,69,.18);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(7,25,37,.08);
  padding: 42px 48px;
}
.article-body,
.article-main .prose {
  max-width: none;
}
.article-body {
  color: var(--text);
  font-size: 17px;
  line-height: 1.88;
}
.article-body > p:first-child {
  font-size: 19px;
  line-height: 1.85;
  color: #102d42;
}
.article-body p {
  margin-bottom: 18px;
  color: var(--text2);
}
.article-body h2 {
  position: relative;
  margin: 42px 0 16px;
  padding-top: 10px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: 0;
}
.article-body h2::before {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--gold),var(--gold2));
}
.article-body h3 {
  margin: 28px 0 12px;
  color: #0b344d;
  font-size: 22px;
  line-height: 1.3;
}
.article-body ul,
.article-body ol {
  display: grid;
  gap: 9px;
  margin: 14px 0 22px;
  padding-left: 22px;
  list-style: disc;
}
.article-body ol {
  list-style: decimal;
}
.article-body li {
  color: var(--text2);
  line-height: 1.75;
  padding-left: 4px;
}
.article-body a {
  color: #a87419;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(201,154,69,.35);
  text-underline-offset: 4px;
}
.article-body blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: #fff8e9;
  color: #17344a;
  font-weight: 600;
}
.article-body img {
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(7,25,37,.12);
}
.article-main .dn-toc {
  border-radius: 18px;
  padding: 22px 24px;
  margin: 28px 0 30px;
  background:
    linear-gradient(135deg,rgba(255,250,240,.98),rgba(246,239,226,.95)),
    radial-gradient(circle at 100% 0%,rgba(201,154,69,.12),transparent 42%);
}
.article-main .dn-toc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.article-main .dn-toc-title::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,154,69,.13);
}
.article-main .dn-toc ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  list-style: decimal;
}
.article-main .dn-toc li {
  margin: 0;
  padding-left: 4px;
}
.article-main .dn-article-figure {
  margin: 30px 0 34px;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(7,25,37,.12);
}
.article-main .dn-article-figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.article-main .dn-article-figure figcaption {
  padding: 12px 16px 14px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.article-main .dn-cta-box {
  background:
    linear-gradient(135deg,#071925,#103a54);
  border: 1px solid rgba(241,209,138,.28);
  border-radius: 20px;
  box-shadow: 0 22px 54px rgba(7,25,37,.16);
}
.article-sidebar {
  min-width: 0;
}
.article-sidebar__sticky {
  position: sticky;
  top: calc(var(--header-h, 86px) + 22px);
  display: grid;
  gap: 22px;
}
.article-sidebar .consult-sidebar,
.article-sidebar .sidebar-widget {
  border-radius: 20px;
  border: 1px solid rgba(201,154,69,.18);
  box-shadow: 0 18px 52px rgba(7,25,37,.09);
}
.article-sidebar .consult-sidebar {
  padding: 24px;
}
.article-sidebar .consult-sidebar__title,
.article-sidebar .sidebar-widget__title {
  font-size: 20px;
  line-height: 1.25;
}
.article-sidebar .consult-sidebar__expert {
  align-items: flex-start;
}
.article-sidebar .consult-sidebar__form .form-row {
  grid-template-columns: 1fr;
}
.article-sidebar .sidebar-widget {
  padding: 22px;
}
.article-sidebar .sidebar-posts {
  gap: 12px;
}
.article-sidebar .sidebar-post {
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: #fbf7ee;
}
.article-sidebar .sidebar-post:hover {
  background: #fff3d7;
}
.article-sidebar .sidebar-post img {
  width: 76px;
  height: 58px;
  border-radius: 10px;
}
.article-sidebar .sidebar-post__title {
  color: var(--ink);
  font-size: 13px;
}
.article-related {
  background: #fff;
}
@media (max-width: 1180px) {
  .article-hero__grid,
  .article-shell {
    grid-template-columns: 1fr;
  }
  .article-hero__media {
    max-width: 760px;
  }
  .article-sidebar__sticky {
    position: static;
  }
}
@media (max-width: 760px) {
  .article-hero {
    padding: calc(var(--header-h, 76px) + 28px) 0 34px;
  }
  .article-hero__grid {
    gap: 26px;
  }
  .article-hero__title {
    font-size: 34px;
  }
  .article-hero__excerpt {
    font-size: 16px;
  }
  .article-shell {
    padding-top: 26px;
    padding-bottom: 48px;
  }
  .article-main {
    padding: 28px 22px;
    border-radius: 18px;
  }
  .article-body {
    font-size: 16px;
  }
  .article-body > p:first-child {
    font-size: 17px;
  }
  .article-body h2 {
    font-size: 24px;
    margin-top: 34px;
  }
  .article-sidebar .consult-sidebar {
    display: none;
  }
}
@media (max-width: 520px) {
  .article-hero__title {
    font-size: 28px;
  }
  .article-hero__media {
    border-radius: 18px;
  }
  .article-main {
    padding: 24px 16px;
  }
  .article-main .dn-toc {
    padding: 18px 16px;
  }
  .post-share {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Privacy policy page */
.privacy-page { background: var(--ivory); }
.privacy-hero {
  overflow: hidden;
  padding: calc(var(--header-h, 80px) + 54px) 0 70px;
  background: linear-gradient(135deg, rgba(7,25,37,.98), rgba(13,47,70,.94));
  color: #fff;
}
.privacy-hero__grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 44px; align-items: end; }
.privacy-hero__copy { max-width: 820px; }
.privacy-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(241,209,138,.45);
  background: rgba(241,209,138,.1);
  color: var(--gold2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.privacy-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 1.03; margin: 18px 0; }
.privacy-hero p { max-width: 760px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.75; }
.privacy-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.privacy-summary {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(241,209,138,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
}
.privacy-summary div { padding: 18px 20px; background: rgba(255,255,255,.07); }
.privacy-summary span { display: block; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px; }
.privacy-summary strong { display: block; color: #fff; font-size: 15px; line-height: 1.35; }
.privacy-section { padding: 70px 0 90px; }
.privacy-layout { display: grid; grid-template-columns: 280px minmax(0, 920px); gap: 32px; align-items: start; justify-content: center; }
.privacy-toc {
  position: sticky;
  top: calc(var(--header-h, 80px) + 22px);
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(7,25,37,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7,25,37,.07);
}
.privacy-toc strong { color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.privacy-toc a { display: block; padding: 9px 10px; border-radius: 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.privacy-toc a:hover { background: rgba(201,154,69,.1); color: var(--gold); }
.privacy-content { display: grid; gap: 18px; min-width: 0; }
.privacy-note,
.privacy-card,
.privacy-contact-card { border: 1px solid rgba(7,25,37,.08); border-radius: 8px; background: #fff; box-shadow: 0 16px 44px rgba(7,25,37,.06); }
.privacy-note { padding: 18px 20px; color: var(--text2); border-left: 4px solid var(--gold); }
.privacy-note strong { color: var(--ink); }
.privacy-card { position: relative; padding: 28px 30px 30px; overflow: hidden; }
.privacy-card__num { position: absolute; top: 22px; right: 24px; color: rgba(201,154,69,.22); font-family: var(--font-display); font-size: 42px; font-weight: 950; line-height: 1; }
.privacy-card h2 { max-width: calc(100% - 66px); color: var(--ink); font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.2; margin-bottom: 14px; }
.privacy-card p { color: var(--text2); line-height: 1.8; margin-bottom: 12px; }
.privacy-card p:last-child { margin-bottom: 0; }
.privacy-card ul { display: grid; gap: 10px; margin-top: 14px; }
.privacy-card li { position: relative; padding-left: 24px; color: var(--text2); line-height: 1.7; }
.privacy-card li::before { content: ''; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,154,69,.12); }
.privacy-contact-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center; padding: 30px; background: linear-gradient(135deg, rgba(7,25,37,.98), rgba(13,47,70,.96)); color: #fff; }
.privacy-contact-card h2 { color: #fff; font-size: clamp(1.45rem, 2vw, 2rem); margin: 12px 0 10px; }
.privacy-contact-card p { max-width: 650px; color: rgba(255,255,255,.75); line-height: 1.75; }
.privacy-contact-card__actions { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }
.privacy-contact-card .btn { width: 100%; }
.privacy-contact-card .btn--outline-navy {
  border-color: rgba(255,255,255,.54);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.privacy-contact-card .btn--outline-navy:hover {
  border-color: var(--gold2);
  background: rgba(241,209,138,.14);
  color: var(--gold2);
}
@media (max-width: 980px) {
  .privacy-hero__grid,
  .privacy-layout,
  .privacy-contact-card { grid-template-columns: 1fr; }
  .privacy-summary { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .privacy-toc { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .privacy-toc strong { grid-column: 1 / -1; }
  .privacy-contact-card__actions { min-width: 0; flex-direction: row; flex-wrap: wrap; }
  .privacy-contact-card .btn { width: auto; }
}
@media (max-width: 560px) {
  .privacy-hero { padding: calc(var(--header-h, 80px) + 28px) 0 46px; }
  .privacy-hero p { font-size: 15px; }
  .privacy-hero__actions .btn { width: 100%; justify-content: center; }
  .privacy-summary,
  .privacy-toc { grid-template-columns: 1fr; }
  .privacy-section { padding: 38px 0 58px; }
  .privacy-card,
  .privacy-contact-card { padding: 20px; }
  .privacy-card h2 { max-width: none; padding-right: 52px; }
  .privacy-card__num { top: 18px; right: 18px; font-size: 34px; }
  .privacy-contact-card__actions { flex-direction: column; }
  .privacy-contact-card .btn { width: 100%; }
}

/* Final homepage guard: option changes must never squeeze the hero into a broken column. */
.home .hero-grid,
.front-page .hero-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
}
.home .hero-left,
.home .hero-right,
.front-page .hero-left,
.front-page .hero-right {
  min-width: 0;
}
.home .hero-left .heading-xl,
.front-page .hero-left .heading-xl {
  max-width: 780px;
  word-break: normal;
  overflow-wrap: normal;
}
.home .hero-form-card,
.front-page .hero-form-card {
  width: min(100%, 560px);
}
@media (max-width: 1100px) {
  .home .hero-grid,
  .front-page .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 820px;
    margin-inline: auto;
  }
  .home .hero-form-card,
  .front-page .hero-form-card {
    justify-self: start;
    max-width: 640px;
  }
}
