:root {
  --red: #d92716;
  --red-dark: #a9140b;
  --orange: #ff6500;
  --yellow: #ffad0a;
  --ink: #2d2421;
  --muted: #746966;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --line: #f0dfcf;
  --white: #fff;
  --green: #237b53;
  --shadow-sm: 0 8px 28px rgba(104, 48, 20, .09);
  --shadow: 0 22px 65px rgba(104, 48, 20, .16);
  --font: "Segoe UI", Arial, Tahoma, sans-serif;
  --container: min(1460px, calc(100% - 42px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

.page-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  pointer-events: none;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: radial-gradient(circle at center, #fff, #fff2df);
  transition: opacity .45s ease, visibility .45s ease;
}

.js.is-loading .page-loader {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.loader-logo {
  display: grid;
  justify-items: center;
  color: var(--red);
}

.loader-logo>span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--red));
  border-radius: 20px 20px 20px 6px;
  box-shadow: 0 0 0 10px rgba(255, 101, 0, .08);
  font-weight: 800;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-logo strong {
  margin-top: 16px;
  letter-spacing: .16em;
}

.loader-logo i {
  width: 180px;
  height: 3px;
  overflow: hidden;
  margin-top: 14px;
  background: #efd9c6;
  border-radius: 8px;
}

.loader-logo i::after {
  content: "";
  display: block;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: loaderLine 1s linear infinite;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(233, 209, 187, .7);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(90, 39, 16, .1);
}

.topline {
  color: #fff;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--orange));
  font-size: 14px;
}

.topline .container {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topline .container>div {
  display: flex;
  gap: 22px;
}

.topline a {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .9;
}

.topline svg {
  width: 13px;
  height: 13px;
}

.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 53px;
  height: 57px;
  color: var(--orange);
}

.brand-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.3;
}

.brand>span:last-child {
  display: grid;
  line-height: 1;
}

.brand small {
  color: #3d3531;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.brand strong {
  margin-top: 6px;
  color: var(--red);
  font-size: 30px;
  letter-spacing: .045em;
}

.brand em {
  position: absolute;
  margin: 37px 0 0 178px;
  color: var(--orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: #463d39;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 19px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: left .25s ease, right .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--red);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  left: 0;
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  background: #fff7ef;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  touch-action: manipulation;
}

.menu-toggle svg {
  width: 100%;
  height: 100%;
}

.menu-toggle .close-icon,
.mobile-menu-backdrop {
  display: none;
}

.mobile-nav {
  display: none;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 750;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 25px rgba(217, 39, 22, .24);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(217, 39, 22, .32);
}

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, #ff9b00, var(--orange));
  box-shadow: 0 9px 22px rgba(255, 101, 0, .25);
}

.btn-light {
  color: var(--red);
  background: rgba(255, 255, 255, .9);
  border-color: #ead8c6;
}

.btn-outline {
  color: var(--red);
  background: #fff;
  border-color: var(--red);
}

.btn-white {
  color: var(--red);
  background: #fff;
}

.btn-zalo {
  color: #fff;
  background: #0868ff;
}

.btn-lg {
  min-height: 52px;
  padding-inline: 25px;
}

.hero-section {
  padding: 18px 0 0;
  background: linear-gradient(180deg, #fff 0, #fffaf4 75%, #fff 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(350px, 1fr);
  gap: 17px;
}

.hero-card {
  position: relative;
  min-height: 585px;
  overflow: hidden;
  border: 1px solid #efd8c4;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transition: opacity .8s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 252, 247, .98) 0%, rgba(255, 249, 239, .92) 32%, rgba(255, 247, 234, .34) 58%, rgba(255, 247, 234, 0) 79%), linear-gradient(0deg, rgba(44, 20, 10, .18), transparent 38%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: 62px 48px 140px;
}

.eyebrow {
  display: block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

.hero-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(47px, 4.4vw, 71px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.hero-copy h1 em {
  display: inline;
  color: var(--red);
  font-style: normal;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: #665b55;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.slide-arrow {
  position: absolute;
  z-index: 5;
  top: 44%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff;
  border: 1px solid #efd9c4;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.slide-arrow svg {
  width: 19px;
  height: 19px;
}

.slide-arrow.prev {
  left: 14px;
}

.slide-arrow.next {
  right: 14px;
  transform: rotate(180deg);
}

.hero-dots {
  position: absolute;
  z-index: 5;
  right: 47px;
  bottom: 99px;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(85, 45, 25, .35);
  border-radius: 50%;
  cursor: pointer;
}

.hero-dots button.active {
  width: 25px;
  background: var(--orange);
  border-color: var(--orange);
  border-radius: 8px;
}

.hero-stats {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 84px;
  padding: 15px 32px;
  background: rgba(255, 255, 255, .9);
  border-top: 1px solid rgba(232, 208, 185, .85);
  backdrop-filter: blur(14px);
}

.hero-stats>div {
  display: grid;
  place-items: center;
  border-right: 1px solid #ead8c8;
  text-align: center;
}

.hero-stats>div:last-child {
  border: 0;
}

.hero-stats strong {
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.hero-stats small {
  margin-top: 4px;
  color: #665c57;
  font-size: 12px;
}

.featured-panel {
  min-height: 585px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 11px;
}

.panel-head,
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.panel-head h2 {
  margin: 0;
  color: var(--red);
  font-size: 24px;
  text-transform: uppercase;
}

.panel-head a,
.section-head>a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.panel-head svg,
.section-head>a svg {
  width: 14px;
  height: 14px;
}

.featured-main {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: #5e2618;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  text-align: left;
}

.featured-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(39, 15, 8, .9), transparent 65%);
}

.featured-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.featured-main:hover img {
  transform: scale(1.04);
}

.hot-label {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.featured-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
}

.featured-caption strong {
  font-size: 21px;
}

.featured-caption small {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  opacity: .78;
}

.featured-caption small svg {
  width: 11px;
  height: 11px;
}

.featured-caption b {
  margin-top: 3px;
  color: var(--yellow);
  font-size: 15px;
}

.featured-mini-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.featured-mini-list button {
  min-height: 90px;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 10px;
  align-items: center;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: left;
}

.featured-mini-list img {
  width: 95px;
  height: 77px;
  object-fit: cover;
  border-radius: 7px;
}

.featured-mini-list span {
  display: grid;
}

.featured-mini-list strong {
  font-size: 14px;
}

.featured-mini-list small {
  color: var(--muted);
  font-size: 11px;
}

.featured-mini-list b {
  margin-top: 4px;
  color: var(--orange);
  font-size: 13px;
}

.investment-banner {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 18px 25px;
  background: radial-gradient(circle at 90% 100%, rgba(255, 177, 11, .23), transparent 40%), linear-gradient(120deg, #fff7ed, #fff);
  border: 1px solid #f1d5bc;
  border-radius: 13px;
}

.investment-banner>div {
  display: grid;
}

.investment-banner span {
  color: var(--orange);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.investment-banner strong {
  font-size: 13px;
}

.investment-banner button {
  width: max-content;
  margin-top: 10px;
  padding: 7px 12px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.investment-banner>svg {
  width: 70px;
  height: 70px;
  color: var(--orange);
  stroke-width: 1.3;
}

.search-panel {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr) 135px;
  align-items: center;
  gap: 12px;
  padding: 13px;
  margin-top: 14px;
  background: #fff;
  border: 1px solid #eed7c2;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.search-title {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 10px;
}

.search-title>span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.search-title svg {
  width: 21px;
  height: 21px;
}

.search-title strong {
  font-size: 15px;
  line-height: 1.3;
}

.search-panel label {
  display: grid;
  gap: 5px;
  color: #5c524d;
  font-size: 12px;
  font-weight: 700;
}

.search-panel select {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  color: #756b66;
  background: #fff;
  border: 1px solid #e8d8c9;
  border-radius: 7px;
  outline: none;
  font-size: 13px;
}

.search-panel select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, .1);
}

.search-submit {
  align-self: end;
  height: 40px;
}

.trust-section {
  padding-top: 58px;
}

.trust-card {
  position: relative;
  min-height: 255px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 45px;
  overflow: hidden;
  padding: 34px 38px 105px;
  background: radial-gradient(circle at 10% 10%, rgba(255, 101, 0, .08), transparent 28%), #fff;
  border: 1px solid #efd9c4;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.trust-copy {
  position: relative;
  z-index: 2;
}

.trust-copy h2 {
  margin: 2px 0 8px;
  color: var(--red);
  font-size: 32px;
}

.trust-copy p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 14px;
}

.trust-copy .btn {
  min-height: 36px;
  font-size: 12px;
}

.trust-values {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-values article {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.trust-values article>span {
  width: 45px;
  height: 45px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--orange);
  background: #fff7ed;
  border: 1px solid #ffd3aa;
  border-radius: 13px;
}

.trust-values svg {
  width: 23px;
  height: 23px;
}

.trust-values strong {
  font-size: 14px;
}

.trust-values p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.trust-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  opacity: .9;
  background: url("assets/project-eco.jpg") center 53% / cover;
  mask-image: linear-gradient(0deg, #000 55%, transparent);
}

.section-head {
  margin-bottom: 30px;
}

.section-head>div {
  max-width: 720px;
}

.section-head h2 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.15;
}

.section-head>p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.project-toolbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.category-pills button {
  min-height: 33px;
  padding: 0 16px;
  color: #6d625d;
  background: #fff;
  border: 1px solid #ead9ca;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.category-pills button.active,
.category-pills button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-color: transparent;
}

.project-toolbar>span {
  color: var(--muted);
  font-size: 13px;
}

.project-toolbar>span strong {
  color: var(--red);
  font-size: 17px;
}

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

.project-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ead9ca;
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  animation: cardIn .48s ease backwards;
  animation-delay: calc(var(--index) * 50ms);
  transition: transform .25s ease, box-shadow .25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.project-image {
  position: relative;
  height: 205px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.045);
}

.project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.project-status {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  color: var(--green);
  background: rgba(255, 255, 255, .92);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

.project-body {
  padding: 17px;
}

.project-body h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.project-location svg {
  width: 12px;
  height: 12px;
  color: var(--orange);
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.project-features span {
  padding: 4px 7px;
  color: #756a64;
  background: #fff7ee;
  border-radius: 12px;
  font-size: 11px;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0e3d7;
}

.project-price small,
.project-price strong {
  display: block;
}

.project-price small {
  color: #968b84;
  font-size: 11px;
}

.project-price strong {
  color: var(--orange);
  font-size: 17px;
}

.project-footer button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.project-footer svg {
  width: 14px;
  height: 14px;
}

.empty-projects {
  display: grid;
  justify-items: center;
  padding: 55px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed #e5cbb5;
  border-radius: 13px;
  text-align: center;
}

.empty-projects[hidden] {
  display: none;
}

.empty-projects svg {
  width: 38px;
  height: 38px;
  color: var(--orange);
}

.empty-projects h3 {
  margin: 10px 0 0;
  color: var(--ink);
}

.empty-projects p {
  margin: 3px 0 14px;
  font-size: 13px;
}

.empty-projects button {
  padding: 8px 14px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.services-section {
  background: linear-gradient(180deg, #fff9f1, #fff);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.service-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  align-items: center;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid #ecd7c4;
  border-radius: 13px;
  box-shadow: 0 7px 24px rgba(91, 44, 20, .05);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #ffb26e;
  box-shadow: var(--shadow-sm);
}

.service-card>span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff4e8;
  border: 1px solid #ffd2ad;
  border-radius: 19px 19px 19px 6px;
}

.service-card>span svg {
  width: 31px;
  height: 31px;
}

.service-card h3 {
  margin: 17px 0 8px;
  font-size: 20px;
}

.service-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-card button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.service-card button svg {
  width: 13px;
  height: 13px;
}

.about-section {
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 75px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-image>span {
  position: absolute;
  right: -20px;
  bottom: -22px;
  display: grid;
  min-width: 160px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border: 6px solid #fff;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}

.about-image>span strong {
  color: var(--yellow);
  font-size: 33px;
  line-height: 1;
}

.about-copy h2 {
  margin: 8px 0 17px;
  font-size: clamp(35px, 3.3vw, 51px);
  line-height: 1.16;
}

.about-copy>p {
  color: var(--muted);
  font-size: 16px;
}

.about-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 23px 0;
  list-style: none;
}

.about-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #534a46;
  font-size: 14px;
}

.about-copy li svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
}

.team-section {
  background: #fff8f0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  overflow: hidden;
  padding-bottom: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.9);
  transition: transform .4s ease;
}

.team-card:hover img {
  transform: scale(1.035);
}

.team-card h3 {
  margin: 15px 0 1px;
  font-size: 18px;
}

.team-card p {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.news-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.news-card>div {
  padding: 18px;
}

.news-card span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.news-card h3 {
  margin: 7px 0 8px;
  font-size: 19px;
  line-height: 1.4;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.news-card button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.news-card button svg {
  width: 13px;
  height: 13px;
}

.contact-section {
  padding-top: 20px;
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  overflow: hidden;
  padding: 44px 50px;
  color: #fff;
  background: radial-gradient(circle at 85% 120%, rgba(255, 174, 8, .35), transparent 35%), linear-gradient(120deg, #a8140a, var(--red) 55%, var(--orange));
  border-radius: 17px;
  box-shadow: var(--shadow);
}

.contact-banner .eyebrow {
  color: var(--yellow);
}

.contact-banner h2 {
  margin: 8px 0 7px;
  font-size: 36px;
}

.contact-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.contact-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 95px;
  color: rgba(255, 255, 255, .72);
  background: linear-gradient(135deg, #a51008, #d92716 55%, #ff6500);
}

.footer-wave {
  position: absolute;
  top: -54px;
  left: -3%;
  width: 106%;
  height: 90px;
  background: var(--paper);
  border-radius: 0 0 50% 50%;
  transform: rotate(-1deg);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 600px;
  height: 350px;
  opacity: .12;
  background: url("assets/project-central.jpg") center / cover;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr .7fr 1.2fr 1fr;
  gap: 55px;
  padding-bottom: 42px;
}

.site-footer .brand strong {
  color: #fff;
}

.site-footer .brand em {
  color: var(--yellow);
}

.footer-brand>p {
  max-width: 350px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
}

.footer-grid h3 {
  margin: 7px 0 17px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-grid>div:not(.footer-brand)>a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--yellow);
}

.newsletter>p {
  margin: 0 0 11px;
  font-size: 12px;
}

.newsletter>div {
  display: flex;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 43px;
  padding: 0 12px;
  border: 0;
  outline: none;
  font-size: 13px;
}

.newsletter button {
  width: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--yellow);
  border: 0;
  cursor: pointer;
}

.newsletter button svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.floating-actions {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 25px;
  display: grid;
  gap: 9px;
  justify-items: end;
}

.float-btn {
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #fff;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 10px 28px rgba(122, 25, 9, .28);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.float-btn svg {
  width: 19px;
  height: 19px;
}

.float-btn.chat {
  background: var(--red);
}

.float-btn.call {
  background: var(--orange);
}

.float-btn.chat>span {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(217, 39, 22, .35);
  border-radius: 30px;
  animation: pulse 2s ease-out infinite;
}

.chat-panel {
  width: min(310px, calc(100vw - 36px));
  padding: 16px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
  transform: translateY(12px) scale(.97);
  transform-origin: right bottom;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.chat-panel.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: none;
}

.chat-panel>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--red);
}

.chat-panel>div button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #fff5eb;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-panel>div svg {
  width: 14px;
  height: 14px;
}

