@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans@latest/500-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans@latest/600.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans@latest/600-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-sans@latest/700-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/500-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/600.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/600-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/700-italic.css";

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #2a2a2a;
  background: #fff
}

.top_utility_bar {
  background: linear-gradient(135deg, #EDE9E8 0%, #E5B4AB 100%);
  padding: 8px 0;
  border-bottom: 1px solid #d6616826
}

.top_utility_bar .uk-container {
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px
}

.contact_info_group {
  display: flex;
  gap: 32px;
  align-items: center
}

.contact_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #3d3d3d;
  text-decoration: none;
  transition: color .6s ease
}

.contact_item:hover {
  color: #D66168
}

.contact_item .lnr {
  font-size: 15px;
  color: #D66168
}

.utility_actions {
  display: flex;
  gap: 16px;
  align-items: center
}

.language_toggle {
  background: #fff;
  border: 1px solid #d6616833;
  padding: 4px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #D66168;
  cursor: pointer;
  transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.language_toggle:hover {
  background: #fef8f9;
  box-shadow: 0 1px 5px 1px #d6616814
}

.language_toggle:focus {
  background: #fef1f2;
  outline: none
}

.primary_header_shell {
  background: #fff;
  box-shadow: 0 7px 20px 1px #d6616817;
  position: relative
}

.logo_mount {
  display: flex;
  justify-content: center;
  padding: 24px 0;
  background: linear-gradient(180deg, #fff 0%, #fefbfb 100%);
  border-bottom: 2px solid #EDE9E8
}

.brand_image_hold {
  width: 72px;
  height: 72px;
  padding: 8px;
  background: #fff;
  border-radius: 24px 2px 24px 2px;
  box-shadow: 0 1px 5px 1px #d6616814;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e5b4ab4d
}

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

.nav_bar_mount {
  padding: 16px 0
}

.nav_bar_mount .uk-container {
  max-width: 1600px;
  padding: 0 24px;
  display: flex;
  justify-content: center
}

.primary_menu_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center
}

.menu_link_item {
  margin: 0
}

.menu_anchor {
  display: block;
  padding: 8px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #3d3d3d;
  text-decoration: none;
  border-radius: 9px;
  transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease;
  font-family: 'Rubik', sans-serif;
  position: relative
}

.menu_anchor:hover {
  background: linear-gradient(135deg, #fef5f6 0%, #fef9f8 100%);
  color: #D66168;
  box-shadow: 0 1px 5px 1px #d6616814
}

.menu_anchor:focus {
  background: #fef1f2;
  outline: none
}

.menu_anchor:active {
  transform: scale(0.98)
}

.primary_footer_shell {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #e8e8e8;
  padding: 64px 0 32px;
  margin-top: 64px
}

.footer_card_hold {
  background: #ffffff08;
  border-radius: 16px;
  padding: 32px;
  box-shadow: inset 0 1px 5px 1px #d6616814;
  max-width: 1600px;
  margin: 0 auto 32px
}

.footer_grid_mount {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 32px
}

.footer_column_hold {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer_heading_text {
  font-size: 21px;
  font-weight: 600;
  color: #D66168;
  margin: 0 0 8px;
  font-family: 'Rubik', sans-serif;
  line-height: 1.3
}

.footer_nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer_nav_item {
  margin: 0
}

.footer_nav_anchor {
  font-size: 15px;
  color: #c8c8c8;
  text-decoration: none;
  transition: color .6s ease, padding-left .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block
}

.footer_nav_anchor:hover {
  color: #E5B4AB;
  padding-left: 4px
}

.footer_nav_anchor:focus {
  background: #d661681a;
  outline: none
}

.contact_detail_hold {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact_line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #c8c8c8
}

.contact_line .lnr {
  font-size: 21px;
  color: #E5B4AB;
  flex-shrink: 0;
  margin-top: 2px
}

.contact_link {
  color: #c8c8c8;
  text-decoration: none;
  transition: color .6s ease
}

.contact_link:hover {
  color: #D66168
}

.contact_link:focus {
  background: #d661681a;
  outline: none
}

.footer_divider_line {
  height: 1px;
  background: linear-gradient(90deg, #d6616800 0%, #d6616833 50%, #d6616800 100%);
  margin: 32px 0;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto
}

.footer_bottom_hold {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 32px
}

.copyright_text {
  font-size: 13px;
  color: #888;
  margin: 0
}

.footer_utility_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.footer_utility_item {
  margin: 0
}

.footer_utility_anchor {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color .6s ease
}

.footer_utility_anchor:hover {
  color: #E5B4AB
}

.footer_utility_anchor:focus {
  background: #d661681a;
  outline: none
}

.consent_popup_shell {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  box-shadow: 0 8px 44px 1px #d661681c;
  padding: 24px 32px;
  z-index: 1500;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .32s ease, transform .32s ease;
  border-top: 3px solid #D66168
}

.consent_popup_shell.visible {
  opacity: 1;
  transform: translateY(0)
}

.consent_inner_hold {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.consent_text_hold {
  flex: 1;
  min-width: 280px
}

.consent_description {
  font-size: 15px;
  line-height: 1.6;
  color: #e8e8e8;
  margin: 0
}

.consent_actions_hold {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.consent_button_primary {
  background: linear-gradient(135deg, #D66168 0%, #c55158 100%);
  color: #fff;
  border: none;
  padding: 8px 32px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .6s ease, box-shadow .6s ease, transform .2s ease;
  font-family: 'Rubik', sans-serif;
  box-shadow: 0 1px 5px 1px #d6616814
}

.consent_button_primary:hover {
  background: linear-gradient(135deg, #c55158 0%, #b44850 100%);
  box-shadow: 0 7px 20px 1px #d6616817
}

.consent_button_primary:focus {
  background: #b44850;
  outline: none
}

.consent_button_primary:active {
  transform: scale(0.96)
}

.consent_button_secondary {
  background: transparent;
  color: #E5B4AB;
  border: 2px solid #e5b4ab66;
  padding: 6px 24px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .6s ease, border-color .6s ease, color .6s ease, transform .2s ease;
  font-family: 'Rubik', sans-serif
}

.consent_button_secondary:hover {
  background: #e5b4ab1a;
  border-color: #e5b4ab99;
  color: #fff
}

.consent_button_secondary:focus {
  background: #e5b4ab26;
  outline: none
}

.consent_button_secondary:active {
  transform: scale(0.96)
}

@media (max-width: 1024px) {
  .top_utility_bar .uk-container {
    flex-direction: column;
    gap: 16px;
    padding: 8px 16px
  }

  .contact_info_group {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 100%
  }

  .utility_actions {
    width: 100%;
    justify-content: center
  }

  .nav_bar_mount .uk-container {
    padding: 0 16px
  }

  .primary_menu_list {
    gap: 4px
  }

  .menu_anchor {
    padding: 8px 16px;
    font-size: 13px
  }

  .footer_grid_mount {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer_card_hold {
    padding: 24px
  }

  .footer_bottom_hold {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px
  }

  .consent_inner_hold {
    flex-direction: column;
    gap: 24px
  }

  .consent_actions_hold {
    width: 100%;
    justify-content: center
  }
}

@media (max-width: 768px) {
  .contact_info_group {
    gap: 8px
  }

  .contact_item {
    font-size: 13px
  }

  .brand_image_hold {
    width: 64px;
    height: 64px
  }

  .logo_mount {
    padding: 16px 0
  }

  .primary_menu_list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px
  }

  .menu_anchor {
    text-align: center;
    padding: 8px 16px
  }

  .footer_heading_text {
    font-size: 21px
  }

  .consent_popup_shell {
    padding: 16px
  }

  .consent_actions_hold {
    flex-direction: column;
    width: 100%
  }

  .consent_button_primary,
  .consent_button_secondary {
    width: 100%;
    text-align: center
  }
}

@media (max-width: 320px) {
  .top_utility_bar .uk-container {
    padding: 8px
  }

  .contact_item {
    font-size: 13px
  }

  .brand_image_hold {
    width: 56px;
    height: 56px
  }

  .nav_bar_mount .uk-container {
    padding: 0 8px
  }

  .menu_anchor {
    font-size: 13px;
    padding: 8px
  }

  .footer_card_hold {
    padding: 16px
  }

  .footer_bottom_hold {
    padding: 0 16px
  }

  .consent_popup_shell {
    padding: 16px 8px
  }
}

.policy_content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
  background: #fff
}

.policy_content h1 {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #1a1a2e;
  margin: 0 0 32px
}

.policy_content h2 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #2d2d44;
  margin: 64px 0 24px
}

.policy_content h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #3a3a52;
  margin: 32px 0 16px
}

.policy_content h4 {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -.005em;
  color: #4a4a62;
  margin: 24px 0 16px;
  font-weight: 600
}

.policy_content h5 {
  font-size: 15px;
  line-height: 1.3;
  color: #5a5a72;
  margin: 24px 0 8px;
  font-weight: 600
}

.policy_content h6 {
  font-size: 13px;
  line-height: 1.3;
  color: #6a6a82;
  margin: 16px 0 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.policy_content p {
  font-size: 15px;
  line-height: 1.9;
  color: #2d2d44;
  margin: 0 0 24px
}

.policy_content strong,
.policy_content b {
  font-weight: 600;
  color: #1a1a2e
}

.policy_content ul,
.policy_content ol {
  margin: 0 0 24px;
  padding: 0 0 0 32px
}

.policy_content li {
  font-size: 15px;
  line-height: 1.9;
  color: #2d2d44;
  margin: 0 0 8px
}

.policy_content li:last-child {
  margin-bottom: 0
}

.policy_content ul ul,
.policy_content ol ol,
.policy_content ul ol,
.policy_content ol ul {
  margin: 8px 0 0
}

.policy_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 32px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 5px 1px #d6616814
}

.policy_content thead {
  background: #EDE9E8
}

.policy_content th {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  color: #1a1a2e;
  text-align: left;
  padding: 16px 24px;
  border-bottom: 2px solid #E5B4AB
}

.policy_content td {
  font-size: 15px;
  line-height: 1.6;
  color: #2d2d44;
  padding: 16px 24px;
  border-bottom: 1px solid #EDE9E8
}

.policy_content tbody tr:last-child td {
  border-bottom: none
}

.policy_content tbody tr {
  transition: background-color .5s ease
}

.policy_content tbody tr:hover {
  background: #fafbfc
}

.policy_content hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #D66168 0%, #E5B4AB 100%);
  margin: 64px 0;
  border-radius: 2px
}

.policy_content div {
  margin: 0 0 24px
}

@media (max-width: 1024px) {
  .policy_content {
    padding: 32px 24px
  }

  .policy_content h1 {
    font-size: 28px;
    margin-bottom: 24px
  }

  .policy_content h2 {
    font-size: 21px;
    margin-top: 32px
  }

  .policy_content h3 {
    font-size: 15px
  }

  .policy_content table {
    font-size: 13px
  }

  .policy_content th,
  .policy_content td {
    padding: 8px 16px
  }
}

@media (max-width: 768px) {
  .policy_content {
    padding: 24px 16px
  }

  .policy_content ul,
  .policy_content ol {
    padding-left: 24px
  }

  .policy_content table {
    display: block;
    overflow-x: auto
  }
}

@media (max-width: 320px) {
  .policy_content {
    padding: 16px 8px
  }

  .policy_content h1 {
    font-size: 21px
  }
}

.mission_statement {
  background: #FFF;
  color: #1A1A1A;
  overflow-x: clip
}

.mission_statement .dark_intro_stage {
  background: linear-gradient(157deg, #D66168 0%, #E5B4AB 100%);
  padding: 64px 24px;
  position: relative;
  overflow: hidden
}

.mission_statement .dark_intro_stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #ffffff26 1px, transparent 1px), radial-gradient(circle, #ffffff1f 1px, transparent 1px), radial-gradient(circle, #ffffff14 1px, transparent 1px);
  background-size: 64px 64px, 48px 48px, 32px 32px;
  background-position: 0 0, 16px 16px, 8px 8px;
  pointer-events: none;
  z-index: 1
}

.mission_statement .intro_content_holder {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.mission_statement .eyebrow_label {
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #ffffffd9;
  margin: 0 0 16px;
  font-weight: 500
}

.mission_statement .primary_heading {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #FFF;
  margin: 0;
  font-weight: 900;
  max-width: 920px
}

.mission_statement .values_showcase_area {
  padding: 64px 24px;
  background: #FFF;
  position: relative
}

.mission_statement .values_showcase_area::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  width: 1px;
  height: 78%;
  background: linear-gradient(168deg, transparent 0%, #d661682e 20%, #d6616852 50%, #d661682e 80%, transparent 100%);
  transform: rotate(24deg);
  pointer-events: none;
  z-index: 1
}

.mission_statement .values_content_wrapper {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.mission_statement .dual_column_structure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 20px 1px #d6616817
}

.mission_statement .left_column_segment {
  background: #EDE9E8;
  padding: 64px 32px;
  position: relative
}

.mission_statement .left_column_segment::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d6616866 0%, #e5b4ab66 50%, #d6616866 100%)
}

.mission_statement .right_column_segment {
  background: #FFF;
  padding: 64px 32px;
  border-left: 1px solid #d661681f
}

.mission_statement .section_label {
  font-size: 15px;
  line-height: 1.3;
  color: #D66168;
  margin: 0 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em
}

.mission_statement .column_heading {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #2A2A2A;
  margin: 0 0 24px;
  font-weight: 900
}

.mission_statement .description_text {
  font-size: 15px;
  line-height: 1.6;
  color: #3A3A3A;
  margin: 0 0 24px
}

.mission_statement .description_text:last-child {
  margin-bottom: 0
}

.mission_statement .feature_grid_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 32px 0 0
}

.mission_statement .feature_item_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.mission_statement .icon_holder {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  background: linear-gradient(135deg, #d661681f 0%, #e5b4ab1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.mission_statement .feature_item_block:hover .icon_holder {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px 1px #d661681c
}

.mission_statement .icon_visual {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #D66168;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.mission_statement .feature_label {
  font-size: 15px;
  line-height: 1.3;
  color: #2A2A2A;
  margin: 0 0 8px;
  font-weight: 700
}

.mission_statement .feature_description {
  font-size: 13px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0
}

.mission_statement .horizontal_cards_section {
  padding: 64px 24px;
  background: linear-gradient(157deg, #ede9e866 0%, #fff6 100%);
  position: relative;
  overflow: hidden
}

.mission_statement .horizontal_cards_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1
}

.mission_statement .cards_content_wrapper {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.mission_statement .cards_intro_text {
  max-width: 840px;
  margin: 0 0 48px
}

.mission_statement .intro_heading {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #2A2A2A;
  margin: 0 0 16px;
  font-weight: 900
}

.mission_statement .intro_paragraph {
  font-size: 15px;
  line-height: 1.6;
  color: #3A3A3A;
  margin: 0
}

.mission_statement .horizontal_scroll_container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d661684d #d6616814
}

.mission_statement .horizontal_scroll_container::-webkit-scrollbar {
  height: 8px
}

.mission_statement .horizontal_scroll_container::-webkit-scrollbar-track {
  background: #d6616814;
  border-radius: 24px
}

.mission_statement .horizontal_scroll_container::-webkit-scrollbar-thumb {
  background: #d661684d;
  border-radius: 24px;
  transition: background .5s ease
}

.mission_statement .horizontal_scroll_container::-webkit-scrollbar-thumb:hover {
  background: #d6616880
}

.mission_statement .process_card {
  flex: 0 0 380px;
  background: #FFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 5px 1px #d6616814;
  scroll-snap-align: start;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden
}

.mission_statement .process_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d6616899 0%, #e5b4ab99 100%);
  opacity: 0;
  transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.mission_statement .process_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 44px 1px #d661681c
}

.mission_statement .process_card:hover::before {
  opacity: 1
}

.mission_statement .card_image_wrapper {
  width: 100%;
  height: 240px;
  border-radius: 9px;
  overflow: hidden;
  margin: 0 0 24px;
  position: relative;
  background: #EDE9E8
}

.mission_statement .card_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(1.05) brightness(1.02)
}

.mission_statement .process_card:hover .card_image {
  transform: scale(1.06)
}

.mission_statement .card_heading {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #2A2A2A;
  margin: 0 0 16px;
  font-weight: 900
}

.mission_statement .card_text {
  font-size: 15px;
  line-height: 1.6;
  color: #3A3A3A;
  margin: 0
}

.mission_statement .divider_brush {
  width: 100%;
  height: 64px;
  display: block;
  position: relative;
  overflow: hidden
}

.mission_statement .divider_brush svg {
  width: 100%;
  height: 100%;
  display: block
}

.mission_statement .team_voices_section {
  padding: 64px 24px;
  background: #FFF;
  position: relative
}

.mission_statement .team_content_wrapper {
  max-width: 1600px;
  margin: 0 auto
}

.mission_statement .team_heading {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #2A2A2A;
  margin: 0 0 48px;
  font-weight: 900;
  text-align: center
}

.mission_statement .team_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.mission_statement .team_member_card {
  background: #FFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 7px 20px 1px #d6616817;
  display: flex;
  gap: 24px;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden
}

.mission_statement .team_member_card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, #d661680f 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.mission_statement .team_member_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px 1px #d661681c
}

.mission_statement .team_member_card:hover::after {
  opacity: 1
}

.mission_statement .portrait_wrapper {
  flex: 0 0 140px;
  height: 175px;
  border-radius: 9px;
  overflow: hidden;
  background: #EDE9E8;
  box-shadow: inset 0 1px 5px 1px #d6616814
}

.mission_statement .portrait_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) brightness(1.02)
}

