/* ============================================================
   HOMEPAGE — Vietnam Luxury Property
   Depends on: design-system.css, layout.css, components.css
   ============================================================ */

/* ── Shared Section Helpers ─────────────────────────────────────── */

.hp-section {
  padding: var(--sp-3xl) 0;
}

.hp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-2xl);
}

.hp-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--sp-sm);
}
.hp-label--light { color: var(--gold-primary); }

.hp-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}
.hp-title--white { color: var(--white); }
.hp-title--left  { text-align: left; }

.hp-subtitle {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin: 0;
}

/* ── HERO ───────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: #0a1810;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 20, 12, 0.88) 0%,
    rgba(5, 20, 12, 0.68) 50%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--sp-3xl) 0 var(--sp-2xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-md);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--sp-md);
  max-width: 700px;
}

.hero-title-gold {
  color: var(--gold-primary);
  display: block;
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: var(--sp-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-2xl);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .55);
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 0;
  text-decoration: none;
  transition: background var(--transition-base),
              border-color var(--transition-base),
              letter-spacing var(--transition-slow),
              box-shadow var(--transition-base);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .85);
  color: var(--white);
  letter-spacing: .1em;
}

/* ── HERO BUTTONS — góc bracket sang trọng ───────────────────── */
.btn.hero-btn {
  position: relative;
  border-radius: 0;
  overflow: visible;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .82rem;
  transition: background-color var(--transition-base),
              color            var(--transition-base),
              border-color     var(--transition-base),
              box-shadow       var(--transition-base),
              letter-spacing   var(--transition-slow);
}
.btn.hero-btn:hover { letter-spacing: .11em; }

/* Góc bracket — top-left & bottom-right */
.btn.hero-btn::before,
.btn.hero-btn::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  transition: width  var(--transition-base),
              height var(--transition-base),
              top    var(--transition-base),
              left   var(--transition-base),
              bottom var(--transition-base),
              right  var(--transition-base),
              opacity var(--transition-base);
  pointer-events: none;
}
.btn.hero-btn::before {
  top: -4px;
  left: -4px;
  border-top:  1.5px solid var(--gold-primary);
  border-left: 1.5px solid var(--gold-primary);
  opacity: .7;
}
.btn.hero-btn::after {
  bottom: -4px;
  right:  -4px;
  border-bottom: 1.5px solid var(--gold-primary);
  border-right:  1.5px solid var(--gold-primary);
  opacity: .7;
}
.btn.hero-btn:hover::before {
  top: -6px; left: -6px;
  width: 13px; height: 13px;
  opacity: 1;
}
.btn.hero-btn:hover::after {
  bottom: -6px; right: -6px;
  width: 13px; height: 13px;
  opacity: 1;
}

/* Nút vàng — Đặt lịch xem */
.hero-cta-primary.hero-btn {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--dark);
  box-shadow: 0 4px 22px rgba(212, 175, 55, .30);
}
.hero-cta-primary.hero-btn:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 6px 32px rgba(212, 175, 55, .50),
              inset 0 1px 0 rgba(255,255,255,.18);
}
.hero-cta-primary.hero-btn::before,
.hero-cta-primary.hero-btn::after {
  border-color: rgba(255,255,255,.6);
}
.hero-cta-primary.hero-btn:hover::before,
.hero-cta-primary.hero-btn:hover::after {
  border-color: rgba(255,255,255,.9);
}

/* Nút outline trắng — Khám phá dự án */
.btn-outline-white.hero-btn {
  box-shadow: inset 0 0 0 0 rgba(255,255,255,.06);
}
.btn-outline-white.hero-btn:hover {
  box-shadow: 0 4px 24px rgba(255,255,255,.12),
              inset 0 0 0 1px rgba(255,255,255,.10);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .18);
}

/* ── HIGHLIGHTS SLIDER ──────────────────────────────────────────── */

.hp-highlights {
  background: #0c1510;
  padding: var(--sp-3xl) 0;
}

/* ── Track: CSS grid stacking ── */
.hl-track { display: grid; }

.hl-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "img content"
    "nav nav";
  min-height: 520px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .48s cubic-bezier(.4,0,.2,1),
              transform .48s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.hl-img-col    { grid-area: img; }
