@font-face {
  font-family: "Recoleta";
  src: url("../../font/Recoleta-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("../../font/Recoleta-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("../../font/Recoleta-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-ink: #312e2b;
  --color-muted: #766f68;
  --color-soft: #fbf6f2;
  --color-peach: #ffe4d8;
  --color-peach-strong: #f5b99f;
  --color-footer: #151515;
  --color-line: rgba(49, 46, 43, 0.12);
  --shadow-soft: 0 18px 50px rgba(49, 46, 43, 0.08);
  --radius-media: 26px;
  --font-serif: "Recoleta", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Poppins", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--color-ink);
  font-family: var(--font-sans);
  line-height: 1.65;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.skip-link {
  position: fixed;
  z-index: 1100;
  left: 1rem;
  top: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--color-ink);
}

.container {
  max-width: 1360px;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

.narrow {
  max-width: 720px;
}

.section-pad {
  padding: 6.5rem 0;
}

.section-pad-sm {
  padding: 5.25rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

p {
  font-family: "Poppins", sans-serif !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 27px !important;
  color: #434343;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 2.35rem;
}

.section-kicker,
.eyebrow {
  margin-bottom: 0.45rem;
  color: #434343;
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.section-icon {
  display: grid;
  width: 42px;
  height: 28px;
  margin-bottom: 0.8rem;
  place-items: center;
  color: var(--color-peach-strong);
}

.section-icon::before,
.section-icon::after {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--color-line);
  position: absolute;
}

.section-icon::before {
  transform: translateX(-48px);
}

.section-icon::after {
  transform: translateX(48px);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 5px 5px 5px 25px;
  gap: 1rem;
  border-radius: 999px;
  border: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  --bs-btn-bg: #FFC5AB;
  --bs-btn-border-color: #FFC5AB;
  --bs-btn-color: #2f2a27;
  --bs-btn-hover-bg: #FFC5AB;
  --bs-btn-hover-border-color: #FFC5AB;
  --bs-btn-hover-color: #2f2a27;
  --bs-btn-active-bg: #FFC5AB;
  --bs-btn-active-border-color: #FFC5AB;
  --bs-btn-active-color: #2f2a27;
}

.btn-pill i,
.btn-arrow {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-peach-strong);
  font-size: 0.9rem;
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(245, 185, 159, 0.34);
}

.navbar {
  min-height: 82px;
  padding: 0.9rem 0;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.62), rgba(22, 22, 22, 0));
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.navbar.is-scrolled,
.navbar:has(.navbar-collapse.show) {
  min-height: 72px;
  padding: 0.55rem 0;
  background: rgba(22, 22, 22, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 164px;
  padding: 0;
}

.brand-mark {
  width: 42px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: 0.22rem;
  width: 105px;
}

.brand-wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-wordmark .brand-name {
  height: 14px;
}

.brand-wordmark .brand-tagline {
  height: 5px;
}

.navbar-nav {
  gap: 0.72rem;
}

.navbar .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.55rem 0.3rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.navbar .dropdown-toggle::after {
  width: 9px;
  height: 9px;
  margin-left: 0.45rem;
  border: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  vertical-align: 0.16em;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after,
.navbar .nav-item.dropdown:hover > .dropdown-toggle::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.nav-cta {
  min-height: 42px;
  padding: 0.58rem 0.88rem 0.58rem 1.18rem;
  font-size: 0.78rem;
}

.dropdown-menu {
  min-width: 238px;
  margin-top: 1.1rem;
  padding: 0.72rem;
  border: 1px solid rgba(255, 197, 171, 0.32);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 36px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(255, 197, 171, 0.32);
  border-left: 1px solid rgba(255, 197, 171, 0.32);
  background: rgba(255, 255, 255, 0.96);
  transform: rotate(45deg);
}

.dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  color: #545454;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.35;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dropdown-item::before {
  display: none;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  color: #2a2a2a;
  background: rgba(255, 197, 171, 0.28);
  transform: translateX(2px);
}

@media (min-width: 1200px) {
  .navbar .nav-item.dropdown {
    position: relative;
  }

  .navbar .nav-item.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -18px;
    left: -18px;
    height: 28px;
  }

  .navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 1199.98px) {
  .dropdown-menu {
    margin-top: 0.35rem;
    padding: 0.45rem;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.86);
  }

  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item.active {
    color: #fff;
    background: rgba(255, 197, 171, 0.18);
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(22, 22, 22, 0.96);
  }

  .nav-cta {
    margin-top: 0.75rem;
  }
}

.alw-banner a.btn.btn-primary.btn-pill {
  margin-top: 20px;
}

.hero-section {
  position: relative;
  min-height: 610px;
  background: url("../images/home-hero.png") center / cover no-repeat;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.45));
}

.hero-section > .container {
  z-index: 2;
}

.display-title {
  max-width: 930px;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 5.45rem);
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: #fff !important;
  font-size: 1.14rem;
}

.hero-section .eyebrow {
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 18px !important;
}

.welcome-section {
  background: #fff;
}

