@charset "UTF-8";
:root {
  --navy: #060764;
  --navy2: #020221;
  --deep: #03031a;
  --red: #df4040;
  --gold: #c8a03a;
  --text: #232323;
  --muted: #737373;
  --font-title: "Astoria Classic Sans", Georgia, "Times New Roman", serif;
  --font-body: "Open Sans", Arial, sans-serif;
  --hero-bg: url("../images/hero-building-people.png");
  --hero-video: url("your-hero-video.mp4");
  --logo: url("https://placehold.co/330x78/070765/ffffff?text=Cuervo+Appraisers+Logo");
  --small-logo: url("https://placehold.co/90x90/070765/ffffff?text=CA");
}

.breadcrumb span, .breadcrumb a {
  font-size: 16px;
  color: #FFFFFF !important;
}

.breadcrumb span:last-child {
  border-bottom: 1px solid #fff;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  width: 100%;
  overflow-x: clip;
}

html {
  width: 100%;
  overflow-x: clip;
}

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

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

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding-left: 80px;
  padding-right: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  transition: 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: normal;
}

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

.btn-navy:hover {
  background: var(--navy2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.15);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #fff;
  color: var(--navy);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 850px;
  overflow: hidden;
  z-index: 2;
  background: #0a0a1a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform;
}
.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video video {
  width: 100%;
  height: 100%;
  max-height: 850px;
  object-fit: cover;
  display: block;
}

.hero-video:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 30;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 40px;
}

.site-header {
  position: relative;
  z-index: 50;
  padding-top: 30px;
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 15px;
  background-size: 100% 1px;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}
.nav-shell::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 50%, rgba(255, 255, 255, 0) 100%);
  height: 1px;
}

.brand-logo {
  width: 315px;
  height: 74px;
  background: url("../images/logo/CA_Full_Logo.png") left center/contain no-repeat;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
}

.hamburger span,
.hamburger span:before,
.hamburger span:after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: 0.3s;
}

.hamburger span:before {
  position: absolute;
  top: -7px;
  left: 0;
}

.hamburger span:after {
  position: absolute;
  top: 7px;
  left: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  position: relative;
  min-height: 78px;
  display: inline-flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  font-family: "Open Sans", sans-serif;
}

.menu a:hover,
.menu a:visited,
.menu a:focus {
  color: #FFFFFF;
}

.menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: 0.25s;
}

.menu a:hover:after,
.menu .current-menu-item > a:after {
  width: 100%;
}

.nav-cta {
  width: 242px;
  height: 54px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.25s;
  text-transform: uppercase;
  text-align: center;
  font-style: normal;
  line-height: normal;
  box-sizing: border-box;
}

.nav-cta:hover {
  background: #020221;
  color: #fff !important;
  border: 1px solid #B58F16;
}

.hero-content {
  position: relative;
  z-index: 30;
  max-width: 830px;
  padding-top: 0;
}

h1.hero-title,
.hero-title {
  font-family: var(--font-title);
  color: #fff;
  font-size: 56px;
  font-weight: 400;
  line-height: normal;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  position: relative;
  z-index: 31;
}
.hero-actions .btn {
  font-size: 20px;
  font-weight: 600;
  min-height: 54px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: normal;
}

.hero-bottom {
  position: relative;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  pointer-events: none;
  line-height: 0;
  font-size: 0;
  background: transparent;
  z-index: 100;
  margin-top: -3px;
}

.hero-bottom img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.services-divider {
  position: relative;
  height: 116px;
  background: #fff;
  margin-bottom: -2px;
  z-index: 10;
  line-height: 0;
  font-size: 0;
}

.services-divider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

/* TRUSTED */
.trusted-section {
  position: relative;
  z-index: 1;
  margin-top: -60px;
  padding: 132px 0 78px;
  background-color: #fff;
  overflow: hidden;
}
.trusted-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/services-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.trusted-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/PatternBg.png");
  background-size: 150px 115px;
  opacity: 0.12;
  pointer-events: none;
}
.trusted-section > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-title);
  color: var(--navy);
  font-size: 40px;
  line-height: normal;
  font-weight: 500;
  text-align: center;
}

