/* Theme base styles */

/*=================
  1. Root Variables
=================*/

:root {

  /* Theme-controlled (editable in HubSpot portal) */
  --color-p: #05241c;
  --color-s: #073329;

  /* Base */
  --color-white:  #ffffff;
  --color-black:  #000000;
  --color-border: rgba(10, 8, 7, 0.15);

  /* Green */
  --color-green-light: #00e082;
  --color-green:       #33a446;
  --color-green-dark:  #05241c;

  /* Neutral */
  --color-neutral-light: #f3f3f3;
  --color-neutral:       #888888;
  --color-neutral-dark:  #222222;

  /* Charcoal */
  --color-charcoal-light: #eaeaea;
  --color-charcoal:       #242424;
  --color-charcoal-dark:  #0d0d0d;

  /* Travertine (warm off-whites) */
  --color-travertine-light: #f7f5f3;
  --color-travertine:       #f4f2ef;
  --color-travertine-dark:  #494847;

  /* Oak (warm beige/brown) */
  --color-oak-light: #f2ede8;
  --color-oak:       #c2a88d;
  --color-oak-dark:  #3a322a;

  /* Ocean (teal/blue) */
  --color-ocean-light: #e7eff2;
  --color-ocean:       #5b95a8;
  --color-ocean-dark:  #061f27;

  /* Orange */
  --color-orange-light: #ffa966;
  --color-orange:       #cc6a1d;
  --color-orange-dark:  #4c270b;

  /* Purple */
  --color-purple-light: #cfa8ff;
  --color-purple-dark:  #430094;

  /* Spacing scale */
  --space-1:  10px;
  --space-2:  20px;
  --space-3:  30px;
  --space-4:  40px;
  --space-5:  50px;
  --space-6:  60px;
  --space-7:  70px;
  --space-8:  80px;
  --space-9:  90px;
  --space-10: 100px;
}

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 0rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

.dnd-section.remove-dnd-styles > .row-fluid {
  max-width: 100% !important;
  width: 100% !important;
}