.mission_statement .member_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.mission_statement .member_name {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #2A2A2A;
  margin: 0 0 8px;
  font-weight: 900
}

.mission_statement .member_role {
  font-size: 13px;
  line-height: 1.3;
  color: #D66168;
  margin: 0 0 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em
}

.mission_statement .member_quote {
  font-size: 15px;
  line-height: 1.6;
  color: #3A3A3A;
  margin: 0;
  font-style: italic
}

@media (max-width: 1440px) {
  .mission_statement .primary_heading {
    font-size: 42px
  }

  .mission_statement .process_card {
    flex: 0 0 360px
  }
}

@media (max-width: 1024px) {
  .mission_statement .dual_column_structure {
    grid-template-columns: 1fr
  }

  .mission_statement .right_column_segment {
    border-left: none;
    border-top: 1px solid #d661681f
  }

  .mission_statement .feature_grid_container {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .mission_statement .team_grid {
    grid-template-columns: 1fr
  }

  .mission_statement .process_card {
    flex: 0 0 340px
  }
}

@media (max-width: 768px) {
  .mission_statement .dark_intro_stage {
    padding: 48px 16px
  }

  .mission_statement .primary_heading {
    font-size: 32px
  }

  .mission_statement .values_showcase_area {
    padding: 48px 16px
  }

  .mission_statement .left_column_segment,
  .mission_statement .right_column_segment {
    padding: 48px 24px
  }

  .mission_statement .column_heading,
  .mission_statement .intro_heading,
  .mission_statement .team_heading {
    font-size: 24px
  }

  .mission_statement .horizontal_cards_section {
    padding: 48px 16px
  }

  .mission_statement .team_voices_section {
    padding: 48px 16px
  }

  .mission_statement .team_member_card {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .mission_statement .portrait_wrapper {
    flex: 0 0 auto;
    width: 140px
  }

  .mission_statement .process_card {
    flex: 0 0 300px
  }

  .mission_statement .card_image_wrapper {
    height: 200px
  }
}

@media (max-width: 320px) {
  .mission_statement .primary_heading {
    font-size: 28px
  }

  .mission_statement .column_heading,
  .mission_statement .intro_heading,
  .mission_statement .team_heading {
    font-size: 21px
  }

  .mission_statement .process_card {
    flex: 0 0 280px
  }

  .mission_statement .left_column_segment,
  .mission_statement .right_column_segment,
  .mission_statement .team_member_card {
    padding: 32px 16px
  }
}

@keyframes gradient_rotation {
  0% {
    background: linear-gradient(157deg, #D66168 0%, #E5B4AB 100%)
  }

  50% {
    background: linear-gradient(247deg, #D66168 0%, #E5B4AB 100%)
  }

  100% {
    background: linear-gradient(157deg, #D66168 0%, #E5B4AB 100%)
  }
}

.mission_statement .dark_intro_stage {
  animation: gradient_rotation 18s linear infinite
}

.first_page {
  background: #FFF;
  color: #2A2A2A;
  max-width: 1600px;
  margin: 0 auto
}

.first_page .opening_zone {
  position: relative;
  padding: 64px 24px;
  background: linear-gradient(180deg, #FFF 0%, #EDE9E8 100%);
  overflow: visible
}

.first_page .opening_zone::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 180px;
  background-image: radial-gradient(circle, #D66168 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .15;
  pointer-events: none;
  z-index: 1
}

.first_page .opening_inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2
}

.first_page .stacked_titles {
  margin-bottom: 64px
}

.first_page .primary_statement {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 16px
}

.first_page .secondary_statement {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  font-weight: 700;
  color: #D66168;
  margin: 0 0 8px
}

.first_page .tertiary_statement {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 600;
  color: #4A4A4A;
  margin: 0
}

.first_page .visual_anchor {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 44px 1px #d661681c
}

.first_page .visual_anchor img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center
}

.first_page .visual_anchor::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d661684d 0%, #e5b4ab33 50%, transparent 100%);
  pointer-events: none
}

.first_page .outcome_showcase {
  padding: 64px 24px;
  background: #FFF
}

.first_page .outcome_inner {
  max-width: 1400px;
  margin: 0 auto
}

.first_page .outcome_header {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center
}

.first_page .outcome_header h2 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 16px
}

.first_page .outcome_header p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0
}

.first_page .result_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.first_page .result_card {
  background: #FFF;
  border: 1px solid #EDE9E8;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 1px 5px 1px #d6616814;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.first_page .result_card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 44px 1px #d661681c
}

.first_page .participant_info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px
}