.alw-banner,
.services-section {
  background: var(--color-soft);
}

.rounded-media {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  border-radius: var(--radius-media);
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(49, 46, 43, 0.08);
}

.about-img {
  aspect-ratio: 1.24 / 1;
  height: 560px;
}

.service-card,
.testimonial-card,
.accept-item {
  border: 1px solid rgba(49, 46, 43, 0.1);
  background: #fff;
  box-shadow: 0 18px 55px rgba(49, 46, 43, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card {
  overflow: hidden;
  border-radius: 18px;
}

.service-card:hover,
.testimonial-card:hover,
.accept-item:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 185, 159, 0.45);
  box-shadow: 0 24px 70px rgba(49, 46, 43, 0.1);
}

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

.service-card .card-body {
  padding: 1.45rem;
}

.service-card h3 {
  font-size: 1.42rem;
}

.feature-section {
  background: #fff;
}

.accept-section {
  background: #ffe9df;
}

.accept-item {
  min-height: 128px;
  padding: 1.25rem;
  border-radius: 6px;
}

.accept-item i {
  color: var(--color-peach-strong);
  font-size: 1.2rem;
}

.accept-item h3 {
  margin-top: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
}

.accept-item p {
  margin: 0;
  font-size: 0.82rem;
}

.testimonial-card {
  min-height: 320px;
  padding: 2rem;
  border-radius: 16px;
}

.stars {
  margin-bottom: 1.35rem;
  color: #f8bd92;
  letter-spacing: 0.15em;
}

.testimonial-card h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.15rem;
  font-size: 1.28rem;
}

.testimonial-card time {
  color: var(--color-muted);
  font-size: 0.86rem;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.carousel-control-prev,
.carousel-control-next {
  position: static;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-ink);
  opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--color-ink);
  color: #fff;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.partner-grid span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 1rem;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  color: #44617d;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: center;
}

.cta-band {
  padding: 3.5rem 0 0;
  background: linear-gradient(180deg, #fff 0 52%, var(--color-footer) 52% 100%);
}

.cta-box {
  padding: 2rem 2.2rem;
  border-radius: 12px;
  background: #fff8f4;
  box-shadow: var(--shadow-soft);
}

.cta-box h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
}

.cta-box p {
  margin: 0;
}

.section-container {
  max-width: 1360px;
}

.prefooter-cta {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  background: linear-gradient(to bottom, #fff 0, #fff 50%, var(--color-footer) 50%, var(--color-footer) 100%);
}

.tour-card {
  min-height: 126px;
  gap: 28px;
  padding: 31px 48px;
  border-radius: 24px;
  background: #fff8f4;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.08);
}

.tour-card h2 {
  margin-bottom: 6px;
  font-size: 31px;
  line-height: 39px;
}

.tour-card p {
  margin: 0;
  font-size: 15px !important;
  line-height: 23px !important;
}

.tour-card .btn-pill {
  min-width: 175px;
}

.site-footer {
  padding: 4rem 0 1.4rem;
  background: var(--color-footer);
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 24px !important;
  line-height: 34px;
}

.site-footer p,
.site-footer a,
.contact-list span {
  color: #fff;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 15px;
}

.site-footer a:hover {
  color: #FFC5AB;
}

.footer-main {
  --bs-gutter-x: 36px;
  --bs-gutter-y: 38px;
  margin-right: 0;
  margin-left: 0;
  padding-bottom: 42px;
}

.newsletter-form {
  display: flex;
  width: 405px;
  max-width: 100%;
  height: 48px;
  margin: 21px 0 28px;
  padding: 6px;
  border-radius: 999px;
  background: #fff;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--color-ink);
  background: transparent;
}

.newsletter-form button,
.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
}

.newsletter-form button {
  color: #fff;
  background: var(--color-peach-strong);
}

.site-footer .gform_wrapper.newsletter-gform_wrapper {
  width: 405px;
  max-width: 100%;
  margin: 21px 0 28px;
}

.site-footer .gform_wrapper.newsletter-gform_wrapper form {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: #fff;
}

.site-footer .gform_wrapper.newsletter-gform_wrapper .gform-body,
.site-footer .gform_wrapper.newsletter-gform_wrapper .gform_body,
.site-footer .gform_wrapper.newsletter-gform_wrapper .gform_fields,
.site-footer .gform_wrapper.newsletter-gform_wrapper .gfield,
.site-footer .gform_wrapper.newsletter-gform_wrapper .ginput_container {
  display: block;
  min-width: 0;
  flex: 1;
  margin: 0;
  padding: 0;
}

.site-footer .gform_wrapper.newsletter-gform_wrapper .gfield_label,
.site-footer .gform_wrapper.newsletter-gform_wrapper .gform_required_legend,
.site-footer .gform_wrapper.newsletter-gform_wrapper .gfield_validation_message,
.site-footer .gform_wrapper.newsletter-gform_wrapper .validation_message {
  display: none !important;
}