.chat-panel p {
  color: var(--muted);
  font-size: 13px;
}

.chat-panel>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-top: 7px;
  color: var(--red);
  background: #fff7ee;
  border: 1px solid #f2deca;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}

.chat-panel>a svg {
  width: 14px;
  height: 14px;
}

.back-top {
  position: fixed;
  z-index: 90;
  left: 18px;
  bottom: 25px;
  width: 43px;
  height: 43px;
  display: grid;
  pointer-events: none;
  place-items: center;
  opacity: 0;
  color: var(--red);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}

.back-top.visible {
  pointer-events: auto;
  opacity: 1;
  transform: none;
}

.back-top svg {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  pointer-events: none;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(50, 20, 10, .72);
  backdrop-filter: blur(7px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border: 1px solid #efd9c3;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(53, 18, 7, .4);
  transform: translateY(20px) scale(.98);
  transition: transform .3s ease;
}

.modal.open .modal-dialog {
  transform: none;
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 13px;
  right: 13px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(255, 255, 255, .92);
  border: 1px solid #ead6c3;
  border-radius: 50%;
  cursor: pointer;
}

.modal-close svg {
  width: 17px;
  height: 17px;
}

.project-modal-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 35px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.project-modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(48, 17, 8, .92), transparent 70%);
}