.first_page .participant_photo {
  width: 80px;
  height: 112px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  background: #EDE9E8
}

.first_page .participant_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.first_page .participant_details h3 {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 4px
}

.first_page .participant_details p {
  font-size: 13px;
  line-height: 1.3;
  color: #6A6A6A;
  margin: 0
}

.first_page .result_description {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0 0 16px
}

.first_page .change_metrics {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(90deg, #d6616814 0%, #e5b4ab14 100%);
  border-radius: 9px
}

.first_page .metric_value {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 900;
  color: #D66168
}

.first_page .metric_arrow {
  width: 24px;
  height: 2px;
  background: #D66168;
  position: relative
}

.first_page .metric_arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #D66168;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent
}

.first_page .sustained_impact {
  padding: 64px 24px;
  background: linear-gradient(180deg, #FFF 0%, #EDE9E8 100%)
}

.first_page .sustained_inner {
  max-width: 1200px;
  margin: 0 auto
}

.first_page .sustained_layout {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 32px;
  align-items: start
}

.first_page .sustained_column h2 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 24px
}

.first_page .sustained_column p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0 0 16px
}

.first_page .sustained_column p:last-child {
  margin-bottom: 0
}

.first_page .benefit_stack {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.first_page .benefit_item {
  background: #FFF;
  padding: 24px;
  border-radius: 9px;
  border-left: 4px solid transparent;
  box-shadow: inset 0 1px 5px 1px #d6616814;
  transition: border-color .6s ease
}

.first_page .benefit_item:hover {
  border-left-color: #D66168
}

.first_page .benefit_item h4 {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 8px
}

.first_page .benefit_item p {
  font-size: 13px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0
}

.first_page .visual_support {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 20px 1px #d6616817
}

.first_page .visual_support img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center
}

.first_page .standing_recognition {
  padding: 64px 24px;
  background: #FFF
}

.first_page .standing_inner {
  max-width: 1400px;
  margin: 0 auto
}

.first_page .standing_header {
  text-align: center;
  margin-bottom: 64px
}

.first_page .standing_header h2 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 16px
}

.first_page .standing_header p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto
}