.site-footer .gform_wrapper.newsletter-gform_wrapper input[type="email"] {
  width: 100%;
  min-height: 0;
  border: 0;
  outline: 0;
  padding: 0 10px 0 35px;
  color: #183643;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='0 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.75781 0.0205078H18.2422C19.1971 0.0205078 19.9795 0.825105 19.9795 1.81934V12.7344C19.9795 13.7284 19.1975 14.5332 18.2422 14.5332H1.75781C0.803007 14.5332 0.0205078 13.7287 0.0205078 12.7344V1.81934C0.0205078 0.825343 0.802506 0.0205079 1.75781 0.0205078ZM12.9443 8.12207L11.2695 9.86133C10.5913 10.5655 9.40888 10.5657 8.73047 9.86133L7.05566 8.12207L7.04102 8.10645L7.02637 8.12207L2.0127 13.3271L1.97949 13.3613H18.0205L17.9873 13.3271L12.9736 8.12207L12.959 8.10645L12.9443 8.12207ZM1.15137 12.5625L1.18652 12.5264L6.22852 7.29102L6.24219 7.27734L6.22852 7.2627L1.18652 2.02832L1.15137 1.99121V12.5625ZM18.8135 2.02832L13.7715 7.2627L13.7578 7.27734L13.7715 7.29102L18.8135 12.5264L18.8486 12.5625V1.99121L18.8135 2.02832ZM2.0127 1.22754L9.53125 9.0332C9.65044 9.15696 9.82586 9.21778 10 9.21777C10.1742 9.21775 10.3496 9.15689 10.4688 9.0332L17.9873 1.22754L18.0205 1.19238H1.97949L2.0127 1.22754Z' fill='%23545454' stroke='%237D9F3F' stroke-width='0.0410156'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: 10px 50%;
  background-size: 15px;
}

.site-footer .gform_wrapper.newsletter-gform_wrapper .gform_footer {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin: 0;
  padding: 0;
}

.site-footer .gform_wrapper.newsletter-gform_wrapper .gform_footer::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4325 0.101416L0.75778 7.33067C-0.245791 7.78233 -0.247229 9.21308 0.756342 9.66616L6.43292 12.2168L13.7738 4.64175C13.9157 4.49175 14.1576 4.68833 14.0363 4.85567L7.8836 13.4291V17.7273C7.8836 18.969 9.45766 19.4523 10.1463 18.4041L12.4238 14.9516L16.9483 16.984C17.6963 17.3215 18.5631 16.8496 18.6963 16.0365L20.255 1.4685C20.4192 0.411583 19.2163 -0.388584 18.2438 0.101416H16.4325Z' fill='%23183643'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translate(-50%, -50%);
  content: "";
}

.site-footer .gform_wrapper.newsletter-gform_wrapper input[type="submit"] {
  width: 72px;
  height: 36px;
  min-height: 24px;
  border: 1px solid transparent;
  border-radius: 50% !important;
  padding: 13px 20px !important;
  overflow: hidden;
  color: transparent;
  background: #FFC5AB !important;
  text-indent: -9999px;
  transition: 0.4s;
}

.site-footer .gform_wrapper.newsletter-gform_wrapper input[type="submit"]:hover {
  border-color: #fff;
  background: #fff;
}

div#gform_wrapper_1 {
  display: none;
}

h2.gform_submission_error.hide_summary {
  font-size: 10px !important;
  line-height: 20px !important;
}

div#gform_1_validation_container {
  margin-bottom: 12px;
  padding: 7px;
}

.newsletter-form button,
.social-links a:hover {
  border: 1px solid #fff;
  transition: 0.4s;
  background: #fff !important;
}

.newsletter-form button img,
.social-links a:hover img {
  filter: brightness(0.1);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.social-links img {
  display: block;
  width: 18px;
  height: 18px;
  filter: brightness(20.5);
}

.social-links img[src$="facebook-footer.svg"] {
  width: 10px;
  height: 18px;
}

.social-links img[src$="twitter-footer.svg"] {
  width: 22px;
  height: 22px;
}

.footer-links,
.contact-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.links-two {
  grid-template-columns: minmax(95px, 0.75fr) minmax(170px, 1.25fr);
  column-gap: 36px;
  padding-top: 45px;
}

.footer-links a:hover,
.contact-list a:hover,
.social-links a:hover {
  color: #fff;
}

.contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
}

.contact-list i {
  color: #fff;
}