.dnd-section.remove-dnd-styles .dnd-column {
  padding: 0 !important;
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap prevents long words from breaking mobile responsiveness. */

body {
  font-family: 'Jost', sans-serif;
  color: var(--color-black);
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* Language-specific word breaking */
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */
p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */
a {
  cursor: pointer;
  color: var(--color-green-light);
}

/* Heading classes — mobile-first sizes */
.font-heading1, .h1, h1 {
  font-family: 'Jost', sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  line-height: 120%;
  letter-spacing: -1px;
  word-spacing: 0px;
}
.font-heading2, .h2, h2 {
  font-family: 'Jost', sans-serif;
  font-size: 36px;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  line-height: 120%;
  letter-spacing: -1px;
  word-spacing: 0px;
}
.font-heading3, .h3, h3 {
  font-family: 'Jost', sans-serif;
  font-size: 32px;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  line-height: 120%;
  letter-spacing: -1px;
  word-spacing: 0px;
}
.font-heading4, .h4, h4 {
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  line-height: 130%;
  letter-spacing: -1px;
  word-spacing: 0px;
}
.font-heading5, .h5, h5 {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  line-height: 140%;
  letter-spacing: -1px;
  word-spacing: 0px;
}
.font-heading6, .h6, h6 {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  line-height: 140%;
  letter-spacing: -1px;
  word-spacing: 0px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 15px;
  margin-top: 0;
}

/* Lists */
ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  font-size: 0.583rem;
  word-break: normal;
}

/* Desktop heading sizes */
@media screen and (min-width: 768px) {
  .font-heading1, .h1, h1 {
    font-size: 56px;
  }
  .font-heading2, .h2, h2 {
    font-size: 48px;
  }
  .font-heading3, .h3, h3 {
    font-size: 40px;
  }
  .font-heading4, .h4, h4 {
    font-size: 32px;
  }
  .font-heading5, .h5, h5 {
    font-size: 24px;
  }
  .font-heading6, .h6, h6 {
    font-size: 20px;
  }
}
/* Font Color Classes */

.font-color-p     { color: var(--color-p); }
.font-color-s     { color: var(--color-s); }
.font-color-white { color: var(--color-white); }
.font-color-black { color: var(--color-black); }

/* Green */
.font-color-green-light { color: var(--color-green-light); }
.font-color-green       { color: var(--color-green); }
.font-color-green-dark  { color: var(--color-green-dark); }

/* Neutral */
.font-color-neutral-light { color: var(--color-neutral-light); }
.font-color-neutral       { color: var(--color-neutral); }
.font-color-neutral-dark  { color: var(--color-neutral-dark); }

/* Charcoal */
.font-color-charcoal-light { color: var(--color-charcoal-light); }
.font-color-charcoal       { color: var(--color-charcoal); }
.font-color-charcoal-dark  { color: var(--color-charcoal-dark); }

/* Travertine */
.font-color-travertine-light { color: var(--color-travertine-light); }
.font-color-travertine       { color: var(--color-travertine); }
.font-color-travertine-dark  { color: var(--color-travertine-dark); }

/* Oak */
.font-color-oak-light { color: var(--color-oak-light); }
.font-color-oak       { color: var(--color-oak); }
.font-color-oak-dark  { color: var(--color-oak-dark); }

/* Ocean */
.font-color-ocean-light { color: var(--color-ocean-light); }
.font-color-ocean       { color: var(--color-ocean); }
.font-color-ocean-dark  { color: var(--color-ocean-dark); }

/* Orange */
.font-color-orange-light { color: var(--color-orange-light); }
.font-color-orange       { color: var(--color-orange); }
.font-color-orange-dark  { color: var(--color-orange-dark); }

/* Purple */
.font-color-purple-light { color: var(--color-purple-light); }
.font-color-purple-dark  { color: var(--color-purple-dark); }

/* Font Weight Classes */
.font-light     { font-weight: 300; }
.font-regular   { font-weight: 400; }
.font-medium    { font-weight: 500; }
.font-semibold  { font-weight: 600; }
.font-bold      { font-weight: 700; }
.font-extrabold { font-weight: 800; }
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* HVivo button */

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--section-btn-bg, var(--color-green-light));
  color: var(--section-btn-text, var(--color-green-dark));
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px 16px;
  border-radius: 8px 8px 0 8px;
  text-decoration: none;
}

button:not(.nav-link):not(.mega-subnav-link):not(.btn-search):not(.ms-choice):hover,
.button:hover {
  transform: translateY(-2px);
}