.trusted-title {
  max-width: 924px;
  margin: 0 auto 58px;
  display: flex;
  flex-direction: column;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.trusted-title .left {
  text-align: left;
}

.trusted-title .right {
  text-align: right;
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1fr 499px;
  gap: 100px;
  align-items: flex-start;
  max-width: 1150px;
  margin: 0 auto;
}

.trusted-grid > * {
  min-width: 0;
}

.trusted-copy {
  font-size: 16px;
  line-height: normal;
  color: #707372;
}

.accredited-title {
  margin-top: 40px;
  margin-bottom: 24px;
  font-family: var(--font-title);
  color: #020221;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

.logo-grid {
  display: flex;
  column-gap: 64px;
  row-gap: 16px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 551px;
}
.logo-grid .logo-item {
  flex-basis: calc(33.3% - 64px);
}
.logo-grid .logo-item:nth-child(1), .logo-grid .logo-item:nth-child(3), .logo-grid .logo-item:nth-child(5) {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  max-width: 100px;
}
.logo-grid .logo-item:nth-child(2) {
  min-width: 159px;
}
.logo-grid .logo-item:nth-child(4) {
  min-width: 183px;
}
.logo-grid .logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-item {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
  font-weight: normal;
  display: block;
  position: static;
  transform: none;
  margin-top: 4px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.wpcf7 select,
.proposal-card select,
.cta-form select,
.inquiry-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}

.proposal-card--dropdown .svg-icon {
  display: none;
}

.wpcf7-not-valid {
  border-color: #dc3232 !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
}

.wpcf7-spinner {
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  position: relative;
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: calc(50% - 12px);
  margin: 0;
  display: none;
}

.proposal-card {
  width: 499px;
  min-height: 500px;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #b9b9c9;
  border-top: 7px solid var(--navy);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  padding: 48px 31px 32px;
}
.proposal-card form {
  position: relative;
  width: 100%;
  max-width: 435px;
}
.proposal-card p {
  display: block;
  margin: 0;
}
.proposal-card .form-row p {
  display: block;
}
.proposal-card .form-control, .proposal-card .form-select, .proposal-card .select-wrap, .proposal-card .select-wrap select, .proposal-card .wpcf7-form-control-wrap {
  width: 100%;
  max-width: 435px;
}
.proposal-card .select-wrap select, .proposal-card .form-select {
  height: 36px;
  min-height: 36px;
}
.proposal-card .submit-btn {
  width: 100%;
  max-width: 435px;
  height: 52px;
  min-height: 52px;
  margin-bottom: 12px;
}
.proposal-card--dropdown {
  margin-bottom: 24px;
  position: relative;
}
.proposal-card--dropdown select {
  padding: 0 38px 0 16px;
  min-height: 36px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  cursor: pointer;
}
.proposal-card--dropdown .svg-icon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  bottom: 0;
  max-width: fit-content;
  background: #fff;
  margin: 1px 1px 1px 0;
  width: 100%;
  padding-right: 16px;
  pointer-events: none;
}
.proposal-card--dropdown .svg-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
  transform: rotate(0deg);
  transform-origin: center;
}
.proposal-card--dropdown.is-open .svg-icon svg {
  transform: rotate(180deg);
}

.proposal-card h3 {
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 24px;
  color: #020221;
  line-height: normal;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-control,
.form-select {
  width: 100%;
  height: 35px;
  border: 0;
  border-bottom: 1px solid #b8b8b8;
  outline: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  background: transparent;
  margin-bottom: 24px;
}

.form-select {
  border: 1px solid #b8b8b8;
  padding: 0 12px;
  color: #707372;
  margin-top: 0px;
  margin-bottom: 0;
}

.select-wrap,
.proposal-card--dropdown {
  position: relative;
  display: block;
  margin-top: 5px;
  margin-bottom: 18px;
}
.select-wrap .form-select, .select-wrap select,
.proposal-card--dropdown .form-select,
.proposal-card--dropdown select {
  width: 100%;
  margin: 0;
  padding-right: 38px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  cursor: pointer;
}
.select-wrap::after,
.proposal-card--dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: transform 0.25s ease;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
}
.select-wrap.is-open::after,
.proposal-card--dropdown.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.submit-btn {
  width: 100%;
  height: 52px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: 0.25s;
}