.project-modal-hero>div {
  position: relative;
  z-index: 1;
}

.project-modal-hero span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-modal-hero h2 {
  margin: 4px 0;
  font-size: 38px;
}

.project-modal-hero p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 13px;
  opacity: .8;
}

.project-modal-hero svg {
  width: 13px;
  height: 13px;
}

.project-modal-body {
  padding: 30px;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-bottom: 23px;
}

.project-fact {
  padding: 13px;
  background: #fff8ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-fact small,
.project-fact strong {
  display: block;
}

.project-fact small {
  color: #988c84;
  font-size: 11px;
}

.project-fact strong {
  margin-top: 2px;
  color: var(--red);
  font-size: 14px;
}

.project-modal-body>p {
  color: var(--muted);
  font-size: 15px;
}

.project-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 21px 0;
}

.project-detail-columns>div {
  padding: 18px;
  background: #fffaf4;
  border-radius: 9px;
}

.project-detail-columns h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.project-detail-columns ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-detail-columns li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 13px;
}

.project-detail-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.project-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.consult-dialog {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
}

.consult-visual {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  color: #fff;
  background: radial-gradient(circle at 70% 15%, rgba(255, 177, 10, .35), transparent 30%), linear-gradient(145deg, var(--red-dark), var(--red), var(--orange));
}

