@charset "UTF-8";
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  color: var(--green-deep);
}

dl dd {
  display: block !important;
  text-transform: inherit !important;
}

section {
  position: relative;
  padding: 120px 0 !important;
}
@media screen and (max-width: 860px) {
  section {
    padding: 60px 0 !important;
  }
}
@media screen and (max-width: 520px) {
  section {
    padding: 40px 0 !important;
  }
}
section h2 {
  font-size: clamp(2.1rem, 2.6vw, 3.4rem);
}
section h3 {
  font-size: clamp(1.6rem, 2.1vw, 2.8rem);
}

.landing-emerald .row {
  max-width: 1800px;
}

.landing-emerald .container {
  max-width: 1800px;
  padding: 0 48px;
}

@media (max-width: 1400px) {
  .landing-emerald .container {
    padding: 0 40px;
  }
}
@media (max-width: 900px) {
  .landing-emerald .container {
    padding: 0 24px;
  }
}
@media (max-width: 640px) {
  .landing-emerald .container {
    padding: 0 22px;
  }
}
.scroll-to {
  position: absolute;
  top: 60px;
}
@media (max-width: 640px) {
  .scroll-to {
    top: 0px;
  }
}

.section-head {
  max-width: 100%;
  margin-bottom: 64px;
}
@media (max-width: 640px) {
  .section-head {
    margin-bottom: 32px;
  }
}
.section-head h2 {
  font-size: clamp(2.1rem, 2.6vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) {
  transition-delay: 0.1s;
}
.reveal-stagger.in > *:nth-child(2) {
  transition-delay: 0.2s;
}
.reveal-stagger.in > *:nth-child(3) {
  transition-delay: 0.3s;
}
.reveal-stagger.in > *:nth-child(4) {
  transition-delay: 0.4s;
}
.reveal-stagger.in > *:nth-child(5) {
  transition-delay: 0.5s;
}
.reveal-stagger.in > *:nth-child(6) {
  transition-delay: 0.6s;
}
.reveal-stagger.in > *:nth-child(7) {
  transition-delay: 0.7s;
}
.reveal-stagger.in > *:nth-child(8) {
  transition-delay: 0.8s;
}

.swiper:hover .swiper-button {
  opacity: 1;
}
.swiper-button {
  width: 44px;
  height: 44px;
  background-color: var(--green-deep);
  border-radius: 99px;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
.swiper-button svg {
  width: 24px;
}
.swiper-button::after {
  display: none;
}
.swiper-button-prev {
  left: 2% !important;
}
.swiper-button-next {
  right: 2% !important;
}
.swiper .image-cover img {
  transition: transform 0.7s var(--ease);
}
.swiper .swiper-slide:hover .image-cover img {
  transform: scale(1.05);
}

.fc-widget {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: "Be Vietnam Pro", sans-serif;
}
.fc-widget .fc-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(1, 46, 35, 0.28);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: fcRiseIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fc-widget .fc-btn:hover {
  transform: translateY(0) scale(1.08);
  box-shadow: 0 10px 26px rgba(1, 46, 35, 0.35);
}
.fc-widget .fc-btn.fc-call {
  background: #006a51;
  animation-delay: 0.1s;
}
.fc-widget .fc-btn.fc-call svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.fc-widget .fc-btn.fc-call .fc-ring {
  color: #006a51;
  animation-delay: 1s;
}
.fc-widget .fc-btn.fc-zalo {
  background: #ffffff;
  animation-delay: 0.25s;
}
.fc-widget .fc-btn.fc-zalo svg {
  width: 32px;
  height: 32px;
}
.fc-widget .fc-btn.fc-zalo .fc-ring {
  color: #0068ff;
}
.fc-widget .fc-btn .fc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: fcPulse 2.4s ease-out infinite;
}
.fc-widget .fc-btn .fc-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #012e23;
  color: #fff;
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.fc-widget .fc-btn .fc-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #012e23;
}
.fc-widget .fc-btn:hover .fc-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 640px) {
  .fc-widget {
    right: 16px;
    bottom: 20px;
    gap: 12px;
  }
  .fc-widget .fc-btn {
    width: 50px;
    height: 50px;
  }
  .fc-widget .fc-tooltip {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fc-widget .fc-btn {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .fc-widget .fc-ring {
    animation: none;
    opacity: 0;
  }
}

@keyframes fcRiseIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fcPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  80% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

#header {
  background: var(--green);
}
#header #masthead #logo a img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease-in-out;
}
#header #masthead .header-inner .flex-right .header-nav li {
  margin: 0 17px;
}
#header #masthead .header-inner .flex-right .header-nav li a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
}
#header #masthead .header-inner .flex-right .header-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
#header #masthead .header-inner .flex-right .header-nav li a:hover::after, #header #masthead .header-inner .flex-right .header-nav li a.active::after {
  width: 100%;
}
#header #masthead .header-inner .flex-right .header-nav li.nav-cta a {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: background 0.3s;
}
#header #masthead .header-inner .flex-right .header-nav li.nav-cta a::after {
  display: none;
}
#header #masthead .header-inner .flex-right .header-nav li.nav-cta a:hover {
  background: #96742f;
}
#header #masthead .mobile-nav li.nav-icon a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
#header #masthead .mobile-nav li.nav-icon a span {
  width: 24px;
  height: 1px;
  background: #fff;
}
#header .stuck {
  background: var(--green);
  backdrop-filter: blur(10px);
}
#header .stuck #masthead .nav li a {
  line-height: normal;
}
#header .stuck #masthead #logo a img {
  filter: unset !important;
}