.first_page .recognition_flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.first_page .recognition_point {
  background: linear-gradient(180deg, #FFF 0%, #EDE9E8 100%);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 1px 5px 1px #d6616814;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.first_page .recognition_point:hover {
  transform: translateY(-8px)
}

.first_page .recognition_icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: #D66168;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center
}

.first_page .recognition_icon svg {
  width: 32px;
  height: 32px;
  fill: #FFF
}

.first_page .recognition_point h4 {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 8px
}

.first_page .recognition_point p {
  font-size: 13px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0
}

.first_page .funnel_visual {
  margin-top: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto
}

.first_page .funnel_stage {
  position: relative;
  margin-bottom: 24px
}

.first_page .funnel_bar {
  height: 64px;
  background: linear-gradient(90deg, #D66168 0%, #E5B4AB 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  justify-content: space-between;
  transition: opacity .6s ease
}

.first_page .funnel_stage:hover .funnel_bar {
  opacity: .85
}

.first_page .funnel_stage:nth-child(1) .funnel_bar {
  width: 100%
}

.first_page .funnel_stage:nth-child(2) .funnel_bar {
  width: 78%
}

.first_page .funnel_stage:nth-child(3) .funnel_bar {
  width: 56%
}

.first_page .funnel_stage:nth-child(4) .funnel_bar {
  width: 34%
}

.first_page .funnel_label {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  color: #FFF
}

.first_page .funnel_count {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 900;
  color: #FFF
}

.first_page .available_paths {
  padding: 64px 24px;
  background: linear-gradient(180deg, #EDE9E8 0%, #FFF 100%)
}

.first_page .paths_inner {
  max-width: 1400px;
  margin: 0 auto
}

.first_page .paths_header {
  margin-bottom: 64px
}

.first_page .paths_header h2 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 16px
}

.first_page .paths_header p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0
}

.first_page .path_collection {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px
}

.first_page .path_option {
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 20px 1px #d6616817;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.first_page .path_option:hover {
  transform: scale(1.03)
}

.first_page .path_visual {
  width: 100%;
  height: 240px;
  overflow: hidden
}

.first_page .path_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.first_page .path_content {
  padding: 32px 24px
}

.first_page .path_content h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 16px
}

.first_page .path_content p {
  font-size: 15px;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0 0 24px
}

.first_page .path_details {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.first_page .detail_row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.3;
  color: #6A6A6A
}

.first_page .detail_dot {
  width: 6px;
  height: 6px;
  background: #D66168;
  border-radius: 2px;
  flex-shrink: 0
}

.first_page .path_action {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed #E5B4AB
}

.first_page .path_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #D66168;
  text-decoration: none;
  transition: gap .6s ease
}

.first_page .path_link:hover {
  gap: 16px
}

.first_page .path_link::after {
  content: '';
  width: 20px;
  height: 2px;
  background: #D66168;
  position: relative;
  transition: width .6s ease
}

.first_page .path_link:hover::after {
  width: 32px
}

.first_page .connection_line {
  position: relative;
  height: 1px;
  background: repeating-linear-gradient(to right, #D66168, #D66168 8px, transparent 8px, transparent 16px);
  margin: 32px 0;
  max-width: 400px
}

.first_page .edge_divider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 64px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto
}

.first_page .divider_line {
  width: 120px;
  height: 2px;
  background: #E5B4AB
}

@media (max-width: 1440px) {
  .first_page .result_grid {
    gap: 16px
  }

  .first_page .sustained_layout {
    gap: 24px
  }

  .first_page .path_collection {
    gap: 24px
  }
}

@media (max-width: 1024px) {
  .first_page .opening_zone {
    padding: 64px 16px
  }

  .first_page .primary_statement {
    font-size: 28px
  }

  .first_page .secondary_statement {
    font-size: 21px
  }

  .first_page .tertiary_statement {
    font-size: 15px
  }

  .first_page .result_grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .first_page .sustained_layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .first_page .recognition_flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .first_page .path_collection {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .first_page .outcome_showcase,
  .first_page .sustained_impact,
  .first_page .standing_recognition,
  .first_page .available_paths {
    padding: 64px 16px
  }
}

@media (max-width: 768px) {
  .first_page .opening_zone {
    padding: 32px 16px
  }

  .first_page .primary_statement {
    font-size: 21px
  }

  .first_page .secondary_statement {
    font-size: 15px
  }

  .first_page .tertiary_statement {
    font-size: 13px
  }

  .first_page .stacked_titles {
    margin-bottom: 32px
  }

  .first_page .outcome_header h2,
  .first_page .standing_header h2,
  .first_page .paths_header h2,
  .first_page .sustained_column h2 {
    font-size: 21px
  }

  .first_page .recognition_flow {
    grid-template-columns: 1fr
  }

  .first_page .outcome_showcase,
  .first_page .sustained_impact,
  .first_page .standing_recognition,
  .first_page .available_paths {
    padding: 32px 16px
  }

  .first_page .outcome_header,
  .first_page .standing_header {
    margin-bottom: 32px
  }

  .first_page .result_card {
    padding: 24px 16px
  }

  .first_page .participant_info {
    flex-direction: column;
    align-items: flex-start
  }

  .first_page .funnel_bar {
    padding: 0 16px;
    height: 56px
  }

  .first_page .funnel_label {
    font-size: 13px
  }

  .first_page .funnel_count {
    font-size: 15px
  }

  .first_page .path_visual {
    height: 200px
  }

  .first_page .edge_divider {
    margin: 32px 0
  }

  .first_page .divider_line {
    width: 80px
  }
}

@media (max-width: 320px) {
  .first_page .opening_zone {
    padding: 24px 8px
  }

  .first_page .primary_statement {
    font-size: 15px
  }

  .first_page .secondary_statement {
    font-size: 13px
  }

  .first_page .result_card,
  .first_page .benefit_item,
  .first_page .recognition_point,
  .first_page .path_content {
    padding: 16px
  }

  .first_page .outcome_showcase,
  .first_page .sustained_impact,
  .first_page .standing_recognition,
  .first_page .available_paths {
    padding: 24px 8px
  }
}

.contact_us_page {
  background: #FFF;
  overflow-x: clip
}

.contact_us_page .top_visual_section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 32px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
  position: relative
}

.contact_us_page .narrow_image_column {
  flex: 0 0 280px;
  position: relative
}

.contact_us_page .image_with_overlay {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative
}

.contact_us_page .image_with_overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.2)
}

.contact_us_page .image_with_overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d6616866 0%, #e5b4ab4d 100%);
  mix-blend-mode: multiply
}

.contact_us_page .geometric_decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  top: -24px;
  right: -24px;
  z-index: 1
}

.contact_us_page .geometric_decoration::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid #EDE9E8;
  border-radius: 50%;
  top: 0;
  left: 0;
  opacity: .6
}

.contact_us_page .geometric_decoration::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: #d6616826;
  border-radius: 9px;
  bottom: 0;
  right: 0;
  transform: rotate(15deg)
}

.contact_us_page .wide_text_zone {
  flex: 1;
  padding: 32px 0
}

.contact_us_page .single_heading_display {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 900;
  color: #1A0F0A;
  margin: 0
}

.contact_us_page .metrics_row_container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 32px;
  background: linear-gradient(180deg, #ede9e84d 0%, #ede9e81a 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%);
  margin-bottom: -64px
}

.contact_us_page .three_metrics_horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto
}

.contact_us_page .metric_item {
  flex: 1;
  text-align: center;
  padding: 24px 32px;
  position: relative
}

.contact_us_page .metric_item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, #d6616800 0%, #d661684d 50%, #d6616800 100%)
}

.contact_us_page .metric_value {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  color: #D66168;
  margin: 0 0 8px;
  display: block
}

.contact_us_page .metric_label {
  font-size: 15px;
  line-height: 1.3;
  color: #4A3F3C;
  margin: 0
}

.contact_us_page .form_and_info_section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 32px 64px;
  background: #FFF
}

.contact_us_page .irregular_grid_layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start
}

.contact_us_page .form_column {
  background: #FFF;
  border: 1px solid #EDE9E8;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 7px 20px 1px #d6616817
}