.consult-visual>span {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 17px 17px 17px 5px;
  font-weight: 800;
}

.consult-visual h2 {
  margin: 25px 0 10px;
  font-size: 36px;
  line-height: 1.2;
}

.consult-visual p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.consult-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
}

.consult-content h2 {
  margin: 7px 0 8px;
  font-size: 33px;
}

.consult-content>p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.contact-option {
  display: grid;
  grid-template-columns: 45px 1fr 17px;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 11px 13px;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #ead8c7;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.contact-option>b {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
}

.contact-option.zalo>b {
  background: #0868ff;
}

.contact-option.phone>b {
  background: var(--red);
}

.contact-option>b svg {
  width: 19px;
  height: 19px;
}

.contact-option>span {
  display: grid;
}

.contact-option small {
  color: var(--muted);
  font-size: 12px;
}

.contact-option strong {
  font-size: 15px;
}

.contact-option>svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.article-dialog {
  width: min(720px, 100%);
  padding: 45px;
}

.article-dialog .eyebrow {
  margin-bottom: 8px;
}

.article-dialog h2 {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.3;
}

.article-dialog h3 {
  margin: 24px 0 5px;
  font-size: 21px;
}

.article-dialog p,
.article-dialog li {
  color: var(--muted);
  font-size: 14px;
}