.hl-content-col{ grid-area: content; }
.hl-slide .hl-nav-row { grid-area: nav; }
.hl-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hl-slide.is-leaving {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
}

/* ── Image column ── */
.hl-img-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.07);
}
.hl-img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0e2518 0%, #1c3824 100%);
  min-height: 320px;
}
.hl-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
  transition: transform 7s ease, opacity .48s ease;
}
.hl-img-wrap--contain img {
  object-fit: contain;
  opacity: 1;
  padding: var(--sp-md);
}
.hl-slide.is-active .hl-img-wrap img {
  transform: scale(1.05);
}
.hl-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 45%,
    rgba(8, 20, 12, .80) 100%);
  pointer-events: none;
}
.hl-img-foot {
  padding: var(--sp-md) var(--sp-lg);
  background: #0c1510;
  border-top: 1px solid rgba(212,175,55,.12);
}
.hl-img-num {
  display: block;
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hl-img-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
}
.hl-img-metric {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  margin-bottom: var(--sp-md);
}

/* Corner-bracket button */
.hl-img-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  text-decoration: none;
  overflow: visible;
  transition: background .22s, border-color .22s, letter-spacing .38s;
}
.hl-img-btn::before,
.hl-img-btn::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  transition: all .22s ease;
  pointer-events: none;
}
.hl-img-btn::before {
  top: -3px; left: -3px;
  border-top: 1.5px solid var(--gold-primary);
  border-left: 1.5px solid var(--gold-primary);
  opacity: .75;
}
.hl-img-btn::after {
  bottom: -3px; right: -3px;
  border-bottom: 1.5px solid var(--gold-primary);
  border-right: 1.5px solid var(--gold-primary);
  opacity: .75;
}
.hl-img-btn:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.55);
  color: var(--white);
  letter-spacing: .18em;
}
.hl-img-btn:hover::before { top: -5px; left: -5px; width: 11px; height: 11px; opacity: 1; }
.hl-img-btn:hover::after  { bottom: -5px; right: -5px; width: 11px; height: 11px; opacity: 1; }

/* ── Content column ── */
.hl-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-2xl) var(--sp-2xl) var(--sp-xl);
}
.hl-counter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--sp-lg);
}
.hl-counter-cur {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  letter-spacing: -.02em;
}
.hl-counter-bar {
  width: 44px;
  height: 1px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.hl-counter-total {
  font-size: .8rem;
  color: rgba(255,255,255,.28);
  font-weight: 600;
  letter-spacing: .1em;
}
.hl-title {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: var(--sp-md);
}
.hl-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.58);
  line-height: 1.85;
  margin-bottom: var(--sp-xl);
  max-width: 480px;
}
.hl-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: var(--sp-xl);
}
.hl-detail {
  font-size: .8rem;
  color: var(--white);
  padding: 12px 16px;
  background: #0c1510;
  border-left: 2px solid var(--gold-primary);
  line-height: 1.5;
  letter-spacing: .02em;
}

/* ── Navigation row ── */
.hl-nav-row {
  display: grid;
  grid-template-columns: 400px 1fr;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 0;
}
.hl-nav-img-spacer {
  border-right: 1px solid rgba(255,255,255,.07);
}
.hl-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-2xl);
}