.submit-btn:hover {
  background: var(--navy2);
  border-color: var(--gold);
}

.results-section {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.results-section > .container {
  padding-left: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(420px, 707px) minmax(300px, 1fr);
  gap: 104px;
  align-items: start;
  max-width: 100%;
  margin: 0 auto;
}

.results-visual {
  display: block;
  min-height: auto;
  height: 100%;
  min-width: 0;
}

.results-container-img {
  width: 707px;
  height: 464px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.results-content {
  max-width: 100%;
  text-align: left;
  min-width: 0;
}

.results-title {
  font-family: var(--font-title);
  font-size: 40px;
  line-height: normal;
  color: #fff;
  margin: 0 0 38px;
  max-width: 100%;
  font-weight: 500;
}

.results-list {
  width: 100%;
  display: grid;
  gap: 0;
}

.result-row {
  appearance: none;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(200, 160, 58, 0.42);
  background: transparent;
  color: inherit;
  display: flex;
  align-content: center;
  gap: 16px;
  align-items: center;
  padding: 0 0 8px 0;
  text-align: left;
  cursor: pointer;
  transition: 0.25s ease;
  margin-bottom: 40px;
}
.result-row:last-child {
  margin-bottom: 0;
}

.result-row.active {
  border-bottom-color: #c8a03a;
}

.result-row:hover,
.result-row.active {
  transform: translateX(6px);
}

.result-number {
  font-family: var(--font-title);
  font-size: 40px;
  line-height: normal;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  white-space: normal;
  min-width: 0;
}

.result-label {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.46);
  min-width: 0;
}

.result-row:first-child .result-number,
.result-row:first-child .result-label,
.result-row.active .result-number,
.result-row.active .result-label {
  color: #fff;
}

/* CLIENTS EXCELLENCE */
.client-logos {
  padding: 44px 0 54px;
  background: #fff;
}

.client-logos h2 {
  margin-bottom: 34px;
}

.bank-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.quote-mark {
  margin-top: -10px;
  margin-bottom: 24px;
}

.bank-logos img {
  height: 32px;
  object-fit: contain;
}

/* Trusted Local & International Clients — 2×2 grid */
.tl-section {
  margin: 0;
  padding: 0;
}

.tl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.tl-cell {
  min-height: 440px;
}

.tl-image {
  background-size: cover;
  background-position: center;
  background-color: #c8c8c8;
}

@media (width >= 1267px) {
  .tl-image {
    aspect-ratio: 720/500;
  }
}
@media (width <= 1266px) {
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .results-section > .container {
    padding-right: 24px;
  }
}
@media (width >= 992px) and (width < 1200px) {
  .trusted-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    gap: 48px;
  }
  .results-grid {
    gap: 56px;
  }
  .tl-cell {
    min-height: 380px;
  }
}
@media (max-width: 991px) {
  .trusted-section {
    margin-top: -40px;
    padding: 88px 0 60px;
  }
  .rem-right {
    aspect-ratio: inherit;
    min-height: 280px;
  }
}
.tl-text,
.tl-excellence {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
}

.tl-inner {
  max-width: 560px;
  width: 100%;
}

.tl-title {
  font-family: var(--font-title);
  color: var(--navy);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 24px;
}

.tl-copy {
  font-size: 16px;
  line-height: normal;
  color: #707372;
  margin-bottom: 28px;
}

.tl-excellence .tl-inner .btn-navy {
  width: 128px;
  min-height: 54px;
  height: 54px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  box-sizing: border-box;
}