.contact_us_page .form_heading {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
  color: #1A0F0A;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.contact_us_page .compact_form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.contact_us_page .form_field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact_us_page .form_field.full_width {
  grid-column: 1 / -1
}

.contact_us_page .field_label {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  color: #4A3F3C;
  margin: 0
}

.contact_us_page .text_input {
  padding: 16px;
  border: 1px solid #EDE9E8;
  border-radius: 9px;
  font-size: 15px;
  line-height: 1.3;
  color: #1A0F0A;
  background: #FFF;
  transition: border-color .6s ease, box-shadow .6s ease;
  outline: none
}

.contact_us_page .text_input::placeholder {
  color: #4a3f3c66
}

.contact_us_page .text_input:focus {
  border-color: #D66168;
  box-shadow: 0 0 0 3px #d661681a
}

.contact_us_page .budget_selection_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px
}

.contact_us_page .budget_label_main {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  color: #4A3F3C;
  margin: 0 0 8px
}

.contact_us_page .radio_options_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap
}

.contact_us_page .radio_option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative
}

.contact_us_page .radio_input {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  border: 2px solid #EDE9E8;
  border-radius: 50%;
  position: relative;
  transition: border-color .5s ease, background .5s ease;
  flex-shrink: 0
}

.contact_us_page .radio_input:checked {
  border-color: #D66168;
  background: #FFF
}

.contact_us_page .radio_input:checked::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #D66168;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.contact_us_page .radio_label_text {
  font-size: 15px;
  line-height: 1.3;
  color: #4A3F3C;
  cursor: pointer;
  user-select: none
}

.contact_us_page .privacy_consent_wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px
}

.contact_us_page .checkbox_input {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  border: 2px solid #EDE9E8;
  border-radius: 5px;
  position: relative;
  transition: border-color .5s ease, background .5s ease;
  flex-shrink: 0;
  margin-top: 2px
}

.contact_us_page .checkbox_input:checked {
  border-color: #D66168;
  background: #D66168
}

.contact_us_page .checkbox_input:checked::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  top: 3px;
  left: 6px;
  transform: rotate(45deg)
}

.contact_us_page .consent_text {
  font-size: 13px;
  line-height: 1.6;
  color: #4A3F3C;
  margin: 0
}

.contact_us_page .consent_text a {
  color: #D66168;
  text-decoration: none;
  transition: color .5s ease
}

.contact_us_page .consent_text a:hover {
  color: #B54E54
}

.contact_us_page .submit_button {
  width: 100%;
  padding: 16px 32px;
  background: #D66168;
  color: #FFF;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  cursor: pointer;
  transition: background .6s ease, transform .6s ease, box-shadow .6s ease;
  box-shadow: 0 1px 5px 1px #d6616814
}

.contact_us_page .submit_button:hover {
  background: #B54E54;
  box-shadow: 0 7px 20px 1px #d6616817
}

.contact_us_page .submit_button:active {
  transform: scale(0.98)
}

.contact_us_page .info_blocks_column {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact_us_page .info_card {
  background: linear-gradient(135deg, #ede9e880 0%, #ede9e833 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #d661681a;
  box-shadow: inset 0 1px 3px #d661680d;
  position: relative;
  overflow: hidden
}

.contact_us_page .info_card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, #d6616814 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%)
}

.contact_us_page .info_card_heading {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
  color: #1A0F0A;
  margin: 0 0 16px;
  letter-spacing: -.01em
}

.contact_us_page .info_detail_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px
}

.contact_us_page .info_detail_row:last-child {
  margin-bottom: 0
}

.contact_us_page .icon_wrapper {
  width: 40px;
  height: 40px;
  background: #FFF;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 5px 1px #d6616814;
  position: relative
}

.contact_us_page .icon_svg {
  width: 20px;
  height: 20px;
  stroke: #D66168;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact_us_page .animated_outline_icon {
  position: absolute;
  inset: -2px;
  border: 2px solid #D66168;
  border-radius: 9px;
  opacity: 0;
  animation: outline_trace 2.5s ease-in-out infinite
}

@keyframes outline_trace {

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

  50% {
    opacity: .4;
    transform: scale(1.1)
  }
}

.contact_us_page .info_text_content {
  flex: 1
}

.contact_us_page .info_text_line {
  font-size: 15px;
  line-height: 1.6;
  color: #4A3F3C;
  margin: 0 0 4px
}

.contact_us_page .info_text_line:last-child {
  margin-bottom: 0
}

.contact_us_page .info_text_line a {
  color: #D66168;
  text-decoration: none;
  transition: color .5s ease
}

.contact_us_page .info_text_line a:hover {
  color: #B54E54
}

.contact_us_page .dense_cluster_section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 32px;
  background: linear-gradient(135deg, #d6616808 0%, #e5b4ab0d 100%);
  position: relative
}

.contact_us_page .cluster_layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start
}

.contact_us_page .large_text_element {
  position: relative
}

.contact_us_page .large_text_heading {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
  color: #1A0F0A;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.contact_us_page .large_text_body {
  font-size: 15px;
  line-height: 1.9;
  color: #4A3F3C;
  margin: 0 0 16px
}

.contact_us_page .large_text_body:last-child {
  margin-bottom: 0
}

.contact_us_page .dashed_path_wrapper {
  position: absolute;
  top: -16px;
  right: -32px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 0
}

.contact_us_page .dashed_path_svg {
  width: 100%;
  height: 100%;
  opacity: .3
}

.contact_us_page .dashed_path_line {
  stroke: #D66168;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 8 6
}

.contact_us_page .small_blocks_cluster {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px
}

.contact_us_page .small_info_block {
  background: #FFF;
  border: 1px solid #EDE9E8;
  border-radius: 9px;
  padding: 16px;
  box-shadow: 0 1px 5px 1px #d6616814;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation: reveal_sequential .8s ease forwards
}

.contact_us_page .small_info_block:nth-child(1) {
  animation-delay: .1s
}

.contact_us_page .small_info_block:nth-child(2) {
  animation-delay: .3s
}

.contact_us_page .small_info_block:nth-child(3) {
  animation-delay: .5s
}

.contact_us_page .small_info_block:nth-child(4) {
  animation-delay: .7s
}

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

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.contact_us_page .small_info_block:hover {
  transform: translateY(-4px);
  box-shadow: 0 7px 20px 1px #d6616817
}

.contact_us_page .small_block_title {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #1A0F0A;
  margin: 0 0 8px
}

.contact_us_page .small_block_text {
  font-size: 13px;
  line-height: 1.6;
  color: #4A3F3C;
  margin: 0
}

.contact_us_page .double_dotted_divider {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 0;
  position: relative
}

.contact_us_page .dotted_line_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center
}