.button:hover {
  filter: brightness(0.88);
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* Arrow link */

.link-arrow svg { transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translateX(2px); }

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-1); }
.pt-2 { padding-top: var(--space-2); }
.pt-3 { padding-top: var(--space-3); }
.pt-4 { padding-top: var(--space-4); }
.pt-5 { padding-top: var(--space-5); }
.pt-6 { padding-top: var(--space-6); }
.pt-7 { padding-top: var(--space-7); }
.pt-8 { padding-top: var(--space-8); }
.pt-9 { padding-top: var(--space-9); }
.pt-10 { padding-top: var(--space-10); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-1); }
.pb-2 { padding-bottom: var(--space-2); }
.pb-3 { padding-bottom: var(--space-3); }
.pb-4 { padding-bottom: var(--space-4); }
.pb-5 { padding-bottom: var(--space-5); }
.pb-6 { padding-bottom: var(--space-6); }
.pb-7 { padding-bottom: var(--space-7); }
.pb-8 { padding-bottom: var(--space-8); }
.pb-9 { padding-bottom: var(--space-9); }
.pb-10 { padding-bottom: var(--space-10); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mt-8 { margin-top: var(--space-8); }
.mt-9 { margin-top: var(--space-9); }
.mt-10 { margin-top: var(--space-10); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-7 { margin-bottom: var(--space-7); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-9 { margin-bottom: var(--space-9); }
.mb-10 { margin-bottom: var(--space-10); }

/* Responsive section padding */
.pt-reg { padding-top: var(--space-3); }
.pb-reg { padding-bottom: var(--space-3); }

@media screen and (min-width: 768px) {
  .pt-reg { padding-top: var(--space-10); }
  .pb-reg { padding-bottom: var(--space-10); }
}

@media screen and (max-width: 767px) {
  .pt-sm { padding-top: var(--space-5); }
  .pb-sm { padding-bottom: var(--space-5); }
}
/* ===========================================
   Background Color Utilities
   =========================================== */

/* Theme-controlled */
.bg-p { background-color: var(--color-p); }
.bg-s { background-color: var(--color-s); }

/* Base */
.bg-white { background-color: var(--color-white); }
.bg-black { background-color: var(--color-black); }

/* Green */
.bg-green-light { background-color: var(--color-green-light); }
.bg-green       { background-color: var(--color-green); }
.bg-green-dark  { background-color: var(--color-green-dark); }

/* Neutral */
.bg-neutral-light { background-color: var(--color-neutral-light); }
.bg-neutral       { background-color: var(--color-neutral); }
.bg-neutral-dark  { background-color: var(--color-neutral-dark); }

/* Charcoal */
.bg-charcoal-light { background-color: var(--color-charcoal-light); }
.bg-charcoal       { background-color: var(--color-charcoal); }
.bg-charcoal-dark  { background-color: var(--color-charcoal-dark); }

/* Travertine */
.bg-travertine-light { background-color: var(--color-travertine-light); }
.bg-travertine       { background-color: var(--color-travertine); }
.bg-travertine-dark  { background-color: var(--color-travertine-dark); }

/* Oak */
.bg-oak-light { background-color: var(--color-oak-light); }
.bg-oak       { background-color: var(--color-oak); }
.bg-oak-dark  { background-color: var(--color-oak-dark); }

/* Ocean */
.bg-ocean-light { background-color: var(--color-ocean-light); }
.bg-ocean       { background-color: var(--color-ocean); }
.bg-ocean-dark  { background-color: var(--color-ocean-dark); }

/* Orange */
.bg-orange-light { background-color: var(--color-orange-light); }
.bg-orange       { background-color: var(--color-orange); }
.bg-orange-dark  { background-color: var(--color-orange-dark); }

/* Purple */
.bg-purple-light { background-color: var(--color-purple-light); }
.bg-purple-dark  { background-color: var(--color-purple-dark); }

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--color-green-dark);
  color: var(--color-green-light);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1000;
}

.header-bar {
  background: var(--color-white);
  height: 72px;
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  width: 103px;
  height: 44px;
  object-fit: contain;
}

.header-logo-text {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-green-dark);
}

.header-nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 32px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-green-dark);
  text-decoration: none;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-purple-dark);
  border-bottom-color: var(--color-purple-light);
}

.nav-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-link[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-link[aria-expanded="true"] {
  color: var(--color-purple-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-neutral);
  text-decoration: none;
  transition: color 0.2s;
}

.social-icon:hover {
  color: var(--color-green-dark);
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green-dark);
  color: var(--color-green-light);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px 8px 0 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-contact:hover {
  background: var(--color-green);
}

.btn-circle-icon {
  flex-shrink: 0;
  color: var(--color-green-light);
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.btn-search:hover {
  background: var(--color-green-dark);
}

.mobile-toggle,
.mobile-search-btn {
  display: none;
}

.header-search {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--color-green);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 10;
}

.header-search.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.search-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.search-logo img {
  width: 103px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0 16px;
  height: 44px;
  color: var(--color-white);
}

.search-form svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.search-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--color-white);
  min-width: 0;
}

.search-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.btn-search-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green-dark);
  color: var(--color-green-light);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 6px 12px;
  border: none;
  border-radius: 8px 8px 0 8px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.search-close:hover {
  opacity: 0.7;
}