.tl-text .tl-inner > .btn-navy {
  width: auto;
  min-width: 314px;
  min-height: 54px;
  height: 54px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.tl-copy + .btn {
  margin-top: 8px;
}

.tl-text .tl-inner p,
.tl-excellence .tl-inner p {
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: #707372;
  margin-bottom: 16px;
  font-family: "Open Sans", sans-serif;
}
.tl-text .tl-inner p:last-child,
.tl-excellence .tl-inner p:last-child {
  margin-bottom: 0;
}

.tl-excellence .tl-inner p:last-of-type {
  margin-bottom: 24px;
}

.excellence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f6f6f6;
}

.excellence-img {
  min-height: 635px;
  background: url(../images/Cuervo\ Leaders.jpg) center/cover no-repeat;
}

.excellence-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 48px;
}

.excellence-inner {
  max-width: 520px;
}

.years-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.years-badge {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 176.24px;
  height: 139.24px;
}

.years-text {
  font-family: var(--font-title);
  color: var(--navy);
  font-size: 40px;
  line-height: normal;
  font-weight: 500;
}

.years-badge img {
  width: 100%;
  height: auto;
  display: block;
}

.excellence p {
  font-size: 16px;
  line-height: normal;
  color: #707372;
  margin-bottom: 14px;
}

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

.insight-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 48px;
  background: #f5f5f5;
}

.insight-card {
  max-width: 430px;
}

.insight-card h2 {
  font-family: var(--font-title);
  font-size: 40px;
  line-height: normal;
  color: var(--navy);
  margin-bottom: 22px;
}

.insight-card p {
  font-size: 16px;
  line-height: normal;
  color: #707372;
  margin-bottom: 24px;
}

.insight-img {
  min-height: 635px;
  background: url("../images/man-prep-valuation.jpg") center/cover no-repeat;
}

/* SERVICES */
.services-section {
  position: relative;
  padding: 70px 0 72px;
  background-color: #fff;
  background-image: url("../images/services-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/PatternBg.png");
  background-size: 150px 115px;
  opacity: 0.12;
  pointer-events: none;
}
.services-section > .container {
  position: relative;
  z-index: 1;
}

.services-section .section-title {
  margin-bottom: 56px;
}

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

.service-card {
  border: 1px solid var(--navy);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  aspect-ratio: 308/200;
}

.service-card-body {
  padding: 24px;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-texts {
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 24px;
  line-height: normal;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 16px;
  color: #707372;
  line-height: normal;
  font-weight: 400;
}

.read-link {
  display: inline-flex;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  border: 0;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 3px;
  line-height: 150%;
  display: flex;
  align-items: center;
  column-gap: 12px;
  width: fit-content;
}

.read-link span {
  margin-left: 10px;
}

/* PROJECTS */
.projects-section {
  padding: 62px 0 70px;
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  background: rgba(3, 4, 22, 0.9882352941);
  background-image: url("../images/PatternBg.png");
  overflow: hidden;
}

.projects-section:before,
.testimonials:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: radial-gradient(ellipse at center, #f7f2f2 100%);
  background-size: 150px 115px;
  pointer-events: none;
}

.projects-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.projects-head h2 {
  font-family: var(--font-title);
  font-size: 42px;
  margin-bottom: 20px;
}

.projects-head p {
  max-width: 760px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.slider-arrows {
  display: flex;
  gap: 20px;
}

.arrow-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.project-slider {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.project-slider::-webkit-scrollbar {
  height: 8px;
}

.project-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
}

.project-card {
  flex: 0 0 330px;
  min-height: 360px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  background: center/cover no-repeat;
  overflow: hidden;
}

.project-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.78));
}

.project-card > * {
  position: relative;
  z-index: 2;
}

.project-card h3 {
  font-family: var(--font-title);
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.project-card p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

/* TESTIMONIALS */
.testimonials {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  background: #fff;
  background-image: url("../images/PatternBg.png");
  overflow: hidden;
}

.testimonial-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 96px;
  align-items: center;
}