.mfp-content {
  background-color: var(--green-deep) !important;
}

.mobile-sidebar .sidebar-menu .nav li a {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding-bottom: 100px !important;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .hero {
    min-height: unset;
    padding-top: 120px !important;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 30% 20%, #000, transparent);
  pointer-events: none;
}
.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}
.hero-slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-overlay--fallback {
  background: linear-gradient(180deg, rgba(1, 46, 35, 0.35), rgba(1, 46, 35, 0.82)), radial-gradient(120% 90% at 20% 0%, #0a7d61 0%, #012e23 65%);
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.5;
  z-index: 2;
}
.hero-inner {
  max-width: 850px !important;
  position: relative;
  z-index: 3;
}
.hero .eyebrow {
  color: var(--gold-soft);
}
.hero .eyebrow::before {
  background: var(--gold-soft);
}
.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 6rem);
  line-height: 1.04;
  margin-bottom: 26px;
  color: var(--white);
  max-width: 820px;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 1s var(--ease) 0.2s forwards;
}
.hero p.lead {
  max-width: 480px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 1s var(--ease) 0.4s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 1s var(--ease) 0.6s forwards;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 1s var(--ease) 0.8s forwards;
  flex-wrap: wrap;
}
.hero-stats div {
  padding-right: 48px;
  margin-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stats div:last-child {
  border-right: none;
}
@media screen and (max-width: 549px) {
  .hero-stats div {
    flex-basis: 50%;
    max-width: 50%;
    margin: 0 0 10px 0;
  }
  .hero-stats div:nth-child(even) {
    padding-left: 15px;
    border-right: none;
  }
}
.hero-stats b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
}
.hero-stats span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
}
.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.hero .btn-primary {
  background: var(--gold);
  color: var(--white);
}
.hero .btn-primary:hover {
  background: #96742f;
  transform: translateY(-2px);
  color: var(--white);
}
.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: var(--white);
}

.hero-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dots .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.3);
}
@media (max-width: 700px) {
  .hero-dots {
    display: none;
  }
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-cue {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.scroll-cue .line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
  animation: pulseLine 1.8s ease-in-out infinite;
}

@keyframes pulseLine {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 700px) {
  .scroll-cue {
    display: none;
  }
}
.section-overview {
  background: var(--cream);
}
.section-overview .overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .section-overview .overview-grid {
    grid-template-columns: 1fr;
  }
}
.section-overview .overview-media {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #0a7d61, #012e23);
}
.section-overview .overview-media svg {
  width: 100%;
  height: 100%;
}
.section-overview .overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-overview .overview-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(1, 46, 35, 0.12);
}
.section-overview .overview-list dl {
  padding: 22px 0;
  border-bottom: 1px solid rgba(1, 46, 35, 0.12);
  text-transform: inherit;
  margin-bottom: 0;
}
.section-overview .overview-list dl:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid rgba(1, 46, 35, 0.12);
}
.section-overview .overview-list dl:nth-child(even) {
  padding-left: 20px;
}
.section-overview .overview-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.section-overview .overview-list dd {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 1.2vw, 1.55rem);
  color: var(--green-deep);
  display: block;
}

.section-location {
  background: var(--green-deep);
  color: var(--white);
}
.section-location .eyebrow {
  color: var(--gold-soft);
}
.section-location .eyebrow::before {
  background: var(--gold-soft);
}
.section-location .section-head h2 {
  color: var(--white);
}
.section-location .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 860px) {
  .map-wrap {
    grid-template-columns: 1fr;
  }
}