.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 35px);
  padding: 11px 17px;
  pointer-events: none;
  opacity: 0;
  color: #fff;
  background: #342722;
  border-radius: 25px;
  box-shadow: var(--shadow);
  transform: translate(-50%, 20px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast svg {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

.toast span {
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .2, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

@keyframes loaderPulse {
  50% {
    transform: scale(1.06);
  }
}

@keyframes loaderLine {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(190%);
  }
}

@keyframes pulse {
  0% {
    opacity: .65;
    transform: scale(.88);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 32px, 1080px);
  }

  .desktop-nav {
    gap: 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1.55fr .85fr;
  }

  .hero-card,
  .featured-panel {
    min-height: 560px;
  }

  .hero-copy {
    padding-inline: 38px;
  }

  .featured-mini-list {
    grid-template-columns: 1fr;
  }

  .featured-mini-list button:nth-child(2) {
    display: none;
  }

  .search-panel {
    grid-template-columns: 170px repeat(2, 1fr) 120px;
  }

  .search-panel label:nth-of-type(3),
  .search-panel label:nth-of-type(4) {
    display: none;
  }

  .trust-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    padding-top: 74px;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-backdrop {
    position: fixed;
    z-index: 1;
    inset: 74px 0 0;
    display: block;
    padding: 0;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    background: rgba(45, 25, 17, .32);
    border: 0;
    backdrop-filter: blur(2px);
    transition: opacity .2s ease, visibility .2s ease;
  }

  .site-header.menu-open .mobile-menu-backdrop {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  .topline {
    display: none;
  }

  .site-header {
    position: fixed;
    z-index: 120;
    inset: 0 0 auto;
    width: 100%;
    backdrop-filter: none;
  }

  .nav-inner {
    position: relative;
    z-index: 3;
    min-height: 74px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: grid;
    place-items: center;
  }

  .site-header.menu-open .menu-toggle .menu-icon {
    display: none;
  }

  .site-header.menu-open .menu-toggle .close-icon {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    z-index: 2;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    padding: 15px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: var(--shadow);
    transform: translateY(-10px) scale(.985);
    transform-origin: top center;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .site-header.menu-open .mobile-nav {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #f1e4d8;
    font-size: 16px;
    font-weight: 650;
  }

  .mobile-nav a:active {
    color: var(--red);
    background: #fff8ef;
  }

  .mobile-nav .btn {
    margin-top: 10px;
    font-size: 15px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .featured-panel {
    min-height: auto;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: auto 1fr auto;
  }

  .featured-panel .panel-head {
    grid-column: 1 / -1;
  }

  .featured-main {
    min-height: 300px;
    grid-row: 2 / 4;
  }

  .featured-mini-list {
    grid-template-columns: 1fr;
  }

  .investment-banner {
    min-height: 100px;
  }

  .search-panel {
    grid-template-columns: 1fr 1fr;
  }

  .search-title {
    grid-column: 1 / -1;
  }

  .search-panel label:nth-of-type(3),
  .search-panel label:nth-of-type(4) {
    display: grid;
  }

  .search-submit {
    width: 100%;
  }

  .trust-card {
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }

  .trust-values {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    width: min(620px, 100%);
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card:last-child {
    display: none;
  }

  .contact-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 24px);
  }

  .section {
    padding: 62px 0;
  }

  .brand-icon {
    width: 44px;
    height: 47px;
  }

  .brand small {
    font-size: 9px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand em {
    display: none;
  }

  .hero-section {
    padding-top: 10px;
  }

  .hero-card {
    min-height: 650px;
    border-radius: 13px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(255, 252, 247, .99) 0 48%, rgba(255, 252, 247, .45) 72%, transparent);
  }

  .hero-copy {
    position: absolute;
    bottom: 95px;
    padding: 25px 22px;
  }

  .hero-copy h1 {
    font-size: 41px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .btn {
    padding: 0 10px;
    font-size: 12px;
  }

  .slide-arrow {
    top: 29%;
    width: 36px;
    height: 36px;
  }

  .hero-dots {
    right: 22px;
    bottom: 88px;
  }

  .hero-stats {
    padding: 12px 5px;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .hero-stats small {
    font-size: 10px;
  }

  .featured-panel {
    display: block;
  }

  .featured-panel .panel-head {
    margin: 22px 0 10px;
  }

  .featured-main {
    width: 100%;
    min-height: 270px;
  }

  .featured-mini-list {
    grid-template-columns: 1fr 1fr;
    margin-top: 9px;
  }

  .featured-mini-list button {
    min-height: 78px;
    grid-template-columns: 75px 1fr;
  }

  .featured-mini-list img {
    width: 75px;
    height: 64px;
  }

  .investment-banner {
    margin-top: 9px;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-title {
    grid-column: auto;
  }

  .search-panel label {
    display: grid !important;
  }

  .trust-card {
    padding: 26px 22px 120px;
  }

  .trust-values {
    grid-template-columns: 1fr 1fr;
  }

  .trust-values article {
    display: grid;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head h2 {
    font-size: 34px;
  }

  .project-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-pills {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .category-pills button {
    flex: 0 0 auto;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: 220px;
  }

  .services-grid,
  .team-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 330px;
  }

  .news-card:last-child {
    display: block;
  }

  .about-image img {
    height: 330px;
  }

  .about-image>span {
    right: -4px;
  }

  .contact-banner {
    padding: 32px 23px;
  }

  .contact-banner h2 {
    font-size: 31px;
  }

  .contact-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-actions .btn {
    padding: 0 10px;
    font-size: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .float-btn {
    width: 48px;
    justify-content: center;
    padding: 0;
  }

  .float-btn b {
    display: none;
  }

  .consult-dialog {
    grid-template-columns: 1fr;
  }

  .consult-visual {
    display: none;
  }

  .consult-content {
    padding: 45px 22px 28px;
  }

  .project-modal-hero {
    min-height: 250px;
    padding: 25px 20px;
  }

  .project-modal-hero h2 {
    font-size: 31px;
  }

  .project-modal-body {
    padding: 23px 20px;
  }

  .project-facts,
  .project-detail-columns {
    grid-template-columns: 1fr;
  }

  .article-dialog {
    padding: 45px 22px 25px;
  }

  .article-dialog h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}