.header-backdrop {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 998;
}

.header-backdrop.is-visible {
  display: block;
}

.mega-menu {
  position: absolute;
  top: 72px;
  left: max(0px, calc((100% - 1440px) / 2));
  right: max(0px, calc((100% - 1440px) / 2));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  max-height: 460px;
  background: var(--color-neutral-light);
  box-shadow: 0 8px 32px rgba(5,36,28,0.1);
  border-radius: 32px 32px 0 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 999;
}

.mega-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mega-menu:has(.mega-3rd.is-visible) {
  background: var(--color-white);
  border-top-right-radius: 0;
}


.mega-2nd {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: flex-start;
  padding: 40px 32px 48px;
  gap: 0;
  background: var(--color-neutral-light);
  min-width: 0;
  overflow-y: hidden;
  border-top-right-radius: 32px;
}

.mega-l1-content {
  width: 304px;
  flex-shrink: 0;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: width 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  overflow: hidden;
}

.mega-menu.sub-active .mega-l1-content {
  width: 0;
  opacity: 0;
  padding-right: 0;
}

.mega-title {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--color-green-dark);
  margin: 0 0 12px;
}

.mega-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--color-neutral-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mega-desc p {
  margin: 0;
}

.mega-subnav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 304px;
}

.mega-subnav-item {
  padding-bottom: 4px;
}

.mega-subnav-link {
  display: block;
  width: 100%;
  padding: 0;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-green-dark);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.mega-subnav-link:hover,
.mega-subnav-item.is-active .mega-subnav-link {
  color: var(--color-purple-dark);
}

/* Sub panels — expand from right of subnav when sub item is hovered */
.mega-sub-panels {
  width: 0;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.2s ease;
}

.mega-menu.sub-active .mega-sub-panels {
  width: 304px;
  opacity: 1;
}

.mega-sub-panel {
  display: none;
  flex-direction: column;
  gap: 16px;
  width: 304px;
  padding-left: 48px;
}

.mega-sub-panel.is-visible {
  display: flex;
}

.mega-sub-title {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-neutral-dark);
  margin: 0;
}

.mega-sub-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--color-neutral-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mega-sub-desc p {
  margin: 0;
}

/* 3rd tier white panel — slides in when sub item with children is clicked */
.mega-3rd {
  flex: 0 0 0%;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: flex-basis 0.3s ease, max-width 0.3s ease, opacity 0.2s ease;
}

.mega-3rd.is-visible {
  flex: 0 0 50%;
  max-width: 50%;
  opacity: 1;
  padding: 36px 32px 45px;
  overflow: hidden;
  background: var(--color-white);
}

.mega-3rd--simple,
.mega-3rd--simple.is-visible {
  background: var(--color-neutral-light) !important;
}

.mega-3rd-panel {
  display: none;
}

.mega-3rd-panel.is-visible {
  display: block;
  height: calc(460px - 40px - 48px);
  overflow: hidden;
  column-count: 2;
  column-gap: 0;
  column-fill: auto;
}

.mega-l3-link {
  display: block;
  padding: 0 0 16px 0;
  font-family: 'Jost', sans-serif;
  color: var(--color-green-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.mega-l3-link:hover {
  color: var(--color-purple-dark);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green-dark);
  color: var(--color-green-light);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 8px 8px 0 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--color-green);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: var(--color-white);
  z-index: 1001;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav.is-open {
  display: flex;
  animation: mobileNavIn 0.35s cubic-bezier(0.4,0,0.2,1) forwards;
}

.mobile-nav.is-closing {
  display: flex;
  animation: mobileNavOut 0.35s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes mobileNavIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes mobileNavOut {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-logo img {
  height: 40px;
  width: auto;
}

.mobile-close,
.mobile-search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-green-dark);
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  /* padding: 0 20px 20px; */
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  /* border-bottom: 1px solid var(--color-border); */
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-green-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  padding: 30px 20px 0px;
}

.mobile-chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
}