.contact_us_page .dotted_line {
  width: 100%;
  height: 2px;
  background-image: radial-gradient(circle, #D66168 1px, transparent 1px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: .3
}

@media (max-width: 1440px) {
  .contact_us_page .top_visual_section {
    padding: 64px 24px;
    gap: 32px
  }

  .contact_us_page .narrow_image_column {
    flex: 0 0 240px
  }

  .contact_us_page .single_heading_display {
    font-size: 42px
  }

  .contact_us_page .irregular_grid_layout {
    gap: 32px
  }
}

@media (max-width: 1024px) {
  .contact_us_page .top_visual_section {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px
  }

  .contact_us_page .narrow_image_column {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px
  }

  .contact_us_page .single_heading_display {
    font-size: 36px
  }

  .contact_us_page .three_metrics_horizontal {
    flex-direction: column;
    gap: 16px
  }

  .contact_us_page .metric_item:not(:last-child)::after {
    display: none
  }

  .contact_us_page .metric_item {
    padding: 16px
  }

  .contact_us_page .irregular_grid_layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .contact_us_page .cluster_layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .contact_us_page .dashed_path_wrapper {
    display: none
  }
}

@media (max-width: 768px) {
  .contact_us_page .top_visual_section {
    padding: 24px 16px
  }

  .contact_us_page .single_heading_display {
    font-size: 28px
  }

  .contact_us_page .metric_value {
    font-size: 36px
  }

  .contact_us_page .metrics_row_container {
    padding: 32px 16px
  }

  .contact_us_page .form_and_info_section {
    padding: 64px 16px 32px
  }

  .contact_us_page .compact_form_grid {
    grid-template-columns: 1fr
  }

  .contact_us_page .form_heading {
    font-size: 24px
  }

  .contact_us_page .radio_options_row {
    flex-direction: column;
    gap: 8px
  }

  .contact_us_page .dense_cluster_section {
    padding: 32px 16px
  }

  .contact_us_page .large_text_heading {
    font-size: 24px
  }
}

@media (max-width: 320px) {
  .contact_us_page .single_heading_display {
    font-size: 24px
  }

  .contact_us_page .metric_value {
    font-size: 28px
  }

  .contact_us_page .form_column {
    padding: 24px 16px
  }

  .contact_us_page .info_card {
    padding: 16px
  }
}

.about_us_page {
  max-width: 1600px;
  margin: 0 auto
}

.about_us_page .hero_section {
  display: flex;
  flex-direction: row;
  gap: 64px;
  background: linear-gradient(157deg, #d161680a 0%, #e5b4ab14 100%);
  align-items: center;
  padding: 64px 32px 96px
}

.about_us_page .hero_left_zone {
  flex: 1 1 65%
}

.about_us_page .hero_heading {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 900;
  margin: 0 0 24px;
  color: #1a0a0a
}

.about_us_page .gradient_word {
  background: linear-gradient(157deg, #d66168e6 0%, #d6616880 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.about_us_page .hero_text {
  font-size: 15px;
  line-height: 1.6;
  color: #2d1f1f;
  margin: 0
}

.about_us_page .hero_right_zone {
  flex: 0 0 32%;
  position: relative
}

.about_us_page .hero_image_wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  position: relative
}

.about_us_page .hero_image_wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(157deg, #d661684d 0%, #e5b4ab40 100%);
  pointer-events: none
}

.about_us_page .hero_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.about_us_page .info_dense_section {
  padding: 64px 32px;
  background: #fff;
  position: relative
}

.about_us_page .info_dense_section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-top: 24px solid #fff
}

.about_us_page .info_dense_container {
  max-width: 1200px;
  margin: 0 auto
}

.about_us_page .info_dense_heading {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.01em;
  margin: 0 0 32px;
  text-align: center;
  color: #1a0a0a
}

.about_us_page .info_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.about_us_page .info_card {
  background: #EDE9E8;
  padding: 24px;
  border-radius: 9px;
  box-shadow: 0 1px 5px 1px #d6616814;
  transition: transform .6s ease, box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.about_us_page .info_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 7px 20px 1px #d6616817
}

.about_us_page .info_card_icon {
  width: 48px;
  height: 48px;
  margin: 0 0 16px;
  fill: #D66168
}

.about_us_page .info_card_title {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a0a0a
}

.about_us_page .info_card_text {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: #3d2d2d
}

.about_us_page .narrative_section {
  padding: 96px 32px 64px;
  background-image: url(./promo_images/draft-bgg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden
}

.about_us_page .narrative_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(157deg, #ede9e8f2 0%, #ede9e8e6 100%);
  pointer-events: none
}

.about_us_page .narrative_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.about_us_page .narrative_heading {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.01em;
  margin: 0 0 32px;
  color: #1a0a0a
}

.about_us_page .narrative_columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 32px
}

.about_us_page .narrative_metric_block {
  background: #fff;
  padding: 24px;
  border-radius: 5px;
  box-shadow: inset 0 1px 5px 1px #d6616814;
  transition: box-shadow .7s ease
}

.about_us_page .narrative_metric_block:hover {
  box-shadow: inset 0 7px 20px 1px #d6616817
}

.about_us_page .narrative_number {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  color: #D66168;
  margin: 0 0 8px;
  letter-spacing: -.02em
}

.about_us_page .narrative_label {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 16px;
  color: #1a0a0a;
  text-transform: uppercase;
  letter-spacing: .03em
}

.about_us_page .narrative_description {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: #3d2d2d
}

.about_us_page .narrative_accent_block {
  background: #D66168;
  padding: 32px;
  border-radius: 5px;
  box-shadow: 0 8px 44px 1px #d661681c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: zoom_settle .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

@keyframes zoom_settle {
  0% {
    transform: scale(1.15);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

.about_us_page .narrative_accent_heading {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -.01em
}

.about_us_page .narrative_accent_text {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: #fffffff2
}

.about_us_page .narrative_accent_list {
  list-style: none;
  padding: 0;
  margin: 0
}

.about_us_page .narrative_accent_list li {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffffe6;
  margin: 0 0 8px;
  padding-left: 24px;
  position: relative
}

.about_us_page .narrative_accent_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #fffc;
  border-radius: 2px
}

.about_us_page .team_section {
  padding: 64px 32px;
  background: #fff
}

.about_us_page .team_container {
  max-width: 1200px;
  margin: 0 auto
}

.about_us_page .team_heading {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  color: #1a0a0a
}

.about_us_page .team_intro {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 32px;
  color: #2d1f1f;
  max-width: 800px
}

.about_us_page .team_layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start
}

.about_us_page .team_members {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.about_us_page .team_member_card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  background: #EDE9E8;
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 1px 5px 1px #d6616814;
  transition: box-shadow .6s ease, transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.about_us_page .team_member_card:active {
  transform: scale(0.98)
}

.about_us_page .team_member_card:hover {
  box-shadow: 0 7px 20px 1px #d6616817
}

.about_us_page .team_portrait_wrapper {
  width: 80px;
  height: 120px;
  overflow: hidden;
  border-radius: 9px;
  flex-shrink: 0
}

.about_us_page .team_portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about_us_page .team_member_info {
  flex: 1
}

.about_us_page .team_member_name {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1a0a0a
}

.about_us_page .team_member_role {
  font-size: 13px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #D66168;
  font-weight: 600
}

.about_us_page .team_member_bio {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: #3d2d2d
}

.about_us_page .team_content_area {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.about_us_page .team_image_wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 7px 20px 1px #d6616817
}

.about_us_page .team_content_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.about_us_page .team_philosophy_box {
  background: linear-gradient(157deg, #d661680f 0%, #e5b4ab0a 100%);
  padding: 32px;
  border-radius: 9px;
  position: relative
}

.about_us_page .team_philosophy_box::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #d6616833;
  border-radius: 5px;
  pointer-events: none;
  clip-path: polygon(0 0, 8px 0, 8px 2px, 2px 2px, 2px 8px, 0 8px, 0 100%, 8px 100%, 8px calc(100% - 2px), 2px calc(100% - 2px), 2px calc(100% - 8px), 0 calc(100% - 8px), 100% 100%, 100% calc(100% - 8px), calc(100% - 2px) calc(100% - 8px), calc(100% - 2px) calc(100% - 2px), calc(100% - 8px) calc(100% - 2px), calc(100% - 8px) 100%, 100% 0, calc(100% - 8px) 0, calc(100% - 8px) 2px, calc(100% - 2px) 2px, calc(100% - 2px) 8px, 100% 8px)
}

.about_us_page .team_philosophy_heading {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 900;
  margin: 0 0 16px;
  color: #1a0a0a;
  letter-spacing: -.01em
}

.about_us_page .team_philosophy_text {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: #2d1f1f
}

.about_us_page .team_philosophy_text:last-child {
  margin-bottom: 0
}

@media (max-width: 1440px) {
  .about_us_page .hero_section {
    gap: 32px;
    padding-left: 24px;
    padding-right: 24px
  }

  .about_us_page .info_grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .about_us_page .narrative_columns {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 1024px) {
  .about_us_page .hero_section {
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 64px
  }

  .about_us_page .hero_left_zone {
    flex: 1 1 100%
  }

  .about_us_page .hero_right_zone {
    flex: 0 0 100%;
    max-width: 500px
  }

  .about_us_page .hero_heading {
    font-size: 28px
  }

  .about_us_page .narrative_columns {
    grid-template-columns: 1fr
  }

  .about_us_page .team_layout {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

@media (max-width: 768px) {
  .about_us_page .hero_section {
    padding-left: 16px;
    padding-right: 16px
  }

  .about_us_page .info_dense_section {
    padding: 32px 16px
  }

  .about_us_page .info_grid {
    grid-template-columns: 1fr
  }

  .about_us_page .narrative_section {
    padding: 64px 16px 32px
  }

  .about_us_page .narrative_heading {
    font-size: 21px
  }

  .about_us_page .team_section {
    padding: 32px 16px
  }

  .about_us_page .team_heading {
    font-size: 21px
  }

  .about_us_page .team_member_card {
    flex-direction: column;
    align-items: flex-start
  }

  .about_us_page .team_portrait_wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3
  }
}

@media (max-width: 320px) {
  .about_us_page .hero_heading {
    font-size: 21px
  }

  .about_us_page .info_dense_heading {
    font-size: 21px
  }

  .about_us_page .narrative_number {
    font-size: 28px
  }

  .about_us_page .narrative_accent_heading {
    font-size: 15px
  }

  .about_us_page .team_philosophy_box {
    padding: 24px
  }
}

.services_catalog {
  background: #FFF;
  max-width: 1600px;
  margin: 0 auto
}

.services_catalog .split_entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  position: relative;
  overflow: hidden
}

.services_catalog .color_zone_left {
  background: #D66168;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  position: relative
}

.services_catalog .color_zone_right {
  background: #E5B4AB;
  position: relative;
  overflow: hidden
}

.services_catalog .entry_text_container {
  max-width: 580px;
  position: relative;
  z-index: 2
}

.services_catalog .entry_main_heading {
  font-size: 50px;
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 24px;
  letter-spacing: -.02em;
  font-weight: 900
}

.services_catalog .entry_description {
  font-size: 15px;
  line-height: 1.6;
  color: #FFF;
  margin: 0;
  opacity: .95
}

.services_catalog .image_holder_split {
  width: 100%;
  height: 100%;
  position: relative
}

.services_catalog .image_holder_split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative
}

.services_catalog .image_holder_split::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to bottom, #d6616800 0%, #d66168b3 100%);
  pointer-events: none;
  z-index: 1
}

.services_catalog .corner_line_top_left {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 64px;
  height: 64px;
  border-top: 2px solid #ffffff4d;
  border-left: 2px solid #ffffff4d;
  z-index: 3
}

.services_catalog .corner_line_bottom_right {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-bottom: 2px solid #fff3;
  border-right: 2px solid #fff3;
  z-index: 3
}

.services_catalog .three_dot_divider {
  text-align: center;
  padding: 64px 0
}

.services_catalog .dot_sequence {
  display: inline-flex;
  gap: 16px;
  align-items: center
}

.services_catalog .single_dot {
  width: 8px;
  height: 8px;
  background: #D66168;
  border-radius: 24px;
  opacity: .6
}

.services_catalog .offerings_grid {
  padding: 64px 32px;
  max-width: 1600px;
  margin: 0 auto
}

.services_catalog .grid_headline {
  font-size: 28px;
  line-height: 1.3;
  color: #1A1A1A;
  margin: 0 0 16px;
  letter-spacing: -.01em;
  font-weight: 900;
  text-align: center
}

.services_catalog .grid_intro_text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0 auto 64px;
  max-width: 740px;
  text-align: center
}

.services_catalog .featured_layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px
}