.map-visual {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.location-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.location-list li b {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
}
.location-list li span {
  color: var(--gold-soft);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  margin-left: 20px;
}

.section-utilities {
  background: var(--cream);
}
.section-utilities .amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(1, 46, 35, 0.12);
  border: 1px solid rgba(1, 46, 35, 0.12);
}
@media (max-width: 1100px) {
  .section-utilities .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 860px) {
  .section-utilities .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .section-utilities .amenity-grid {
    grid-template-columns: 1fr;
  }
}
.section-utilities .amenity-card {
  background: var(--cream);
  padding: 34px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  cursor: default;
}
.section-utilities .amenity-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}
.section-utilities .amenity-card .box-image {
  margin-bottom: 20px;
  border-radius: 2px;
  overflow: hidden;
}
.section-utilities .amenity-card .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--green);
}
.section-utilities .amenity-card h4 {
  font-size: 1.1rem;
  margin-top: 12px;
  margin-bottom: 8px;
}
.section-utilities .amenity-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.section-premises .tabbed-content {
  max-width: 100%;
}
.section-premises .nav.nav-line-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  border-bottom: 1px solid rgba(1, 46, 35, 0.15);
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.section-premises .nav.nav-line-bottom .tab {
  margin: 0 0 -1px;
}
.section-premises .nav.nav-line-bottom .tab a {
  display: block;
  padding: 16px 26px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #4a544e;
  text-transform: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.section-premises .nav.nav-line-bottom .tab a span {
  display: inline-block;
  text-wrap: nowrap;
}
.section-premises .nav.nav-line-bottom .tab a::before {
  display: none !important;
}
.section-premises .nav.nav-line-bottom .tab a:hover {
  color: #006a51;
}
.section-premises .nav.nav-line-bottom .tab.active a {
  color: #006a51;
  border-color: #b6903f;
}
.section-premises .tab-panels {
  position: relative;
}
.section-premises .panel .panel-inner .plan-visual {
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  max-height: 900px;
}
.section-premises .panel .panel-inner .plan-visual .image img {
  height: auto !important;
  max-height: 900px;
  object-fit: contain !important;
  margin: 0 auto;
}
.section-premises .panel .panel-inner .plan-visual svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-premises .panel .panel-inner .plan-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
}
.section-premises .panel .panel-inner .plan-specs div {
  border-top: 1px solid rgba(1, 46, 35, 0.12);
  padding-top: 14px;
}
.section-premises .panel .panel-inner .plan-specs dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.section-premises .panel .panel-inner .plan-specs dd {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--green-deep);
}
.section-premises .panel.active .panel-inner {
  animation: matbangFadeIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (max-width: 860px) {
  .section-premises .panel.active .panel-inner {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes matbangFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-design {
  background: var(--green-soft);
}
.section-design .ds-wrap {
  perspective: 1400px;
}
.section-design .design-swiper-wrap {
  position: relative;
}
.section-design .swiper-coverflow {
  padding: 40px 0 70px;
  overflow: visible;
}
.section-design .swiper-coverflow .swiper-wrapper {
  align-items: center;
}
.section-design .swiper-coverflow .swiper-slide {
  width: 34%;
  max-width: 560px;
  transition: opacity 0.4s ease;
}
@media (max-width: 900px) {
  .section-design .swiper-coverflow .swiper-slide {
    width: 62%;
  }
}
@media (max-width: 560px) {
  .section-design .swiper-coverflow .swiper-slide {
    width: 78%;
  }
}
.section-design .swiper-coverflow .box-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(1, 46, 35, 0.35);
}
.section-design .swiper-coverflow .swiper-slide-shadow-left,
.section-design .swiper-coverflow .swiper-slide-shadow-right {
  background-image: linear-gradient(to left, rgba(1, 46, 35, 0.55), rgba(1, 46, 35, 0));
}
.section-design .swiper-coverflow .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(1, 46, 35, 0.55), rgba(1, 46, 35, 0));
}
.section-design .swiper-coverflow .swiper-slide-active .box-image {
  box-shadow: 0 32px 64px rgba(1, 46, 35, 0.45);
}
.section-design .design-copy {
  max-width: 640px;
  margin-top: 56px;
}
.section-design .design-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-payment {
  background: var(--white);
}
.section-payment .river-line {
  position: absolute;
  left: 50%;
  top: 0px;
  bottom: 60px;
  width: 1px;
  transform: translateX(-0.5px);
  z-index: 0;
  pointer-events: none;
}
.section-payment .river-line svg {
  height: 100%;
  width: 60px;
  margin-left: -30px;
  overflow: visible;
}
.section-payment .river-line svg path {
  stroke: var(--gold);
}
.section-payment .policy-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.section-payment .policy-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-payment .policy-row.reverse .policy-media {
  order: 2;
}
.section-payment .policy-row.reverse .policy-copy {
  order: 1;
  text-align: right;
}
.section-payment .policy-row.reverse .policy-copy .policy-index {
  margin-left: auto;
}
.section-payment .policy-row.reverse .policy-media::before {
  left: auto;
  right: -14px;
  border-left: none;
  border-right: 2px solid var(--gold);
}
.section-payment .policy-row.reverse .policy-media::after {
  right: auto;
  left: -14px;
  border-right: none;
  border-left: 2px solid var(--gold);
}
.section-payment .policy-media {
  position: relative;
}
.section-payment .policy-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}
.section-payment .policy-media::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 44px;
  height: 44px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
}
.section-payment .policy-media::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 2;
}
.section-payment .policy-copy .policy-index {
  display: inline-block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.section-payment .policy-copy h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--green-deep);
  margin: 0 0 14px;
  line-height: 1.3;
}
.section-payment .policy-copy p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}
.section-payment .pay-table-wrap {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(1, 46, 35, 0.1);
  margin-bottom: 56px;
}
.section-payment .pay-table-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 24px 24px 0;
}
.section-payment .pay-table-head h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0;
}
.section-payment .pay-table-head span {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-payment table.pay-table {
  width: 100%;
  border-collapse: collapse;
}
.section-payment table.pay-table th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(1, 46, 35, 0.18);
  font-weight: 500;
  line-height: normal;
}
.section-payment table.pay-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(1, 46, 35, 0.1);
  font-size: 0.95rem;
}
.section-payment table.pay-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--green);
}
.section-payment table.pay-table tr td:first-child {
  font-family: var(--font-head);
  color: var(--green-deep);
  font-size: 1.05rem;
}
.section-payment table.pay-table tr:hover td {
  background: var(--green-soft);
}
.section-payment .pay-note {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.section-payment .pay-note div {
  flex: 1;
  min-width: 220px;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}
.section-payment .pay-note h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.section-payment .pay-note p {
  font-size: 0.86rem;
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .section-payment .river-line {
    display: none;
  }
  .section-payment .policy-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-payment .policy-row.reverse .policy-media {
    order: 1;
  }
  .section-payment .policy-row.reverse .policy-copy {
    order: 2;
    text-align: left;
  }
  .section-payment .policy-row.reverse .policy-copy .policy-index {
    margin-left: 0;
  }
  .section-payment .pay-table-head, .section-payment table.pay-table th, .section-payment table.pay-table td {
    padding: 12px;
  }
}

.section-progress {
  background: var(--green-deep);
  color: var(--white);
}
.section-progress .eyebrow {
  color: var(--gold-soft);
}
.section-progress .eyebrow::before {
  background: var(--gold-soft);
}
.section-progress .section-head h2 {
  color: var(--white);
}
.section-progress .section-head p {
  color: rgba(255, 255, 255, 0.68);
}
.section-progress .timeline {
  position: relative;
  padding-left: 34px;
}
.section-progress .timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.section-progress .tl-item {
  position: relative;
  padding-bottom: 52px;
}
.section-progress .tl-item:last-child {
  padding-bottom: 0;
}
.section-progress .tl-item::before {
  content: attr(data-n);
  position: absolute;
  left: -34px;
  top: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--gold-soft);
  background: var(--green-deep);
}
.section-progress .tl-item h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.section-progress .tl-item .tl-date {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
  display: block;
}
.section-progress .tl-item p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}
.section-progress .tl-item.done .tl-date::after {
  content: " — Hoàn thành";
  color: var(--gold);
}