.mobile-nav-link[aria-expanded="true"] .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-nav-link[aria-expanded="true"] {
  color: var(--color-purple-dark);
}

.mobile-mega {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
  background: var(--color-neutral-light);
  border-radius: 32px;
}

.mobile-mega.is-open {
  grid-template-rows: 1fr;
  padding: 24px 24px;
  margin-bottom: 20px;
  margin-top: 16px;
}

.mobile-mega-inner {
  overflow: hidden;
}

.mobile-mega-title {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-green-dark);
  margin: 0 0 8px;
}

.mobile-mega-desc {
  font-size: 14px;
  color: var(--color-neutral-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.mobile-mega-desc p {
  margin: 0;
}

.mobile-mega-cta {
  margin-bottom: 16px;
}

.mobile-sub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-radius: 8px;
}

.mobile-sub-item {
  border-bottom: 1px solid var(--color-border);
}

.mobile-sub-item:last-child {
  border-bottom: none;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-green-dark);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.mobile-sub-link:hover {
  color: var(--color-purple-dark);
}

.mobile-l3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-l3.is-open {
  transform: translateX(0);
}

.mobile-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 20px 12px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-green-dark);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-back:hover {
  color: var(--color-purple-dark);
}

.mobile-l3-inner {
  padding: 0 20px 32px;
  background: var(--color-neutral-light);
  border-radius: 12px;
  margin: 0 16px;
  flex: 1;
}

.mobile-l3-title {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-purple-dark);
  padding: 20px 0 12px;
  border-bottom: 2px solid var(--color-purple-dark);
  margin: 0 0 12px;
}