.footer-bottom {
  margin-top: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible,
.hero-section {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .dropdown-menu {
    margin-top: 0.35rem;
    padding: 0.45rem;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.86);
  }

  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item.active {
    color: #fff;
    background: rgba(255, 197, 171, 0.18);
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(22, 22, 22, 0.96);
  }

  .links-two {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .tour-card {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .nav-cta {
    margin-top: 0.75rem;
  }

  .hero-section {
    min-height: 680px;
  }

  .section-pad {
    padding: 5rem 0;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 4rem 0;
  }

  .section-pad-sm {
    padding: 3.8rem 0;
  }

  .hero-section {
    min-height: 500px;
    background-position: center;
  }

  .display-title {
    font-size: 35px;
    line-height: 42px;
  }

  .rounded-media,
  .about-img {
    aspect-ratio: 1.1 / 1;
    border-radius: 20px;
  }

  .service-card img {
    height: 220px;
  }

  .testimonial-card {
    min-height: auto;
  }

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

  .cta-band {
    background: linear-gradient(180deg, #fff 0 40%, var(--color-footer) 40% 100%);
  }

  .cta-box {
    padding: 1.6rem;
  }
}

p {
  font-family: "Poppins", sans-serif !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 27px !important;
  color: #434343;
}

.welcome-section .container.narrow {
  max-width: 920px;
}

.welcome-section .container.narrow p {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

/* Figma divider image assets for subheadings */
.centered-line::before,
.section-icon::before {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-left.svg") center / contain no-repeat !important;
}

.centered-line::after,
.right-line::after,
.section-icon::after,
.mini-ornament::after {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-right.svg") center / contain no-repeat !important;
}

.hero-kicker span:first-child {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-left.svg") center / contain no-repeat !important;
}

.hero-kicker span:last-child {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-right.svg") center / contain no-repeat !important;
}

@media (max-width: 991.98px) {
  .partners-section {
    padding: 70px 0;
  }

  .partners-section .section-heading {
    margin-bottom: 42px;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .partner-grid span,
  .partner-grid span:nth-child(6n),
  .partner-grid span:nth-last-child(-n + 6) {
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }

  .partner-grid span:nth-child(3n) {
    border-right: 0;
  }

  .partner-grid span:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .partners-section h2 {
    font-size: 34px !important;
    line-height: 39px !important;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .partner-grid span,
  .partner-grid span:nth-child(3n),
  .partner-grid span:nth-last-child(-n + 3) {
    min-height: 82px;
    padding: 16px 20px;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }

  .partner-grid span:nth-child(2n) {
    border-right: 0;
  }

  .partner-grid span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .partner-grid img {
    max-width: 124px;
    max-height: 50px;
  }
}

@media (max-width: 767px) {
  .btn-pill i,
  .btn-arrow {
    width: 35px !important;
    height: 35px !important;
    background-size: 9px !important;
    flex: 0 0 35px !important;
  }

  .service-card h3 {
    font-size: 25px !important;
    line-height: 37px !important;
  }

  #accept .section-kicker .col-sm-6 {
    flex: 0 0 100%;
    width: 100%;
  }

  #accept .row > [class*="col-"] {
    width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }

  .site-footer > .container .footer-main {
    padding-top: 0;
  }

  .hero-section {
    min-height: 500px;
    background-position: center;
  }
}

@media (max-width: 767.98px) {
  .alw-banner {
    min-height: 100% !important;
  }
}

@media (max-width: 767.98px) {
  .centered-line::before,
  .centered-line::after,
  .right-line::after,
  .section-icon::before,
  .section-icon::after,
  .mini-ornament::after {
    width: 30px;
  }

  section#about .col-lg-6,
  section#feature .col-lg-6,
  .row.footer-main .col-md-6 {
    padding: 0 5px;
  }
}

@media (max-width: 767.98px) {
  p {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  section,
  .section-pad,
  .section-pad-sm,
  .welcome-section,
  .alw-banner,
  .services-section,
  .feature-section,
  .accept-section,
  .testimonials-section,
  .partners-section,
  .cta-section,
  .prefooter-cta {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .experience-section {
    margin-bottom: 35px !important;
  }

  .alw-banner {
    min-height: 100% !important;
  }
}

/* Final responsive heading overrides */
@media (max-width: 1024px) {
  a.btn.btn-primary.btn-pill {
    width: auto;
    justify-content: space-between;
    font-size: 15px !important;
    line-height: 25px !important;
  }

  .alw-banner {
    min-height: 100%;
  }

  .container,
  .container-fluid {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .container,
  .section-container,
  .content-container,
  .header-container,
  .narrow,
  .wide-container,
  .partner-container,
  .testimonial-slider {
    max-width: 100% !important;
  }

  main h2,
  footer .tour-card h2,
  .section-heading h2,
  .partners-section h2 {
    font-size: 35px !important;
    line-height: 45px !important;
  }
}

@media (max-width: 575.98px) {
  main h2,
  footer .tour-card h2,
  .section-heading h2,
  .partners-section h2 {
    font-size: 30px !important;
    line-height: 38px !important;
  }
}

/* Tablet and mobile side navigation */
.mobile-menu-offcanvas {
  box-sizing: border-box;
  width: min(390px, calc(100vw - 16px)) !important;
  max-width: calc(100vw - 16px);
  overflow-x: hidden;
  border-left: 1px solid rgba(255, 197, 171, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 197, 171, 0.1), rgba(255, 255, 255, 0) 32%),
    #151515;
  color: #fff;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.38);
}

.mobile-menu-offcanvas .offcanvas-header {
  min-height: 98px;
  align-items: center;
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: space-between;
}

.offcanvas-logo {
  display: inline-flex;
  width: 205px;
  max-width: calc(100% - 58px);
}

.offcanvas-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-menu-offcanvas .btn-close {
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  background-size: 13px;
  opacity: 1;
}

.mobile-menu-offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 22px 26px 28px;
}

.mobile-menu-nav {
  display: grid;
  gap: 0;
}

.mobile-menu-nav a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 0;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.mobile-menu-nav a::after {
  display: none;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus {
  background: rgba(255, 197, 171, 0.14);
  color: #fff;
  transform: translateX(-2px);
}

.mobile-menu-cta {
  width: 100%;
  justify-content: space-between;
  margin-top: 24px;
}

.offcanvas-backdrop.show {
  opacity: 0.58;
}

/* Pre-footer CTA now lives inside the footer on every page. */
.site-footer {
  padding-top: 0;
}

.site-footer > .container .footer-main {
  padding-top: 42px;
}

.site-footer > .container .footer-main a {
  font-size: 15px;
}

.row.footer-main p {
  font-size: 15px !important;
}

.site-footer .tour-card h2 {
  margin-bottom: 6px;
  color: #545454 !important;
  font-size: 30px !important;
  line-height: 39px !important;
}

.site-footer .tour-card p {
  color: #545454;
  font-size: 15px !important;
  line-height: 23px !important;
}

.site-footer .tour-card .btn-pill {
  color: #2a2a2a;
  font-size: 18px;
  line-height: 27px;
}

@media (max-width: 1199.98px) {
  .site-header .navbar,
  .navbar {
    min-height: 82px;
    padding: 1.2rem 0;
  }
}

@media (max-width: 1024px) {
  h2 {
    font-size: 35px !important;
    line-height: 45px !important;
  }
}

footer.site-footer {
  padding-top: 0;
}

footer.site-footer h2 {
  margin-bottom: 6px;
  color: #fff !important;
  font-size: 27px !important;
  line-height: 37px !important;
}

@media (max-width: 991.98px) {
  .partners-section {
    padding: 70px 0;
  }

  .partners-section .section-heading {
    margin-bottom: 42px;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-grid span,
  .partner-grid span:nth-child(6n),
  .partner-grid span:nth-last-child(-n + 6) {
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }

  .partner-grid span:nth-child(3n) {
    border-right: 0;
  }

  .partner-grid span:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .partners-section h2 {
    font-size: 34px !important;
    line-height: 39px !important;
  }

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

  .partner-grid span,
  .partner-grid span:nth-child(3n),
  .partner-grid span:nth-last-child(-n + 3) {
    min-height: 82px;
    padding: 16px 20px;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }

  .partner-grid span:nth-child(2n) {
    border-right: 0;
  }

  .partner-grid span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .partner-grid img {
    max-width: 124px;
    max-height: 50px;
  }
}

/* Final testimonial section match */
.testimonials-section {
  padding: 86px 0 76px !important;
}

.testimonials-section .section-heading {
  margin-bottom: 26px !important;
}

.testimonial-slider {
  max-width: 1360px !important;
  margin: 0 auto;
}

.testimonial-track {
  gap: 30px !important;
}

.testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3) !important;
  min-height: 360px !important;
  padding: 30px 34px 24px !important;
  border: 1px solid rgba(84, 84, 84, 0.18) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

.testimonial-card:first-child,
.testimonial-card:hover {
  box-shadow: 0 24px 60px rgba(42, 42, 42, 0.08) !important;
}

.testimonial-card .stars {
  margin-bottom: 34px !important;
  color: #ffc5ab !important;
  font-size: 18px !important;
  line-height: 1 !important;
  letter-spacing: 3px !important;
}

.testimonial-card p {
  margin-bottom: 28px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 21px !important;
  color: #545454 !important;
}

.testimonial-card h3 {
  margin: 0 0 2px !important;
  font-family: "Recoleta", "Cormorant Garamond", Georgia, serif !important;
  font-weight: 400 !important;
  font-size: 25px !important;
  line-height: 31px !important;
  letter-spacing: -0.02em !important;
  color: #545454 !important;
}

.testimonial-card time {
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 20px !important;
  color: #545454 !important;
}

.testimonial-progress {
  height: 3px !important;
  background: #eeeae6 !important;
}

.testimonial-progress-bar {
  background: #545454 !important;
}

.testimonial-control {
  width: 30px !important;
  height: 30px !important;
}

@media (max-width: 991.98px) {
  .testimonial-card {
    flex-basis: calc((100% - 30px) / 2) !important;
  }
}

@media (max-width: 767.98px) {
  .btn-pill i,
  .btn-arrow {
    width: 35px;
    height: 35px;
    background-size: 9px;
  }

  .testimonial-card {
    flex-basis: 100% !important;
    min-height: 360px !important;
  }
}

.btn-pill {
  font-family: "Poppins", sans-serif !important;
  font-style: normal;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 27px !important;
  color: #2A2A2A !important;
}

#accept.accept-section {
  padding: 64px 0 58px;
  background: #ffebdf;
}

.page-id-137 #accept.accept-section {
  display: block;
}

#accept .section-heading {
  max-width: 100%;
  margin-bottom: 30px;
}

#accept .section-kicker {
  margin-bottom: 10px;
  color: #545454;
  font-size: 15px !important;
  line-height: 22px !important;
}

#accept h2 {
  margin-bottom: 10px;
}

#accept .section-heading > p:not(.section-kicker) {
  margin-bottom: 0;
  font-size: 18px !important;
  line-height: 26px !important;
  color: #545454;
}