.services_catalog .anchor_card {
  grid-column: span 1;
  grid-row: span 2;
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 20px 1px #d6616817;
  transition: transform .6s ease, box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative
}

.services_catalog .anchor_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 44px 1px #d661681c
}

.services_catalog .anchor_card:hover .trace_border {
  opacity: 1
}

.services_catalog .trace_border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #D66168;
  border-radius: 16px;
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 2
}

.services_catalog .anchor_image_container {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden
}

.services_catalog .anchor_image_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.services_catalog .anchor_content {
  padding: 32px
}

.services_catalog .anchor_label {
  display: inline-block;
  background: #EDE9E8;
  color: #D66168;
  font-size: 13px;
  line-height: 1.3;
  padding: 4px 16px;
  border-radius: 24px;
  margin: 0 0 16px;
  font-weight: 600
}

.services_catalog .anchor_heading {
  font-size: 21px;
  line-height: 1.3;
  color: #1A1A1A;
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -.01em
}

.services_catalog .anchor_text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0
}

.services_catalog .compact_card {
  background: #FFF;
  border-radius: 9px;
  padding: 24px;
  box-shadow: 0 1px 5px 1px #d6616814;
  transition: transform .5s ease, box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.services_catalog .compact_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 7px 20px 1px #d6616817
}

.services_catalog .compact_card:hover .trace_border {
  opacity: 1
}

.services_catalog .compact_heading {
  font-size: 15px;
  line-height: 1.3;
  color: #1A1A1A;
  margin: 0 0 8px;
  font-weight: 900
}

.services_catalog .compact_snippet {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0
}

.services_catalog .deep_section {
  background: linear-gradient(135deg, #d66168e6 0%, #d66168ff 100%);
  padding: 64px 32px;
  position: relative;
  overflow: hidden
}

.services_catalog .deep_section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #ffffff14 0%, #fff0 70%);
  pointer-events: none
}

.services_catalog .deep_section::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #e5b4ab26 0%, #e5b4ab00 70%);
  pointer-events: none
}

.services_catalog .deep_content_wrapper {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.services_catalog .deep_headline {
  font-size: 28px;
  line-height: 1.3;
  color: #FFF;
  margin: 0 0 16px;
  letter-spacing: -.01em;
  font-weight: 900;
  text-align: center
}

.services_catalog .deep_intro {
  font-size: 15px;
  line-height: 1.6;
  color: #FFF;
  margin: 0 auto 64px;
  max-width: 740px;
  text-align: center;
  opacity: .95
}

.services_catalog .method_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.services_catalog .method_item {
  background: #ffffff1f;
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: background .6s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative
}

.services_catalog .method_item:hover {
  background: #ffffff2e;
  transform: translateY(-6px)
}

.services_catalog .method_item:hover .trace_border {
  opacity: 1
}

.services_catalog .method_icon_wrapper {
  width: 64px;
  height: 64px;
  background: #fff3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px
}

.services_catalog .method_icon_svg {
  width: 32px;
  height: 32px;
  fill: #FFF
}

.services_catalog .method_title {
  font-size: 21px;
  line-height: 1.3;
  color: #FFF;
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -.01em
}

.services_catalog .method_description {
  font-size: 15px;
  line-height: 1.6;
  color: #FFF;
  margin: 0;
  opacity: .9
}

.services_catalog .testimonial_zone {
  padding: 64px 32px;
  background: #FAFAFA
}

.services_catalog .testimonial_wrapper {
  max-width: 1600px;
  margin: 0 auto
}

.services_catalog .testimonial_heading {
  font-size: 28px;
  line-height: 1.3;
  color: #1A1A1A;
  margin: 0 0 64px;
  letter-spacing: -.01em;
  font-weight: 900;
  text-align: center
}

.services_catalog .testimonial_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.services_catalog .testimonial_card {
  background: #FFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 5px 1px #d6616814;
  transition: box-shadow .6s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column
}

.services_catalog .testimonial_card:hover {
  box-shadow: 0 7px 20px 1px #d6616817;
  transform: translateY(-4px)
}

.services_catalog .testimonial_card:hover .trace_border {
  opacity: 1
}

.services_catalog .bracket_left {
  font-size: 50px;
  line-height: 1;
  color: #E5B4AB;
  margin: 0 0 24px;
  font-weight: 900;
  opacity: .4
}

.services_catalog .testimonial_text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 32px;
  flex-grow: 1
}

.services_catalog .author_row {
  display: flex;
  align-items: center;
  gap: 16px
}

.services_catalog .author_portrait {
  width: 64px;
  height: 96px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0
}

.services_catalog .author_portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.services_catalog .author_details {
  display: flex;
  flex-direction: column
}

.services_catalog .author_name {
  font-size: 15px;
  line-height: 1.3;
  color: #1A1A1A;
  margin: 0 0 4px;
  font-weight: 900
}

.services_catalog .author_position {
  font-size: 13px;
  line-height: 1.3;
  color: #666;
  margin: 0
}