.section-content {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.contact-info li {
  list-style: none;
  padding: 18px 0;
  border-top: 1px solid rgba(1, 46, 35, 0.12);
}

.contact-info li:last-child {
  border-bottom: 1px solid rgba(1, 46, 35, 0.12);
}

.contact-info dt {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.contact-info dd {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--green-deep);
}

.contact-form .btn-primary {
  align-self: flex-start;
  border: none;
  font-family: var(--font-body);
  margin-top: 10px;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}
footer .absolute-footer {
  padding: 36px 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 640px) {
  section {
    padding: 40px 0 !important;
  }
  .container {
    padding: 0 22px;
  }
}
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Be Vietnam Pro", sans-serif;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100%;
  background: transparent !important;
  border: none;
  box-shadow: unset !important;
  border-bottom: 1px solid rgba(1, 46, 35, 0.3);
  padding: 12px 0;
  font-size: 0.95rem;
  color: #16201b;
  outline: none;
  transition: border-color 0.3s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #006a51;
}

.wpcf7-submit {
  align-self: flex-start;
  background: #b6903f !important;
  color: #fff !important;
  border: none !important;
  padding: 8px 30px !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em;
  border-radius: 2px !important;
  cursor: pointer;
  text-transform: inherit !important;
  font-weight: 400 !important;
  transition: background 0.3s;
}

.wpcf7-submit:hover {
  background: #96742f;
}

.wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 4px;
}

.wpcf7-response-output {
  border-radius: 2px;
  font-size: 0.85rem;
  margin-top: 16px !important;
}