.testimonial-logo {
  background: var(--navy);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slides {
  position: relative;
  min-height: 300px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.quote-mark {
  font-family: Georgia, serif;
  color: var(--navy);
  font-size: 82px;
  line-height: 0.8;
}

.testimonial-slide h2 {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 34px;
}

.testimonial-slide h3 {
  font-family: var(--font-title);
  font-size: 22px;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 14px;
  color: #010114;
}

.testimonial-slide p {
  font-size: 16px;
  color: #707372;
  line-height: normal;
  font-weight: 400;
  max-width: 620px;
}

.testimonial-author {
  margin-top: 22px;
  font-size: 14px;
  color: #707372;
  line-height: normal;
}

.testimonial-controls,
.rem-controls {
  display: flex;
  gap: 22px;
}

.testimonial-controls {
  margin-top: 34px;
}

.control-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 38px;
  color: #111;
  cursor: pointer;
  line-height: 1;
}

.testimonial-slides > .section-title {
  margin-bottom: 40px;
  text-align: left;
}

/* REM */
.rem-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
}

.rem-left {
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px;
}

.rem-box {
  background: #fff;
  padding: 40px;
  max-width: 500px;
}

.rem-box h2 {
  font-family: var(--font-title);
  font-size: 40px;
  color: var(--navy);
  line-height: normal;
  font-weight: 500;
  margin-bottom: 16px;
}

.rem-box p {
  font-size: 16px;
  color: #707372;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 40px;
}

.rem-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.rem-footer .btn-navy {
  width: 193px;
  min-height: 54px;
  height: 54px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  box-sizing: border-box;
  flex: 0 0 auto;
}
.rem-footer .rem-controls {
  flex: 0 0 auto;
  align-items: center;
}

.rem-right {
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 58px;
  overflow: hidden;
}

.rem-right-bg {
  position: absolute;
  inset: 0;
  background: url("../images/accounts.jpg") center/cover no-repeat;
  transition: transform 0.6s ease;
  z-index: 0;
}

.rem-right:hover .rem-right-bg {
  transform: scale(1.06);
}

.rem-right:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.rem-content {
  position: relative;
  z-index: 2;
}

.rem-content h3 {
  font-family: var(--font-title);
  font-size: 32px;
  margin-bottom: 16px;
}

.rem-content p {
  font-size: 16px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
}

/* NEWS + CTA */
.news-section {
  padding: 70px 0 72px;
  background: #fff;
}

.news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0px solid var(--navy);
  margin-bottom: 32px;
}

.news-top h2 {
  font-family: var(--font-title);
  font-size: 40px;
  line-height: normal;
  font-weight: 500;
  color: var(--navy);
}

.news-top a {
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  text-transform: uppercase;
}
.news-top a svg {
  aspect-ratio: 1/1;
  min-width: 16px;
  flex: 0 0 auto;
}

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

.news-card {
  border: 1px solid var(--navy);
  display: flex;
  flex-direction: column;
}
.news-card .news-card-texts {
  display: flex;
  flex-direction: column;
}
.news-card .date {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #707372;
  margin-bottom: 18px;
}
.news-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #707372;
}
.news-card .read-link {
  font-size: 16px;
  line-height: 150%;
  font-weight: 600;
}
.news-card .read-link .svg {
  min-width: 16px;
  aspect-ratio: 1/1;
}

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