.services_catalog .stat_highlight_zone {
  padding: 64px 32px;
  background: #FFF
}

.services_catalog .stat_content_wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.services_catalog .stat_text_column {
  display: flex;
  flex-direction: column
}

.services_catalog .stat_main_heading {
  font-size: 28px;
  line-height: 1.3;
  color: #1A1A1A;
  margin: 0 0 24px;
  letter-spacing: -.01em;
  font-weight: 900
}

.services_catalog .stat_paragraph {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 24px
}

.services_catalog .stat_paragraph:last-child {
  margin-bottom: 0
}

.services_catalog .stat_visual_column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.services_catalog .stat_block {
  background: linear-gradient(135deg, #ede9e899 0%, #ede9e8ff 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform .6s ease, background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: inset 0 2px 8px #d661680f
}

.services_catalog .stat_block:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #e5b4ab4d 0%, #ede9e8ff 100%)
}

.services_catalog .stat_icon_holder {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.services_catalog .stat_icon_svg {
  width: 48px;
  height: 48px;
  fill: #D66168
}

.services_catalog .stat_number {
  font-size: 50px;
  line-height: 1.1;
  color: #D66168;
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -.02em
}

.services_catalog .stat_label {
  font-size: 13px;
  line-height: 1.3;
  color: #555;
  margin: 0;
  font-weight: 600
}

@media (max-width: 1440px) {
  .services_catalog .split_entry {
    min-height: 540px
  }

  .services_catalog .color_zone_left {
    padding: 64px 32px
  }

  .services_catalog .entry_main_heading {
    font-size: 42px
  }

  .services_catalog .offerings_grid {
    padding: 64px 24px
  }

  .services_catalog .deep_section {
    padding: 64px 24px
  }

  .services_catalog .testimonial_zone {
    padding: 64px 24px
  }

  .services_catalog .stat_highlight_zone {
    padding: 64px 24px
  }
}

@media (max-width: 1024px) {
  .services_catalog .split_entry {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .services_catalog .color_zone_left {
    padding: 64px 32px
  }

  .services_catalog .color_zone_right {
    min-height: 420px
  }

  .services_catalog .entry_main_heading {
    font-size: 36px
  }

  .services_catalog .featured_layout {
    grid-template-columns: 1fr 1fr
  }

  .services_catalog .anchor_card {
    grid-column: span 2;
    grid-row: span 1
  }

  .services_catalog .anchor_image_container {
    height: 240px
  }

  .services_catalog .method_grid {
    grid-template-columns: 1fr 1fr
  }

  .services_catalog .testimonial_cards {
    grid-template-columns: 1fr
  }

  .services_catalog .stat_content_wrapper {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

@media (max-width: 768px) {
  .services_catalog .color_zone_left {
    padding: 32px 24px
  }

  .services_catalog .entry_main_heading {
    font-size: 28px
  }

  .services_catalog .entry_description {
    font-size: 13px
  }

  .services_catalog .offerings_grid {
    padding: 32px 16px
  }

  .services_catalog .grid_headline {
    font-size: 21px
  }

  .services_catalog .featured_layout {
    grid-template-columns: 1fr
  }

  .services_catalog .anchor_card {
    grid-column: span 1
  }

  .services_catalog .deep_section {
    padding: 32px 16px
  }

  .services_catalog .deep_headline {
    font-size: 21px
  }

  .services_catalog .method_grid {
    grid-template-columns: 1fr
  }

  .services_catalog .testimonial_zone {
    padding: 32px 16px
  }

  .services_catalog .testimonial_heading {
    font-size: 21px;
    margin-bottom: 32px
  }

  .services_catalog .stat_highlight_zone {
    padding: 32px 16px
  }

  .services_catalog .stat_main_heading {
    font-size: 21px
  }

  .services_catalog .stat_visual_column {
    grid-template-columns: 1fr
  }
}

@media (max-width: 320px) {
  .services_catalog .color_zone_left {
    padding: 24px 16px
  }

  .services_catalog .entry_main_heading {
    font-size: 21px
  }

  .services_catalog .offerings_grid {
    padding: 24px 16px
  }

  .services_catalog .compact_card {
    padding: 16px
  }

  .services_catalog .deep_section {
    padding: 24px 16px
  }

  .services_catalog .method_item {
    padding: 24px
  }

  .services_catalog .testimonial_zone {
    padding: 24px 16px
  }

  .services_catalog .testimonial_card {
    padding: 24px
  }

  .services_catalog .stat_highlight_zone {
    padding: 24px 16px
  }

  .services_catalog .stat_block {
    padding: 24px
  }
}

.success_confirmation_page {
  background: linear-gradient(162deg, #EDE9E8 0%, #ede9e866 100%);
  padding: 64px 16px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.success_confirmation_page .confirmation_container {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 64px 32px;
  box-shadow: 0 7px 20px 1px #d6616817;
  text-align: center
}

.success_confirmation_page .icon_wrapper {
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.success_confirmation_page .icon_circle {
  width: 96px;
  height: 96px;
  background: linear-gradient(162deg, #D66168 0%, #e5b4abb3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  animation: appear_circle .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

@keyframes appear_circle {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

.success_confirmation_page .checkmark_shape {
  width: 48px;
  height: 48px;
  position: relative
}

.success_confirmation_page .checkmark_shape svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw_check .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s forwards
}

@keyframes draw_check {
  to {
    stroke-dashoffset: 0
  }
}

.success_confirmation_page .main_heading {
  font-size: 50px;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 16px;
  letter-spacing: -.02em;
  font-weight: 900
}

.success_confirmation_page .description_text {
  font-size: 21px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 32px
}

.success_confirmation_page .info_block {
  background: #EDE9E8;
  border-radius: 9px;
  padding: 24px;
  margin: 0 0 32px;
  text-align: left
}

.success_confirmation_page .info_block .info_heading {
  font-size: 15px;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 16px;
  font-weight: 700
}

.success_confirmation_page .info_block .info_list {
  list-style: none;
  padding: 0;
  margin: 0
}

.success_confirmation_page .info_block .info_list li {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 8px;
  padding-left: 24px;
  position: relative
}

.success_confirmation_page .info_block .info_list li:last-child {
  margin-bottom: 0
}

.success_confirmation_page .info_block .info_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #D66168;
  border-radius: 50%
}

.success_confirmation_page .contact_details {
  margin: 0 0 32px;
  padding: 24px;
  border-top: 1px solid #EDE9E8;
  border-bottom: 1px solid #EDE9E8
}

.success_confirmation_page .contact_details .contact_label {
  font-size: 13px;
  line-height: 1.3;
  color: #6a6a6a;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700
}

.success_confirmation_page .contact_details .contact_value {
  font-size: 21px;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700
}

.success_confirmation_page .contact_details .contact_value a {
  color: #D66168;
  text-decoration: none;
  transition: color .6s ease
}

.success_confirmation_page .contact_details .contact_value a:hover {
  color: #E5B4AB
}

.success_confirmation_page .action_buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.success_confirmation_page .action_buttons .primary_button {
  background: #D66168;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .6s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success_confirmation_page .action_buttons .primary_button:hover {
  background: #E5B4AB
}

.success_confirmation_page .action_buttons .primary_button:active {
  transform: scale(0.97)
}

.success_confirmation_page .action_buttons .secondary_button {
  background: transparent;
  color: #D66168;
  border: 2px solid #D66168;
  border-radius: 5px;
  padding: 14px 32px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .6s ease, color .6s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success_confirmation_page .action_buttons .secondary_button:hover {
  background: #D66168;
  color: #fff
}

.success_confirmation_page .action_buttons .secondary_button:active {
  transform: scale(0.97)
}

@media (max-width: 768px) {
  .success_confirmation_page {
    padding: 32px 16px
  }

  .success_confirmation_page .confirmation_container {
    padding: 32px 24px
  }

  .success_confirmation_page .main_heading {
    font-size: 28px
  }

  .success_confirmation_page .description_text {
    font-size: 15px
  }

  .success_confirmation_page .action_buttons {
    flex-direction: column
  }

  .success_confirmation_page .action_buttons .primary_button,
  .success_confirmation_page .action_buttons .secondary_button {
    width: 100%
  }
}