#accept .row {
  justify-content: center;
  gap: 18px;
}

#accept .row > [class*="col-"] {
  width: 290px;
  flex: 0 0 290px;
  padding: 0;
}

#accept .accept-item {
  height: 96px;
  min-height: 131px;
  padding: 17px 20px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
  grid-template-columns: 18px 1fr;
  column-gap: 8px;
}

/* Figma-style testimonial slider */
.testimonials-section {
  background: #fff;
  padding: 92px 0 82px;
}

.testimonials-section .section-heading {
  margin-bottom: 28px;
}

.testimonial-slider {
  max-width: 1360px !important;
  margin: 0 auto;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-height: 350px;
  padding: 32px 34px 26px;
  border: 1px solid rgba(84, 84, 84, 0.18);
  border-radius: 20px;
  background: #fff;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.testimonial-card:first-child {
  box-shadow: 0 24px 60px rgba(42, 42, 42, 0.08);
}

.testimonial-card:hover {
  transform: none;
  box-shadow: 0 24px 60px rgba(42, 42, 42, 0.08);
}

.stars {
  margin-bottom: 34px;
  color: #ffc5ab;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 3px;
}

.testimonial-card p {
  margin-bottom: 28px;
  font-size: 14px !important;
  line-height: 21px !important;
  color: #545454;
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-card h3 {
  margin: 0 0 2px;
  font-size: 25px !important;
  line-height: 31px !important;
  color: #545454 !important;
}

.testimonial-card time {
  color: #545454;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
}

.testimonial-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}

