/* =============================================================================
   core.css — Testani Consulting
   Brand overrides, layout, and all migrated inline styles.
   Load order: normalize.css → base.css → core.css
   ============================================================================= */

/* === Font === */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_slntwght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: oblique 0deg 10deg;
  font-display: swap;
}

/* === Variables === */

:root {
  --black: black;
  --white: white;
  --gold: #e7c987;
  --bg: #14110a;
}

/* === Fluid Typography === */

html {
  font-size: calc(0.625rem + 0.41666666666666663vw);
}

@media screen and (max-width: 1920px) {
  html { font-size: calc(0.625rem + 0.41666666666666674vw); }
}

@media screen and (max-width: 1440px) {
  html { font-size: calc(0.8126951092611863rem + 0.20811654526534862vw); }
}

@media screen and (max-width: 479px) {
  html { font-size: calc(0.7494769874476988rem + 0.8368200836820083vw); }
}

/* === Base Reset & Body === */

body,
h1, h2, h3, h4, h5, h6,
p, div, span, a {
  font-family: 'Inter', sans-serif;
}

body {
  color: #fff;
  background-color: #14110a;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* === Headings === */

h1 {
  font-variation-settings: "wght" 200;
  font-weight: 200;
  letter-spacing: -.05em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 1;
}

h2 {
  font-variation-settings: "wght" 252;
  font-weight: 252;
  letter-spacing: -.05em;
  border-bottom: 2px solid #ccc;
  margin-top: 0;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: 3rem;
  line-height: 1.2;
}

h3 {
  font-variation-settings: "wght" 200;
  font-weight: 200;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.2;
}

h4 {
  font-variation-settings: "wght" 200;
  font-weight: 200;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.4;
}

h5 {
  font-variation-settings: "wght" 200;
  font-weight: 200;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

h6 {
  font-variation-settings: "wght" 200;
  font-weight: 200;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

[type="search"] {
  -webkit-appearance: none;
  outline-offset: 0;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

/* === Focus / Accessibility === */

*[tabindex]:focus-visible,
input[type="file"]:focus-visible {
  outline: 0.125rem solid #4d65ff;
  outline-offset: 0.125rem;
}

/* === Rich Text === */

.rich-text > :not(div):first-child,
.rich-text > div:first-child > :first-child {
  margin-top: 0;
}

.rich-text > :last-child,
.rich-text ol li:last-child,
.rich-text ul li:last-child {
  margin-bottom: 0;
}

/* === Pointer Events === */

.pointer-events-off {
  pointer-events: none;
}

.pointer-events-on {
  pointer-events: auto;
}

/* === Aspect Ratio === */

.div-square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

/* === Container Centering === */

.container-medium,
.container-small,
.container-large {
  margin-right: auto;
  margin-left: auto;
}

/* === Text Clamp Utilities === */

.text-style-3lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-style-2lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* === Display Utilities === */

.display-inlineflex {
  display: inline-flex;
}

.hide {
  display: none;
}

/* === Spacing Utilities === */

.margin-0     { margin: 0; }
.padding-0    { padding: 0; }
.spacing-clean { padding: 0; margin: 0; }

/* === Utility Pages (404 etc.) === */

.utility-page_component {
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  color: #fff;
  background-color: #14110a;
  justify-content: center;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 24rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.utility-page_wrapper .button {
  background-color: #fff;
  color: #14110a;
  outline: 2px solid #fff;
}

.utility-page_wrapper .button:hover {
  background-color: #e7c987;
  color: #14110a;
  outline: 2px solid #e7c987;
}

/* === Global Styles Wrapper === */

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

/* === Spacing Scale === */

.margin-custom2  { margin: 2.5rem; }
.padding-xlarge  { padding: 4rem; }
.margin-xlarge   { margin: 4rem; }
.margin-xsmall   { margin: .5rem; }
.padding-xhuge   { padding: 8rem; }
.margin-custom1  { margin: 1.5rem; }
.padding-xxhuge  { padding: 12rem; }
.padding-huge    { padding: 6rem; }
.margin-large    { margin: 3rem; }
.padding-xxlarge { padding: 5rem; }
.margin-xxsmall  { margin: .25rem; }
.padding-custom3 { padding: 3.5rem; }
.padding-large   { padding: 3rem; }
.margin-tiny     { margin: .125rem; }
.padding-small   { padding: 1rem; }
.padding-custom2 { padding: 2.5rem; }
.margin-custom3  { margin: 3.5rem; }
.padding-custom1 { padding: 1.5rem; }
.margin-huge     { margin: 6rem; }
.padding-medium  { padding: 2rem; }
.padding-xsmall  { padding: .5rem; }
.margin-xxlarge  { margin: 5rem; }
.padding-xxsmall { padding: .25rem; }
.margin-xhuge    { margin: 8rem; }
.padding-tiny    { padding: .125rem; }
.margin-small    { margin: 1rem; }
.margin-medium   { margin: 2rem; }
.margin-xxhuge   { margin: 12rem; }

.margin-horizontal { margin-top: 0; margin-bottom: 0; }
.padding-top       { padding-bottom: 0; padding-left: 0; padding-right: 0; }
.margin-vertical   { margin-left: 0; margin-right: 0; }
.margin-bottom     { margin-top: 0; margin-left: 0; margin-right: 0; }
.padding-left      { padding-top: 0; padding-bottom: 0; padding-right: 0; }
.padding-vertical  { padding-left: 0; padding-right: 0; }
.padding-horizontal { padding-top: 0; padding-bottom: 0; }
.margin-right      { margin-top: 0; margin-bottom: 0; margin-left: 0; }
.margin-top        { margin-bottom: 0; margin-left: 0; margin-right: 0; }
.margin-left       { margin-top: 0; margin-bottom: 0; margin-right: 0; }
.padding-right     { padding-top: 0; padding-bottom: 0; padding-left: 0; }
.padding-bottom    { padding-top: 0; padding-left: 0; padding-right: 0; }

/* === Form === */

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.is-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.is-focused {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

/* === Styleguide Utilities (kept for reference) === */

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.overflow-auto { overflow: auto; }

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

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

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.text-weight-semibold { font-weight: 600; }
.text-style-strikethrough { text-decoration: line-through; }

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.fs-styleguide_heading-large { font-size: 6rem; }

.background-color-black {
  color: #f5f5f5;
  background-color: #000;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-color-black { color: #000; }
.text-color-grey  { color: gray; }

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start { align-items: start; }

.form_message-success { padding: 1.25rem; }

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.2;
}

.text-rich-text h1,
.text-rich-text h2,
.text-rich-text h3,
.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5,
.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p { margin-bottom: 1rem; }

.text-rich-text ul,
.text-rich-text ol {
  margin-bottom: 1.5rem;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.icon-height-small { height: 1rem; }

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.heading-style-h1 {
  font-size: 4rem;
  font-weight: 200;
  line-height: 1.1;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.text-weight-normal { font-weight: 400; }

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.text-color-white { color: #fff; }
.text-style-italic { font-style: italic; }
.text-weight-medium { font-weight: 500; }
.overflow-hidden { overflow: hidden; }

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.text-size-tiny { font-size: .75rem; }

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.overflow-visible { overflow: visible; }

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.text-weight-light { font-weight: 300; }
.fs-styleguide_heading-medium { font-size: 4rem; }

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.text-size-regular { font-size: 1rem; }
.text-weight-xbold { font-weight: 800; }
.text-align-right  { text-align: right; }
.text-weight-bold  { font-weight: 200; }

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.background-color-white { background-color: #fff; }
.text-style-muted { opacity: .6; }
.text-size-small  { font-size: .875rem; }

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.4;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.is-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.is-focused {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.text-style-nowrap { white-space: nowrap; }
.text-align-left   { text-align: left; }
.background-color-grey { background-color: #f5f5f5; }

.form_input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start { align-items: start; }

.text-style-link {
  color: #000;
  text-decoration: underline;
}

.text-size-large { font-size: 1.5rem; }
.fs-styleguide_header { background-color: #0000000d; }

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 200;
  line-height: 1.2;
}

.page-wrapper {
  width: 100vw;
  position: relative;
  overflow: clip;
}

.fs-styleguide_label {
  color: #fff;
  background-color: #2d40ea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag { background-color: #be4aa5; }

.fs-styleguide_label.is-hex {
  color: #000;
  background-color: #f5f5f5;
}

.fs-styleguide_version {
  z-index: 5;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 200;
  line-height: 1.5;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.icon-height-medium { height: 2rem; }
.text-style-allcaps { text-transform: uppercase; }
.overflow-scroll    { overflow: scroll; }

.form_message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.icon-height-large { height: 3rem; }
.text-align-center { text-align: center; }
.form_component    { margin-bottom: 0; }

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

/* === Button === */

.button {
  outline-offset: 0px;
  color: #fff;
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 100vh;
  outline: 2px solid #e7c987;
  padding: .75rem 1.9rem;
  font-weight: 600;
  transition: color .2s, background-color .2s, outline-color .2s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  outline-offset: 0px;
  color: #14110a;
  background-color: #e7c987;
  outline: 2px solid #e7c987;
}

.button.is-text {
  color: #000;
  background-color: transparent;
  border: 2px solid transparent;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-secondary {
  color: #000;
  background-color: transparent;
  border: 2px solid #000;
  border-bottom-width: .125rem;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

body #email-form .button {
  background-color: #000;
  color: #fff;
  outline: 2px solid #000;
  border-radius: 100vh;
  padding: .75rem 1.9rem;
}

body #email-form .button:hover {
  background-color: #e7c987;
  color: #14110a;
  outline: 2px solid #e7c987;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-size-medium { font-size: 1.25rem; }

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

/* === Home Message === */

.home-message_content-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center start;
  display: grid;
}

.home-message_component {
  color: #fff;
  min-height: 100vh;
  padding: 3rem;
  display: flex;
}

.home-message_list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
}

.home-message_content {
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.home-message_heading-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.home-message_item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.home-message_item-icon {
  color: #000;
  background-color: #fff;
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
}

.home-message_logo {
  width: 4rem;
}

.fs-styleguide_spacing-all { display: none; }
.fs-styleguide_color.is-1  { background-color: #000; }
.fs-styleguide_color.is-2  { background-color: #f5f5f5; }
.fs-styleguide_color.is-3  { background-color: #fff; }

/* === Spacers === */

.spacer-huge   { width: 100%; padding-top: 6rem; }
.spacer-medium { width: 100%; padding-top: 2rem; }
.spacer-xsmall { width: 100%; padding-top: .5rem; }
.spacer-small  { width: 100%; padding-top: 1rem; }
.spacer-xhuge  { width: 100%; padding-top: 8rem; }
.spacer-tiny   { width: 100%; padding-top: .125rem; }
.spacer-xxsmall { width: 100%; padding-top: .25rem; }
.spacer-xxhuge { width: 100%; padding-top: 12rem; }
.spacer-xlarge { width: 100%; padding-top: 4rem; }
.spacer-large  { padding-top: 3rem; }
.spacer-xxlarge { width: 100%; padding-top: 5rem; }

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

/* === Background / Layout === */

.background-1 {
  display: none;
  position: absolute;
  inset: 0%;
}

.flex-justify {
  justify-content: space-between;
  display: flex;
  position: relative;
}

.flex-justify.bottom {
  z-index: 1;
  align-items: flex-end;
  transform: translate(0);
}

/* === Hero Text === */

.home-text-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-shadow: 0 0 .25rem #00000080, 0 0 1rem #00000080;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.background-cubes-1 {
  height: 100%;
}

/* === Navigation === */

.nav-wrapper {
  background-image: linear-gradient(#0000, #fff3);
  border-radius: .5rem;
  list-style-type: none;
  overflow: hidden;
  box-shadow: inset 0 0 5px #ffffff80, 0 0 0 1px #e7c987;
}

.nav-wrapper .tab-button,
.tab-button {
  color: #fff;
  background-color: transparent;
  letter-spacing: .1em;
  padding: .875rem 4rem .875rem 1rem;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: block;
  box-shadow: 0 -2px #e7c98780;
}

.nav-wrapper .tab-button:hover,
.tab-button:hover {
  color: #090b1c;
  background-color: #ffffffbf;
}

.tab-button-text {
  text-transform: uppercase;
}

/* === Heading Label === */

.heading-label {
  text-transform: uppercase;
  border-radius: 100vh;
  padding: .4rem .7rem;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 0 0 2px #e7c987;
}

.heading {
  margin-bottom: 1rem;
}

/* === Body === */

.body {
  text-wrap: balance;
  background-color: #14110a;
  background-image: radial-gradient(circle at 100% 0, #0006, #0e0e0e00);
  height: 100vh;
  overflow: hidden;
}

/* === Content Tabs Drawer === */

.content-tabs {
  z-index: 8;
  background-color: #fff;
  width: 48%;
  max-width: 60ch;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.content-tabs.is-open {
  transform: translateX(0%);
}

.tabs-menu {
  writing-mode: vertical-rl;
  order: 1;
  justify-content: center;
  align-self: flex-end;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.tab-content-wrapper {
  background-color: #fff;
  flex: 1;
  box-shadow: 1px 0 #ccc;
}

.vertical-tab-link {
  color: #bebebe;
  letter-spacing: .1em;
  background-color: #fff;
  padding: 1rem .5rem;
  transition: color .2s, background-color .2s;
  box-shadow: 0 -1px #ccc;
}

.vertical-tab-link:hover {
  color: #8a8a8a;
  background-color: #eee;
}

.vertical-tab-link.is-active {
  color: #2b2b2b;
  background-color: #fff;
}

.vertical-tab-link.last {
  box-shadow: 0 1px #ccc, 0 -1px #ccc;
}

.tab-content {
  color: #414141;
  height: 100vh;
  padding: 1.5rem;
  overflow: scroll;
}

.close-button {
  z-index: 8;
  color: #444;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: .75rem;
  font-family: "Font Awesome 6 Pro Light 300";
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
  transition: padding-top .2s, padding-right .2s, padding-left .2s, padding-bottom .2s;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.content-tabs-component {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.blur-box {
  opacity: 0;
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  background-color: #00000080;
  display: block;
  position: absolute;
  inset: 0%;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.blur-box.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* === Social Links === */

.social-links {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.social-link {
  color: #fff;
  font-family: "Font Awesome 6 Brands Regular 400";
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform .2s;
  display: inline-block;
  max-width: 100%;
}

.social-link:hover {
  transform: scale(1.25);
}

/* === Form Fields === */

.form-field {
  border-radius: .25rem;
  height: 3rem;
  margin-top: -.75rem;
  margin-bottom: 2rem;
  padding-left: .75rem;
  line-height: 3rem;
  width: 100%;
  box-sizing: border-box;
}

.form-field.multi {
  height: 20rem;
  padding: .75rem;
  line-height: 1.5;
  resize: none;
  text-wrap: nowrap;
  white-space: pre-wrap;
  word-break: break-word;
}

.form-label {
  background-color: #fff;
  margin-bottom: 0;
  margin-left: .5rem;
  padding-left: .25rem;
  padding-right: .25rem;
  display: inline-block;
}

/* === Honeypot (anti-spam) === */

.form-pot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* === How It Works === */

.works-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.works-block:last-child {
  align-items: flex-start;
}

.works-text {
  flex: 1;
}

.works-number {
  text-align: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 100vh;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  font-weight: 200;
  line-height: 4rem;
}

.works-number-wrapper {
  background-image: url('../img/Line-4.png');
  background-position: 50% 0;
  background-repeat: repeat-y;
  background-size: auto;
  width: 4rem;
}

.works-number-wrapper.last {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.works-header {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 4rem;
}

.works-para,
.about-rtf {
  margin-bottom: 2rem;
}

.about-rtf h3 {
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.about-rtf p {
  margin-bottom: 2rem;
  padding-left: 1rem;
  line-height: 1.75;
}

/* === Client Logos === */

.logo-grid {
  flex-wrap: wrap;
  display: flex;
}

.logo-block {
  outline-offset: 0px;
  outline: 1px solid #ccc;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 2rem;
  display: flex;
}

.client-logo {
  object-fit: contain;
  height: 3rem;
}

/* === Miscellaneous === */

.close-icon {
  width: 100%;
  height: 100%;
}

.testani-consulting-logo {
  height: 6rem;
}

.social-logo {
  width: 1.5rem;
  height: 1.5rem;
}

.social-logo.li {
  padding-top: .125rem;
  padding-bottom: .125rem;
}



/* === Text Block === */

.text-block {
  color: #d0cfce;
}

/* === About Title === */

.about-title {
  font-variation-settings: "wght" 400;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: 1.5rem;
}

/* === HTML Embeds === */

.html-embed {
  transform-style: preserve-3d;
}

.html-embed-2 {
  height: 40rem;
}

.html-embed-3 {
  height: 50rem;
}

/* === Spline === */

.spline-animation {
  pointer-events: none;
  position: absolute;
  inset: 0%;
}

/* === Heading 2 (border) === */

.heading-2 {
  border-bottom: 2px solid #ccc;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

/* =============================================================================
   Responsive — Tablet (max 991px)
   ============================================================================= */

@media screen and (max-width: 991px) {

  h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .padding-xlarge  { padding: 3rem; }
  .margin-xlarge   { margin: 3rem; }
  .padding-xhuge   { padding: 6rem; }
  .padding-xxhuge  { padding: 8rem; }
  .padding-huge    { padding: 5rem; }
  .margin-large    { margin: 2.5rem; }
  .padding-xxlarge { padding: 4rem; }
  .padding-large   { padding: 2.5rem; }
  .margin-huge     { margin: 5rem; }
  .padding-medium  { padding: 1.5rem; }
  .margin-xxlarge  { margin: 4rem; }
  .margin-xhuge    { margin: 6rem; }
  .margin-medium   { margin: 1.5rem; }
  .margin-xxhuge   { margin: 8rem; }


  .hide,
  .hide-tablet {
    display: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .fs-styleguide_heading-medium { font-size: 3rem; }
  .fs-styleguide_4-col { grid-template-columns: 1fr; }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .fs-styleguide_3-col { grid-template-columns: 1fr; }

  .page-wrapper {
    height: 100svh;
    overflow: hidden;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .home-text-content {
    width: 60%;
  }

  .body {
    height: 100svh;
  }

  .content-tabs {
    width: 60%;
    position: fixed;
  }

  .tabs-menu,
  .tab-content {
    height: 100svh;
  }

  .tabs-menu {
    align-self: center;
  }

  .tab-button {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .vertical-tab-link {
    padding: 1.25rem .75rem;
  }

  .about-rtf h3 {
    font-size: 1.25rem;
  }

  .about-rtf p {
    font-size: .875rem;
  }
}

/* =============================================================================
   Responsive — Mobile Landscape (max 767px)
   ============================================================================= */

@media screen and (max-width: 767px) {

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1rem; }
  h6 { font-size: .875rem; }

  .padding-xlarge  { padding: 2rem; }
  .margin-xlarge   { margin: 2rem; }
  .padding-xhuge   { padding: 4rem; }
  .padding-xxhuge  { padding: 4.5rem; }
  .padding-huge    { padding: 3.5rem; }
  .margin-large    { margin: 1.5rem; }
  .padding-xxlarge { padding: 3rem; }
  .padding-large   { padding: 1.5rem; }
  .margin-huge     { margin: 3.5rem; }
  .padding-medium  { padding: 1.25rem; }
  .margin-xxlarge  { margin: 3rem; }
  .margin-xhuge    { margin: 4rem; }
  .margin-medium   { margin: 1.25rem; }
  .margin-xxhuge   { margin: 4.5rem; }


  .hide-mobile-landscape {
    display: none;
  }

  .fs-styleguide_heading-large { font-size: 3rem; }
  .heading-style-h3  { font-size: 1.5rem; }
  .heading-style-h1  { font-size: 2.5rem; }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .fs-styleguide_section-header { font-size: .875rem; }
  .fs-styleguide_heading-medium { font-size: 2rem; }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .heading-style-h4  { font-size: 1rem; }
  .text-style-nowrap { white-space: normal; }
  .heading-style-h6  { font-size: .75rem; }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .text-size-large { font-size: 1.25rem; }
  .heading-style-h2 { font-size: 2rem; }

  .fs-styleguide_version,
  .heading-style-h5 {
    font-size: .875rem;
  }

  .main-wrapper {
    padding: 1.3rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .home-message_component {
    padding: 0;
  }

  .home-message_content {
    border-radius: 0;
  }

  .flex-justify.bottom {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-text-content,
  .content-tabs {
    width: 100%;
  }

  .tabs-menu {
    width: 2.5rem;
  }

  .vertical-tab-link {
    display: none;
  }

  .tab-button {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .heading-3 {
    margin-bottom: 0;
  }
}

/* =============================================================================
   Responsive — Mobile Portrait (max 479px)
   ============================================================================= */

@media screen and (max-width: 479px) {


  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .hide-mobile-portrait,
  .hide-mobile {
    display: none;
  }

  .main-wrapper {
    height: 100%;
  }

  .home-message_component {
    height: 100%;
    min-height: 0;
  }

  .flex-justify.top {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrapper {
    background-image: linear-gradient(45deg, #0000, #fff3);
  }

  .tab-button {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1rem;
    line-height: 1;
  }

  .heading-label {
    font-size: .675rem;
  }

  .tabs-menu {
    width: auto;
  }

  .vertical-tab-link {
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: .875rem;
    display: block;
  }

  .about-rtf p {
    padding-left: 0;
  }

  .testani-consulting-logo {
    height: 3.25rem;
  }

  .heading-3 {
    font-size: 1.75rem;
  }

  .text-block {
    padding-bottom: 8rem;
    font-size: .875rem;
  }
}

/* =============================================================================
   Responsive — iPhone SE / short narrow screens (max 479px wide, max 700px tall)
   ============================================================================= */

@media screen and (max-width: 479px) and (max-height: 700px) {

  .home-message_content {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .flex-justify.top {
    grid-row-gap: 1rem;
  }

  .text-block {
    padding-bottom: 1rem;
  }

}