.news-card-body {
  padding: 24px;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card h3 {
  font-family: var(--font-title);
  font-size: 24px;
  line-height: normal;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.date {
  font-size: 14px;
  color: #707372;
  margin-bottom: 18px;
}

.news-card p {
  font-size: 16px;
  color: #707372;
  line-height: normal;
}

.valuation-cta {
  background-image: linear-gradient(90deg, rgba(3, 3, 35, 0.8) 0%, rgba(3, 3, 35, 0.05) 100%), url("../images/Homepage-Bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 80px;
  align-items: center;
}

.cta-text h2 {
  font-family: var(--font-title);
  font-size: 50px;
  line-height: normal;
  font-weight: 500;
  color: #fff;
  margin-bottom: 22px;
}

.cta-text p {
  max-width: 520px;
  color: #fff;
  line-height: normal;
  font-weight: 400;
  font-size: 16px;
}

.cta-form {
  background: #fff;
  border-top: 7px solid var(--navy);
  padding: 34px 32px;
}
.cta-form .submit-btn {
  width: 100%;
  padding-inline: 24px;
}
.cta-form form .wpcf7-response-output {
  margin-top: 16px;
}
.cta-form p {
  display: block;
  margin: 0;
}

/* FOOTER */
.footer {
  background: #030416;
  color: #fff;
  padding: 70px 0 34px;
  border-top: 2px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.85fr 1fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.footer-logo {
  width: 305px;
  height: 80px;
  background: url("../images/logo/CA_Full_Logo.png") left center/contain no-repeat;
  margin-bottom: 34px;
}

.footer-contact {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.awards {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.awards img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer h3 {
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 24px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 14px;
}

.footer a {
  font-size: 14px;
  color: #FFFFFF;
  transition: 0.25s;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 0 solid rgba(255, 255, 255, 0.1);
  margin-top: 62px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom a {
  margin-left: 24px;
  text-decoration: underline;
}

.social-icon {
  display: inline-block;
  width: 20px;
}

/* IMAGE HOVER ZOOM */
.project-card {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), background-size 0.9s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  background-size: 100% 100%;
  will-change: transform, background-size;
}

.project-card:hover {
  transform: translateY(-6px) scale(1.015);
  background-size: 108% 108%;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
}

.project-card::before {
  transition: background 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

.rem-right {
  overflow: hidden;
  background-size: 100% 100%;
  transition: background-size 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: background-size;
  aspect-ratio: 760/600;
}

.rem-right:hover {
  background-size: 108% 108%;
  filter: saturate(1.05);
}

.rem-right::before {
  transition: background 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.rem-right:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.7));
}

/* =============================================
   MOBILE NAV
   ============================================= */
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
  .hero {
    min-height: 780px;
  }
  .hero > .container {
    padding-top: 110px;
    padding-bottom: 32px;
  }
  .hero-content {
    padding-top: 0;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(34px, 6vw, 44px);
  }
  .hero-bottom {
    height: 88px;
  }
  .services-divider {
    height: 88px;
  }
  .trusted-grid,
  .excellence,
  .tl-grid,
  .insight,
  .testimonial-wrap,
  .rem-section,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .valuation-cta {
    padding-left: 12px;
    padding-right: 12px;
  }
  .services-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cta-text {
    text-align: center;
  }
  .cta-text p {
    margin-inline: auto;
  }
  .tl-text,
  .tl-excellence {
    padding: 48px 28px;
    justify-content: center;
  }
  .tl-inner {
    text-align: center;
  }
  .years-row {
    justify-content: center;
  }
  .tl-text .tl-inner > .btn-navy,
  .tl-excellence .tl-inner .btn-navy {
    margin-left: auto;
    margin-right: auto;
  }
  .results-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 720px;
  }
  .results-container-img {
    max-width: 100%;
    margin: 0 auto;
  }
  .results-content,
  .results-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .result-row {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .result-row:hover,
  .result-row.active {
    transform: none;
  }
  .service-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trusted-copy,
  .accredited-title {
    text-align: center;
  }
  .logo-grid {
    margin: 0 auto;
  }
  .proposal-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .projects-head {
    align-items: start;
  }
  .testimonial-wrap {
    gap: 42px;
  }
  .testimonials .testimonial-slides {
    text-align: center;
  }
  .testimonials .testimonial-slides > .section-title {
    text-align: center;
  }
  .testimonials .quote-mark {
    display: flex;
    justify-content: center;
  }
  .testimonials .testimonial-slide p {
    margin-left: auto;
    margin-right: auto;
  }
  .testimonials .testimonial-controls {
    justify-content: center;
  }
  .footer {
    padding: 56px 0 30px;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 34px 28px;
    align-items: start;
  }
  .footer-main {
    grid-column: 1/-1;
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 24px;
    width: 280px;
    height: 74px;
    background-position: center;
  }
  .footer-contact,
  .awards {
    justify-content: center;
  }
  .footer-col {
    text-align: center;
  }
  .footer h3 {
    font-size: 22px;
    margin-bottom: 18px;
    text-align: center;
  }
  .footer li {
    margin-bottom: 12px;
  }
  .footer-bottom {
    margin-top: 42px;
    line-height: 1.8;
  }
}
@media (max-width: 575px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    padding-top: 14px;
  }
  .nav-shell {
    padding: 10px;
  }
  .brand-logo {
    width: 190px;
    height: 50px;
  }
  .hamburger {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .main-nav {
    padding: 20px;
  }
  .menu {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .menu a {
    min-height: 50px !important;
    justify-content: flex-start;
  }
  .hero {
    min-height: 720px;
  }
  .hero > .container {
    padding-top: 96px;
    padding-bottom: 24px;
  }
  .hero-content {
    padding-top: 0;
  }
  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 52px;
  }
  .hero-bottom {
    height: 64px;
  }
  .services-divider {
    height: 64px;
  }
  .results-section {
    padding: 58px 0 64px;
  }
  .results-title {
    font-size: 40px;
    margin-bottom: 34px;
  }
  .result-row {
    padding: 22px 0;
  }
  .result-number {
    font-size: 40px;
  }
  .result-label {
    font-size: 14px;
  }
  .form-row,
  .service-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bank-logos {
    justify-content: center;
  }
  .projects-head {
    display: block;
  }
  .slider-arrows {
    margin-top: 22px;
  }
  .project-card {
    flex-basis: 280px;
  }
  .testimonial-logo {
    min-height: 230px;
  }
  .rem-left,
  .rem-right,
  .excellence-content,
  .insight-copy {
    padding: 36px 24px;
  }
  .footer {
    padding: 44px 0 26px;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 34px 22px;
  }
  .footer-main {
    grid-column: 1/-1;
    text-align: center;
  }
  .footer-logo {
    width: 240px;
    height: 64px;
    margin: 0 auto 22px;
  }
  .footer-contact {
    display: grid;
    gap: 10px;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    margin-bottom: 24px;
  }
  .awards {
    justify-content: center;
    gap: 10px;
  }
  .awards img {
    width: 48px;
    height: 48px;
  }
  .footer-col {
    text-align: left;
    min-width: 0;
  }
  .footer-col:nth-of-type(4) {
    grid-column: 1/-1;
    text-align: center;
  }
  .footer-col:nth-of-type(4) ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    max-width: 270px;
    margin: 0 auto;
  }
  .footer-col:nth-of-type(4) li {
    margin-bottom: 0;
    text-align: left;
  }
  .footer h3 {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: left;
  }
  .footer-col:nth-of-type(4) h3 {
    text-align: center;
  }
  .footer a {
    font-size: 12px;
    line-height: 1.35;
  }
  .footer-bottom {
    margin-top: 34px;
    text-align: center;
    font-size: 11px;
    line-height: 1.8;
  }
  .footer-bottom a {
    display: inline-block;
    margin: 8px 8px 0;
  }
}
@media (max-width: 390px) {
  .brand-logo {
    width: 165px;
  }
  .cta-text h2 {
    font-size: 31px;
  }
  .main-nav {
    padding: 18px;
  }
  .footer-grid {
    gap: 30px 16px;
  }
  .footer h3 {
    font-size: 19px;
  }
  .footer a {
    font-size: 11.5px;
  }
}
/* WordPress theme adjustments */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.admin-bar .site-header {
  top: 32px;
}

.page-hero {
  padding-top: 150px;
}

.page-template-service .site-header,
.page-template-service-php .site-header {
  position: absolute;
}

@media (width < 1200px) {
  .site-header {
    position: absolute;
  }
  .page-hero {
    padding-top: 122px;
  }
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
@media (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
}
@media (max-width: 575px) {
  .page-hero {
    padding-top: 112px;
  }
}
@media (width <= 991px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .rem-right {
    aspect-ratio: inherit;
  }
  .testimonial-logo {
    max-width: 500px;
    margin-inline: auto;
  }
  .logo-grid {
    row-gap: 32px;
  }
}
@media (width <= 640px) {
  h1.hero-title {
    font-size: 40px;
  }
  .trusted-title {
    max-width: 300px;
  }
  .result-number {
    font-size: 32px;
  }
  .tl-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .trusted-title,
  .results-title,
  .tl-title,
  .years-text,
  .tl-title,
  .services-section .section-title,
  .testimonial-slides > .section-title,
  .rem-box h2,
  .news-top h2,
  .cta-text h2 {
    font-size: 32px;
  }
  .results-section > .container {
    padding-right: 0;
  }
  .rem-box {
    padding: 24px;
  }
  .result-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    display: grid;
  }
}
/* Collapse nav to hamburger below xl (1200px) breakpoint */
@media (width < 1200px) {
  .site-header {
    position: absolute;
    z-index: 999;
    padding-top: 18px;
  }
  .site-header .container {
    overflow: visible;
  }
  .nav-shell {
    position: relative;
    min-height: 72px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 12, 22, 0.78);
    backdrop-filter: blur(16px);
  }
  .brand {
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
  }
  .brand-logo {
    width: 220px;
    height: 56px;
    background-position: left center;
  }
  .hamburger {
    position: relative;
    z-index: 1002;
    display: flex !important;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
  }
  .main-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    padding: 24px;
    background: rgba(7, 7, 101, 0.97) !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.28s ease;
  }
  .nav-toggle:checked ~ .main-nav {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  .menu {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
    width: 100%;
  }
  .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .menu a {
    display: flex !important;
    align-items: center;
    min-height: 48px !important;
    padding: 0 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.2;
    white-space: normal !important;
  }
  .menu a:after {
    display: none !important;
  }
  .nav-cta {
    width: 100%;
    min-height: 54px;
    margin-top: 2px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff !important;
    background: transparent;
    font-size: 13px;
    font-weight: 800;
  }
  .nav-cta:hover {
    background: #020221;
    color: #fff !important;
    border: #B58F16;
  }
  .nav-toggle:checked + .hamburger span {
    background: transparent !important;
  }
  .nav-toggle:checked + .hamburger span:before {
    top: 0 !important;
    transform: rotate(45deg);
  }
  .nav-toggle:checked + .hamburger span:after {
    top: 0 !important;
    transform: rotate(-45deg);
  }
}
@media (width >= 1200px) {
  .nav-shell {
    gap: 16px;
  }
  .brand-logo {
    width: 280px;
  }
  .main-nav {
    min-width: 0;
    gap: 16px;
  }
  .menu {
    gap: 18px;
    min-width: 0;
  }
  .menu a {
    font-size: 16px;
    min-height: 72px;
    color: #FFFFFF;
  }
  .nav-cta {
    width: 242px;
    height: 54px;
    min-height: 54px;
    padding: 0 24px;
    font-size: 16px;
    flex: 0 0 242px;
    color: #FFFFFF;
  }
}
/* Tighten right-side spacing between xl (1200px) and the full 1440px design
   so the menu and CTA stop overlapping while logo/menu left alignment stays put */
@media (width >= 1200px) and (width <= 1439px) {
  .site-header .container {
    padding-right: 5px;
  }
  .nav-cta {
    width: auto;
    flex: 0 0 auto;
    padding-left: clamp(5px, calc(5px + (100vw - 1200px) / 13), 24px);
    padding-right: clamp(5px, calc(5px + (100vw - 1200px) / 13), 24px);
    font-size: clamp(10px, calc(10px + (100vw - 1200px) / 40), 16px);
    letter-spacing: -0.02em;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero > .container {
    justify-content: center;
    margin-inline: auto;
    width: min(100% - 24px, 1440px);
  }

  .hero-actions {
    justify-content: center;
  }

  .news-grid {
    padding-left: 12px;
    padding-right: 12px;
  }

  .news-top {
    padding-left: 12px;
    padding-right: 12px;
  }
}