.testimonial-progress {
  height: 3px;
  overflow: hidden;
  background: #eeeae6;
}

.testimonial-progress-bar {
  display: block;
  width: 25%;
  height: 100%;
  background: #545454;
  transition: width 0.35s ease;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.testimonial-control {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #6a6a6a;
  border-radius: 50%;
  color: #fff;
  background: #6a6a6a;
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-control img {
  width: 12px;
  height: 12px;
  display: block;
}

.testimonial-control:hover,
.testimonial-control.is-active {
  border-color: #6a6a6a;
  background: #6a6a6a;
  transform: translateY(-1px);
}

@media (max-width: 991.98px) {
  .testimonial-card {
    flex-basis: calc((100% - 30px) / 2);
  }
}

@media (max-width: 767.98px) {
  .testimonials-section {
    padding: 30px 0 !important;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 330px;
    padding: 28px 26px;
  }

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

  .testimonial-controls {
    justify-content: flex-end;
  }
}

#accept .accept-item:hover {
  transform: none;
  box-shadow: none;
}

#accept .accept-item i {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  color: #ffc5ab;
  font-size: 14px;
  line-height: 1;
}

#accept .accept-check {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

#accept .accept-item h3 {
  margin-bottom: 9px;
  font-family: "Recoleta", "Cormorant Garamond", Georgia, serif !important;
  font-weight: 300 !important;
  font-size: 20px !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
  color: #545454 !important;
}

#accept .accept-item p {
  font-size: 16px !important;
  line-height: 22px !important;
  color: #545454;
}

h2 {
  font-family: "Recoleta", "Cormorant Garamond", Georgia, serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 45px !important;
  line-height: 50px !important;
  letter-spacing: -0.02em !important;
  text-transform: capitalize !important;
  color: #545454 !important;
}

h3 {
  font-family: "Recoleta", "Cormorant Garamond", Georgia, serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 30px !important;
  line-height: 41px !important;
  letter-spacing: -0.02em !important;
  text-transform: capitalize !important;
  color: #545454 !important;
}

/* Final paragraph typography spec */
p {
  font-family: "Poppins", sans-serif !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 27px !important;
  color: #434343;
}

/* Figma divider image assets for subheadings */
.centered-line::before,
.section-icon::before {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-left.svg") center / contain no-repeat !important;
}

.centered-line::after,
.right-line::after,
.section-icon::after,
.mini-ornament::after {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-right.svg") center / contain no-repeat !important;
}

.hero-kicker span:first-child {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-left.svg") center / contain no-repeat !important;
}

.hero-kicker span:last-child {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-right.svg") center / contain no-repeat !important;
}

@media (max-width: 420px) {
  .brand-logo {
    min-width: 150px;
    gap: 0.48rem;
  }

  .brand-mark {
    width: 38px;
    height: 34px;
  }

  .brand-wordmark {
    width: 96px;
  }

  .partner-grid span {
    min-height: 68px;
    font-size: 0.82rem;
  }
}

/* Figma-tight homepage pass */
:root {
  --font-serif: "Recoleta", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Poppins", Arial, sans-serif;
}

.container {
  max-width: 1360px;
}