.mobile-l3-desc {
  font-size: 14px;
  color: var(--color-neutral-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.mobile-l3-cta {
  display: inline-flex;
  margin-bottom: 20px;
}

.mobile-l3-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-l3-list li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-l3-list a {
  display: block;
  padding: 14px 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--color-green-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-l3-list a:hover {
  color: var(--color-purple-dark);
}

.mobile-nav-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.mobile-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mobile-social a {
  display: flex;
  color: var(--color-neutral);
  transition: color 0.2s;
}

.mobile-social a:hover {
  color: var(--color-green-dark);
}

@media screen and (max-width: 1024px) {
  .header-nav {
    gap: 20px;
  }

  .nav-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .header-nav,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: var(--color-green-light);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    color: var(--color-green-dark);
    flex-shrink: 0;
  }

  .mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
  }

  .header-inner {
    padding: 0 16px;
  }

  .header-logo img {
    width: 80px;
    height: auto;
  }

  .search-logo img {
    width: 50px;
    height: auto;
  }

  .mega-menu {
    display: none;
  }

  .search-inner {
    padding: 0 16px;
    gap: 10px;
  }

  .btn-search-submit {
    font-size: 14px;
  }
  
}

/* ============================================================
   DEBUG ONLY — REMOVE BEFORE DEPLOY
   Forces first mega-menu open at all times for CSS debugging
   ============================================================ */
/* #mega-0 {
  opacity: 1 !important;
  pointer-events: all !important;
}

[data-nav-trigger="0"] {
  color: var(--color-purple-dark) !important;
} */
.site-footer {
  background: linear-gradient(-71.24deg, #073329 0%, var(--color-green-dark) 50.48%, var(--color-green-light) 100%);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

/* Left column */

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 250px;
  flex-shrink: 0;
}

.footer-logo {
  display: block;
  text-decoration: none;
}

.footer-logo img {
  width: 137px;
  height: auto;
  display: block;
}

.footer-logo-text {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
}

.footer-desc {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
}

.footer-desc p {
  margin: 0;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-green-dark);
  color: var(--color-green-light);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 8px 8px 0 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-cta:hover {
  background: #073329;
}

/* Middle: nav columns */

.footer-nav {
  display: flex;
  flex: 1;
  gap: 48px;
  align-items: flex-start;
  min-width: 0;
}

.footer-col {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.footer-col-header {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  margin: 0;
  letter-spacing: 0%;
}

.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer-col-links li a {
  display: block;
  padding: 8px 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links li a:hover {
  color: var(--color-green-light);
}

/* Right: newsletter */

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 360px;
  flex-shrink: 0;
}

.footer-sub-heading {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  margin: 0;
}

.footer-sub-desc {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  margin: 0;
}

.footer-sub-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-sub-form {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.footer-email-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px 12px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
}

.footer-email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-email-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-sub-btn {
  flex-shrink: 0;
  background: var(--color-green-light);
  color: var(--color-green-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px 24px;
  border: none;
  border-radius: 8px 8px 0 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-sub-btn:hover {
  background: #00c874;
}

.footer-sub-privacy {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
}

.footer-sub-privacy p {
  margin: 0;
  font-size: 12px;
}

.footer-sub-privacy a {
  color: var(--color-white);
  font-weight: 500;
  text-decoration: underline;
}

.footer-sub-form-wrap .hs_submit .hs-button{
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 24px;
  border: none;
  border-radius: 8px 8px 0 8px;
  transition: background 0.2s;
}
.footer-sub-form-wrap .hs_submit .hs-button:hover {
  line-height: 1.5 !important;
  padding: 10px 24px !important;
  background: #00bb6d !important;
}



/* Credits bar */

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-credits-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-credits-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  margin: 0;
  white-space: nowrap;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.footer-legal-links a:hover {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 1;
}

.hsfc-Step .hsfc-Step__Content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .footer-inner {
    padding: 48px 20px;
    gap: 48px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-left {
    width: 100%;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-col {
    flex: 0 0 calc(50% - 16px);
    min-width: calc(50% - 16px);
  }

  .footer-newsletter {
    width: 100%;
  }

  .footer-credits-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-credits-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-copyright {
    white-space: normal;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Suppress hover lift/transform on buttons, links, or any element */

.no-anim:hover,
.no-anim:hover * {
  transform: none !important;
}

/* Smooth scrolling */

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 80px;
}

/* Section padding utilities */

.pt-none   { padding-top: 0; }
.pt-xsmall { padding-top: 32px; }
.pt-small  { padding-top: 64px; }
.pt-medium { padding-top: 96px; }
.pt-large  { padding-top: 128px; }
.pt-xlarge { padding-top: 160px; }

.pb-none   { padding-bottom: 0; }
.pb-xsmall { padding-bottom: 32px; }
.pb-small  { padding-bottom: 64px; }
.pb-medium { padding-bottom: 96px; }
.pb-large  { padding-bottom: 128px; }
.pb-xlarge { padding-bottom: 160px; }

@media screen and (max-width: 767px) {
  .pt-xsmall { padding-top: calc(32px / 2); }
  .pt-small  { padding-top: calc(64px / 2); }
  .pt-medium { padding-top: calc(96px / 2); }
  .pt-large  { padding-top: calc(128px / 2); }
  .pt-xlarge { padding-top: calc(160px / 2); }

  .pb-xsmall { padding-bottom: calc(32px / 2); }
  .pb-small  { padding-bottom: calc(64px / 2); }
  .pb-medium { padding-bottom: calc(96px / 2); }
  .pb-large  { padding-bottom: calc(128px / 2); }
  .pb-xlarge { padding-bottom: calc(160px / 2); }
}
/* ===========================================
   Section Theme Classes
   Apply class="theme-[color]" to any section
   element to set the shared color tokens.
   =========================================== */

/* --- Dark themes (white text) --- */

.theme-green-dark {
  --section-bg:          var(--color-green-dark);
  --section-text:        var(--color-white);
  --section-copy:        rgba(255,255,255,0.75);
  --section-btn-bg:      var(--color-green-light);
  --section-btn-text:    var(--color-green-dark);
  --section-divider:     rgba(255,255,255,0.3);
  --section-icon-border: rgba(255,255,255,0.4);
}

.theme-green {
  --section-bg:          var(--color-green);
  --section-text:        var(--color-white);
  --section-copy:        rgba(255,255,255,0.75);
  --section-btn-bg:      var(--color-green-light);
  --section-btn-text:    var(--color-green-dark);
  --section-divider:     rgba(255,255,255,0.3);
  --section-icon-border: rgba(255,255,255,0.4);
}

.theme-purple-dark {
  --section-bg:          var(--color-purple-dark);
  --section-text:        var(--color-white);
  --section-copy:        rgba(255,255,255,0.75);
  --section-btn-bg:      var(--color-purple-light);
  --section-btn-text:    var(--color-purple-dark);
  --section-divider:     rgba(255,255,255,0.3);
  --section-icon-border: rgba(255,255,255,0.4);
}

/* --- Light themes (dark text) --- */

.theme-white {
  --section-bg:          var(--color-white);
  --section-text:        var(--color-p);
  --section-copy:        var(--color-neutral-dark);
  --section-btn-bg:      var(--color-green-dark);
  --section-btn-text:    var(--color-white);
  --section-divider:     var(--color-green-light);
  --section-icon-border: var(--color-green);
}

.theme-green-light {
  --section-bg:          var(--color-green-light);
  --section-text:        var(--color-p);
  --section-copy:        var(--color-neutral-dark);
  --section-btn-bg:      var(--color-green-dark);
  --section-btn-text:    var(--color-white);
  --section-divider:     var(--color-green-dark);
  --section-icon-border: var(--color-green-dark);
}

.theme-purple-light {
  --section-bg:          var(--color-purple-light);
  --section-text:        var(--color-p);
  --section-copy:        var(--color-neutral-dark);
  --section-btn-bg:      var(--color-green-dark);
  --section-btn-text:    var(--color-white);
  --section-divider:     var(--color-purple-dark);
  --section-icon-border: var(--color-purple-dark);
}

.theme-oak {
  --section-bg:          var(--color-oak);
  --section-text:        var(--color-p);
  --section-copy:        var(--color-neutral-dark);
  --section-btn-bg:      var(--color-green-dark);
  --section-btn-text:    var(--color-white);
  --section-divider:     var(--color-green-light);
  --section-icon-border: var(--color-green);
}

.theme-ocean-light {
  --section-bg:          var(--color-ocean-light);
  --section-text:        var(--color-p);
  --section-copy:        var(--color-neutral-dark);
  --section-btn-bg:      var(--color-green-dark);
  --section-btn-text:    var(--color-white);
  --section-divider:     var(--color-green-light);
  --section-icon-border: var(--color-green);
}

/* --- Button color overrides ---
   Add class="theme-btn-[color]" alongside the
   section theme to override just button colors
   (used by modules with a separate button_color field).
   Defined after theme classes so they always win.
   ------------------------------------------------- */

.theme-btn-green-dark {
  --section-btn-bg:   var(--color-green-dark);
  --section-btn-text: var(--color-white);
}

.theme-btn-green {
  --section-btn-bg:   var(--color-green);
  --section-btn-text: var(--color-white);
}

.theme-btn-green-light {
  --section-btn-bg:   var(--color-green-light);
  --section-btn-text: var(--color-green-dark);
}

.theme-btn-purple-dark {
  --section-btn-bg:   var(--color-purple-dark);
  --section-btn-text: var(--color-white);
}

.theme-btn-purple-light {
  --section-btn-bg:   var(--color-purple-light);
  --section-btn-text: var(--color-purple-dark);
}

.theme-btn-oak {
  --section-btn-bg:   var(--color-oak);
  --section-btn-text: var(--color-p);
}

.theme-btn-ocean-light {
  --section-btn-bg:   var(--color-ocean-light);
  --section-btn-text: var(--color-p);
}

.theme-btn-white {
  --section-btn-bg:   var(--color-white);
  --section-btn-text: var(--color-green-dark);
}