/* Arrow buttons — square + corner brackets */
.hl-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  transition: background .2s, border-color .2s;
}
.hl-arrow::before,
.hl-arrow::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  transition: all .2s;
  pointer-events: none;
}
.hl-arrow::before { top: -3px; left: -3px; border-top: 1px solid var(--gold-primary); border-left: 1px solid var(--gold-primary); opacity: .6; }
.hl-arrow::after  { bottom: -3px; right: -3px; border-bottom: 1px solid var(--gold-primary); border-right: 1px solid var(--gold-primary); opacity: .6; }
.hl-arrow:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.55); }
.hl-arrow:hover::before { opacity: 1; top: -4px; left: -4px; width: 9px; height: 9px; }
.hl-arrow:hover::after  { opacity: 1; bottom: -4px; right: -4px; width: 9px; height: 9px; }
.hl-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* Dots — horizontal dashes */
.hl-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.hl-dot {
  width: 22px;
  height: 2px;
  padding: 0;
  background: rgba(255,255,255,.2);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background .25s, width .3s cubic-bezier(.4,0,.2,1);
}
.hl-dot.is-active {
  background: var(--gold-primary);
  width: 38px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hl-slide       { grid-template-columns: 320px 1fr; }
  .hl-slide .hl-nav-row { grid-template-columns: 320px 1fr; }
  .hl-content-col { padding: var(--sp-xl) var(--sp-xl) var(--sp-lg); }
}
@media (max-width: 768px) {
  .hl-slide {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  /* HTML source order: img-col → nav-row → content-col  → nav appears between image and content */
  .hl-slide .hl-nav-row {
    grid-area: unset;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
  }
  .hl-nav-img-spacer { display: none; }
  .hl-nav            { padding: var(--sp-sm) var(--sp-md); width: 100%; }
  .hl-img-wrap    { min-height: 240px; }
  .hl-content-col { padding: var(--sp-lg); }
  .hl-counter-cur { font-size: 1.8rem; }
  .hl-title       { font-size: 1.3rem; }
  .hl-details     { grid-template-columns: 1fr; }
}

/* ── CEO ────────────────────────────────────────────────────────── */

.hp-ceo {
  background: #f7f6f1;
}

.hp-title--dark { color: var(--dark); }

.ceo-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.ceo-image-frame {
  position: relative;
  background: #dedad2;
}

.ceo-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.ceo-image-badge {
  position: absolute;
  bottom: var(--sp-md);
  left: var(--sp-md);
  background: rgba(10, 24, 16, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  font-size: .72rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 0;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ceo-quote {
  font-size: 1rem;
  font-style: italic;
  color: #3a3830;
  line-height: 1.9;
  border-left: 2px solid var(--gold-primary);
  padding-left: var(--sp-md);
  margin: var(--sp-md) 0 var(--sp-lg);
}

.ceo-bio {
  margin-bottom: var(--sp-md);
}

.ceo-bio-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.ceo-bio-title {
  font-size: .82rem;
  color: #7a7670;
  margin-top: 4px;
  letter-spacing: .02em;
}

.ceo-credentials {
  display: flex;
  gap: var(--sp-xl);
  padding: var(--sp-md) 0;
  border-top: 1px solid #dedad2;
  border-bottom: 1px solid #dedad2;
  margin-bottom: var(--sp-lg);
}

.ceo-cred-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ceo-cred-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.ceo-cred-text {
  font-size: .68rem;
  color: #7a7670;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── CEO action row: button + socials ── */
.ceo-action-row {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

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

.ceo-social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #7a7670;
  border: 1px solid #d0ccc4;
  border-radius: 0;
  text-decoration: none;
  overflow: visible;
  transition: color .22s, border-color .22s, background .22s;
}
.ceo-social-link::before,
.ceo-social-link::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  transition: all .22s;
  pointer-events: none;
}
.ceo-social-link::before { top: -2px; left: -2px; border-top: 1px solid var(--gold-primary); border-left: 1px solid var(--gold-primary); opacity: 0; }
.ceo-social-link::after  { bottom: -2px; right: -2px; border-bottom: 1px solid var(--gold-primary); border-right: 1px solid var(--gold-primary); opacity: 0; }
.ceo-social-link:hover {
  color: var(--dark);
  border-color: var(--gold-primary);
  background: rgba(212,175,55,.06);
}
.ceo-social-link:hover::before,
.ceo-social-link:hover::after { opacity: 1; }

/* ── CEO consult button — corner bracket trên nền parchment ── */
.ceo-consult-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 1.5px solid #b8b2a8;
  border-radius: 0;
  text-decoration: none;
  overflow: visible;
  transition: background .25s, border-color .28s, color .25s, letter-spacing .4s;
  font-family: var(--font-base);
}
.ceo-consult-btn::before,
.ceo-consult-btn::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  transition: all .25s ease;
  pointer-events: none;
}
.ceo-consult-btn::before {
  top: -4px; left: -4px;
  border-top:  1.5px solid var(--gold-primary);
  border-left: 1.5px solid var(--gold-primary);
  opacity: .75;
}
.ceo-consult-btn::after {
  bottom: -4px; right: -4px;
  border-bottom: 1.5px solid var(--gold-primary);
  border-right:  1.5px solid var(--gold-primary);
  opacity: .75;
}
.ceo-consult-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  letter-spacing: .16em;
}
.ceo-consult-btn:hover::before { top: -6px; left: -6px; width: 13px; height: 13px; opacity: 1; border-color: var(--gold-primary); }
.ceo-consult-btn:hover::after  { bottom: -6px; right: -6px; width: 13px; height: 13px; opacity: 1; border-color: var(--gold-primary); }