body {
  font-weight: 300;
}

p {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.55;
}

p {
  font-family: "Poppins", sans-serif !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 27px !important;
  color: #434343;
  --bs-body-font-size: 18px;
}

h2 {
  font-size: clamp(2.15rem, 3.15vw, 3.6rem);
}

.section-pad {
  padding: 6rem 0;
}

.section-pad-sm {
  padding: 5.4rem 0;
}

.section-kicker,
.eyebrow {
  color: #434343;
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

p.section-kicker.centered-line {
  font-size: 20px !important;
}

.centered-line,
.right-line {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.centered-line::before,
.centered-line::after,
.right-line::after {
  content: "";
  width: 34px;
  height: 1px;
  background: #ffc7b3;
}

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 28px;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.section-icon::before,
.section-icon::after {
  position: static;
  width: 44px;
  background: #ffc7b3;
  transform: none;
}

.section-icon img {
  width: 26px;
  height: 24px;
  object-fit: contain;
}

.btn-pill {
  min-height: 54px;
  padding: 0.5rem 0.46rem 0.5rem 1.72rem;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: none;
}

.btn-pill i,
.btn-arrow {
  width: 50px;
  height: 50px;
  color: #6f6b66;
  background: #fff;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background-image: url("../img/button-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.btn-arrow {
  display: inline-block;
  flex: 0 0 50px;
  background: #fff url("../images/button-arrow.svg") center / 12px 12px no-repeat;
}

.navbar {
  min-height: 106px;
  padding: 1.9rem 0 1.35rem;
}

.navbar::after {
  content: "";
  position: absolute;
  right: 5.2%;
  bottom: 0;
  left: 5.2%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.navbar.is-scrolled,
.navbar:has(.navbar-collapse.show) {
  min-height: 76px;
  padding: 0.72rem 0;
}

.brand-logo {
  width: 208px;
  min-width: 208px;
  gap: 0;
}

.brand-logo > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.navbar-nav {
  gap: 2.25rem;
}

.navbar .nav-link {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  padding: 0.55rem 0.2rem;
  white-space: nowrap;
}

.navbar > .container {
  max-width: 1360px;
}

.navbar > .header-container {
  max-width: 91%;
}

@media (max-width: 1440px) {
  .navbar-nav {
    gap: 15px;
  }

  .navbar > .header-container {
    max-width: 96%;
  }
}

.hero-section > .container {
  transform: translateY(120px);
}

.nav-cta {
  min-width: 206px;
  min-height: 60px;
  justify-content: space-between;
  padding: 0.38rem 0.44rem 0.38rem 1.85rem;
  font-size: 1.18rem;
}

.hero-section {
  min-height: clamp(650px, 48.5vw, 810px);
  background-position: center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.14) 45%, rgba(0, 0, 0, 0.43)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28));
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero-kicker span {
  width: 62px;
  height: 1px;
  background: #ffc7b3;
}

.display-title {
  max-width: 1400px;
  font-size: clamp(3rem, 4.25vw, 4.35rem);
  font-weight: 400;
}

.home .display-title {
  max-width: 1400px;
  font-size: 85px;
  line-height: 95px;
  font-weight: 400;
}

.hero-section .container {
  max-width: 1360px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
}

.welcome-section.section-pad {
  padding: 5.8rem 0 6.5rem;
}

.welcome-section h2 {
  font-size: clamp(2.2rem, 2.75vw, 3rem);
  margin-bottom: 20px;
}

.alw-banner {
  display: flex;
  min-height: 462px;
  align-items: center;
}

.alw-banner h2 {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.rounded-media {
  aspect-ratio: 1.25 / 1;
  border-radius: 34px;
}

.about-img {
  aspect-ratio: 0.95 / 1;
  height: 560px;
}

.mini-ornament {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.mini-ornament::after {
  content: "";
  width: 42px;
  height: 1px;
  background: #ffc7b3;
}

.mini-ornament img {
  width: 31px;
  height: 28px;
  object-fit: contain;
}

.service-card {
  border-radius: 24px;
}

.service-card img {
  height: 320px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 1.7rem 1.8rem 2rem;
}

.service-card h3 {
  font-size: 2rem;
}

.accept-section {
  padding: 7.2rem 0;
}

.accept-item {
  display: grid;
  min-height: 118px;
  grid-template-columns: 24px 1fr;
  align-content: start;
  column-gap: 0.55rem;
  padding: 1.45rem 1.35rem;
}

.accept-item h3 {
  margin-top: 0;
  font-size: 1.18rem;
}

.accept-item p {
  grid-column: 2;
  font-size: 0.98rem;
}

.testimonial-card {
  min-height: 520px;
  padding: 3.2rem 3rem;
  border-radius: 24px;
}

.stars {
  margin-bottom: 4rem;
  font-size: 1.4rem;
}

.testimonial-card h3 {
  margin-top: 3.6rem;
  font-size: 2rem;
}

.partner-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1360px;
}

.partner-grid span {
  min-height: 102px;
  font-size: 1.05rem;
}

.partner-grid img {
  max-width: 138px;
  max-height: 56px;
  object-fit: contain;
}

.partners-section {
  padding: 84px 0 86px;
  background: #fff;
}

.partners-section .section-heading {
  max-width: 460px;
  margin-bottom: 64px;
}

.partners-section .section-icon {
  margin-bottom: 12px;
}

.partners-section h2 {
  margin-bottom: 0;
  font-size: 45px !important;
  line-height: 50px !important;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1360px;
  margin: 0 auto;
  border: 0;
}

.partner-grid span {
  display: grid;
  min-height: 94px;
  place-items: center;
  padding: 18px 34px;
  border: 0;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: transparent;
}

.partner-grid span:nth-child(6n) {
  border-right: 0;
}

.partner-grid span:nth-last-child(-n + 6) {
  border-bottom: 0;
}

.partner-grid img {
  width: 100%;
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
}

.cta-band {
  padding: 6rem 0 0;
}

.cta-box {
  padding: 2.15rem 2.6rem;
  border-radius: 0 0 28px 28px;
}

.site-footer {
  padding: 42px 0 0;
}

.site-footer h2 {
  margin-bottom: 6px;
  font-size: 24px !important;
  line-height: 34px;
}

.newsletter-form {
  width: 405px;
  max-width: 100%;
  height: 48px;
  margin: 21px 0 28px;
  padding: 6px;
}

.newsletter-form button,
.social-links a {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.social-links a {
  background: transparent;
  border: 0;
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 1rem;
  }

  .navbar .nav-link {
    font-size: 0.9rem;
  }

  .brand-logo {
    width: 180px;
    min-width: 180px;
  }
}

@media (max-width: 1024px) {
  h1 {
    color: #fff;
    font-size: 45px;
    line-height: 55px;
  }

  .home .display-title {
    font-size: 45px;
    line-height: 55px;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 82px;
    padding: 1.2rem 0;
  }

  .brand-logo,
  .brand-logo > img {
    width: 168px;
    min-width: 168px;
  }

  .hero-section > .container {
    transform: translateY(36px);
  }
}

@media (max-width: 767.98px) {
  p {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  p {
    font-size: 1rem;
  }

  .display-title {
    font-size: 35px;
    line-height: 42px;
  }

  .home .display-title {
    font-size: 35px;
    line-height: 42px;
  }

  .hero-kicker span {
    width: 32px;
  }

  .hero-kicker span:first-child {
    max-width: 30px;
  }

  .hero-kicker span:last-child {
    max-width: 30px;
  }

  .btn-pill i,
  .btn-arrow {
    width: 35px;
    height: 35px;
    background-size: 9px;
  }

  .about-img {
    aspect-ratio: 0.95 / 1;
    height: 100%;
  }

  #accept .row {
    justify-content: center;
    gap: 10px;
  }

  .service-card img {
    height: 235px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 2rem;
  }

  .stars,
  .testimonial-card h3 {
    margin-top: 1.8rem;
    margin-bottom: 1.5rem;
  }

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

p {
  font-family: "Poppins", sans-serif !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  line-height: 27px !important;
  color: #434343;
}

/* Figma divider image assets for subheadings */
.centered-line::before,
.section-icon::before {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-left.svg") center / contain no-repeat !important;
}

.centered-line::after,
.right-line::after,
.section-icon::after,
.mini-ornament::after {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-right.svg") center / contain no-repeat !important;
}

.hero-kicker span:first-child {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-left.svg") center / contain no-repeat !important;
}

.hero-kicker span:last-child {
  width: 48px !important;
  height: 6px !important;
  background: url("../img/divider-right.svg") center / contain no-repeat !important;
}

@media (max-width: 425px) {
  footer.site-footer .col-lg-3.col-md-6 {
    margin-top: 11px !important;
  }

  .hero-section {
    min-height: 520px !important;
    background-position: center;
  }

  #accept .row > [class*="col-"] {
    width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }

  .centered-line::before,
  .centered-line::after,
  .right-line::after,
  .section-icon::before,
  .section-icon::after,
  .mini-ornament::after,
  .hero-kicker span {
    width: 30px !important;
  }
}

/* Final partner grid responsive overrides */
@media (max-width: 991.98px) {
  .partners-section {
    padding: 70px 0;
  }

  .partners-section .section-heading {
    margin-bottom: 42px;
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .partner-grid span,
  .partner-grid span:nth-child(6n),
  .partner-grid span:nth-last-child(-n + 6) {
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }

  .partner-grid span:nth-child(3n) {
    border-right: 0;
  }

  .partner-grid span:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .partners-section h2 {
    font-size: 34px !important;
    line-height: 39px !important;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .partner-grid span,
  .partner-grid span:nth-child(3n),
  .partner-grid span:nth-last-child(-n + 3) {
    min-height: 82px;
    padding: 16px 20px;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }

  .partner-grid span:nth-child(2n) {
    border-right: 0;
  }

  .partner-grid span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .partner-grid img {
    max-width: 124px;
    max-height: 50px;
  }
}