/* ── WHY NOBLE CRYSTAL ──────────────────────────────────────────── */

.hp-why {
  background: #161612;
}

.hp-why .hp-label   { color: var(--gold-primary); }
.hp-why .hp-title   { color: var(--white); }
.hp-why .hp-subtitle{ color: rgba(255,255,255,.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-card {
  background: #1a1a16;
  padding: var(--sp-xl) var(--sp-lg);
  transition: background var(--transition-base);
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.why-card:hover {
  background: #212118;
  transform: none;
}

.why-card-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: var(--sp-sm);
  font-family: var(--font-base);
}

.why-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-xs);
  line-height: 1.35;
}

.why-card-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin: 0;
}

/* ── LATEST NEWS ────────────────────────────────────────────────── */

.hp-news {
  background: #f7f6f1;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.news-card {
  border-radius: 0;
  border: 1px solid #e8e6df;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.news-card-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 5/3;
  background: #e8e6df;
}

.news-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.news-card:hover .news-card-img-wrap img {
  transform: scale(1.04);
}

.news-card-body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-xs);
}

.news-card-meta {
  font-size: .75rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  flex: 1;
}
.news-card-title a {
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.news-card-title a:hover { color: var(--gold-dark); }

.news-card-excerpt {
  font-size: .875rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin: 0;
}

.news-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  margin-top: auto;
  padding-top: var(--sp-xs);
  border-top: 1px solid #e8e6df;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .22s, gap .3s;
}
.news-card-more:hover { color: var(--gold-dark); gap: 12px; }

.news-card-more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.news-card-more:hover .news-card-more-icon {
  transform: translateX(3px);
  color: var(--gold-dark);
}

/* Xem tất cả button — corner bracket style */
.news-all-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 13px 40px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 1.5px solid #b8b2a8;
  border-radius: 0;
  text-decoration: none;
  overflow: visible;
  font-family: var(--font-base);
  transition: background .25s, border-color .28s, color .25s, letter-spacing .4s;
}
.news-all-btn::before,
.news-all-btn::after {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  transition: all .25s ease;
  pointer-events: none;
}
.news-all-btn::before { top: -4px; left: -4px; border-top: 1.5px solid var(--gold-primary); border-left: 1.5px solid var(--gold-primary); opacity: .7; }
.news-all-btn::after  { bottom: -4px; right: -4px; border-bottom: 1.5px solid var(--gold-primary); border-right: 1.5px solid var(--gold-primary); opacity: .7; }
.news-all-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  letter-spacing: .17em;
}
.news-all-btn:hover::before { top: -6px; left: -6px; width: 13px; height: 13px; opacity: 1; }
.news-all-btn:hover::after  { bottom: -6px; right: -6px; width: 13px; height: 13px; opacity: 1; }

.news-empty {
  text-align: center;
  padding: var(--sp-2xl) 0;
  color: var(--mid-gray);
}

/* ── CONSULTATION ───────────────────────────────────────────────── */

.hp-consult {
  background: linear-gradient(135deg, #080f09 0%, #0d1f10 50%, #0a1a0c 100%);
  padding: var(--sp-3xl) 0;
}

.consult-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: var(--sp-2xl);
  align-items: start;
}

.consult-contacts {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}

.consult-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.consult-contact-item:last-child { border-bottom: none; }
.consult-contact-item:hover { color: var(--gold-primary); }

.consult-form-wrap {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: var(--sp-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}

.consult-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.consult-input {
  width: 100%;
  border: 1.5px solid #e8e6df;
  border-radius: 0;
  padding: 12px 14px;
  font-family: var(--font-base);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  box-sizing: border-box;
}
.consult-input::placeholder { color: #b8b4ae; }
.consult-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

/* Option cards — Nhận báo giá / Nhận tư vấn */
.cf-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}

.cf-option-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1.5px solid #e0ddd6;
  border-radius: 0;
  cursor: pointer;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a857e;
  background: #faf9f6;
  overflow: visible;
  transition: border-color .22s, color .22s, background .22s;
  user-select: none;
}
.cf-option-label::before,
.cf-option-label::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  transition: all .22s;
  pointer-events: none;
}
.cf-option-label::before { top: -3px; left: -3px; border-top: 1px solid var(--gold-primary); border-left: 1px solid var(--gold-primary); opacity: 0; }
.cf-option-label::after  { bottom: -3px; right: -3px; border-bottom: 1px solid var(--gold-primary); border-right: 1px solid var(--gold-primary); opacity: 0; }

.cf-option-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cf-option-dot {
  width: 14px;
  height: 14px;
  border: 1.5px solid #c8c4bc;
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s;
}
.cf-option-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--gold-primary);
  opacity: 0;
  transition: opacity .2s;
}

.cf-option-label:hover {
  border-color: #b8b2a8;
  color: var(--dark);
  background: #f3f1ec;
}
.cf-option-label:hover::before,
.cf-option-label:hover::after { opacity: .55; }
.cf-option-label:has(input:checked) {
  border-color: var(--gold-primary);
  color: var(--dark);
  background: rgba(212,175,55,.06);
}
.cf-option-label:has(input:checked)::before,
.cf-option-label:has(input:checked)::after { opacity: 1; }
.cf-option-label:has(input:checked) .cf-option-dot { border-color: var(--gold-primary); }
.cf-option-label:has(input:checked) .cf-option-dot::after { opacity: 1; }

/* Submit — corner bracket, gold bg, full width */
.cf-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 32px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold-primary);
  border: none;
  border-radius: 0;
  cursor: pointer;
  overflow: visible;
  font-family: var(--font-base);
  transition: background .25s, letter-spacing .4s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(212,175,55,.25);
}
.cf-submit::before,
.cf-submit::after {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  transition: all .25s;
  pointer-events: none;
}
.cf-submit::before { top: -4px; left: -4px; border-top: 1.5px solid rgba(255,255,255,.6); border-left: 1.5px solid rgba(255,255,255,.6); opacity: .8; }
.cf-submit::after  { bottom: -4px; right: -4px; border-bottom: 1.5px solid rgba(255,255,255,.6); border-right: 1.5px solid rgba(255,255,255,.6); opacity: .8; }
.cf-submit:hover {
  background: var(--gold-dark);
  letter-spacing: .17em;
  box-shadow: 0 6px 30px rgba(212,175,55,.45);
}
.cf-submit:hover::before { top: -6px; left: -6px; width: 13px; height: 13px; opacity: 1; }
.cf-submit:hover::after  { bottom: -6px; right: -6px; width: 13px; height: 13px; opacity: 1; }

.consult-submit {
  width: 100%;
  margin-top: var(--sp-xs);
  justify-content: center;
}

.consult-privacy {
  font-size: .75rem;
  color: var(--mid-gray);
  margin-top: var(--sp-sm);
  margin-bottom: 0;
  text-align: center;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .highlight-grid   { grid-template-columns: repeat(2, 1fr); }
  .ceo-layout       { grid-template-columns: 1fr; }
  .ceo-image-frame  { }
  .consult-layout   { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ceo-image-frame  { max-height: none; }
}

@media (max-width: 900px) {
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .news-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-stats  { gap: var(--sp-md); }
}

@media (max-width: 640px) {
  .hp-section        { padding: var(--sp-2xl) 0; }
  .highlight-grid    { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .news-grid         { grid-template-columns: 1fr; }
  .hero-title        { font-size: 2rem; }
  .hero-actions      { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stat-divider { display: none; }
  .ceo-credentials   { flex-wrap: wrap; gap: var(--sp-md); }
  .cf-options        { grid-template-columns: 1fr; }
  .consult-form-wrap { padding: var(--sp-md); }
}
