/* Theme base styles */

/* 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 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* 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 #F0EFED;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #E9EAE8;
  border-color: #D4D8D8;
  color: #92A2A9;
  cursor: not-allowed;
}

/* 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: #C0392B;
}

.hs-input.invalid.error {
  border-color: #C0392B;
}

.hs-error-msg {
  color: #C0392B;
  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: #264653;
    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;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Locks page scroll behind the drawer while it's open — js/main.js toggles
   this on the root element alongside .header--open. */

html.has-nav-drawer-open {
  overflow: hidden;
}

/* Site-wide nav behaviour: a plain solid bar, fixed at the top of every
   page, hidden while scrolling down and sliding back in the moment the
   visitor scrolls up (toggled by js/main.js). One flat color, one look,
   in every state — a soft shadow is the only thing that changes once the
   page has actually scrolled. */

.header {
  background: #FFFEFD;
  border-bottom: 1px solid #DCE1E3;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  z-index: 200;
}

.header.header--hidden {
  transform: translateY(-100%);
}

.header.header--scrolled {
  box-shadow: 0 12px 24px -18px rgba(18, 20, 26, 0.3);
}

/* Fixed positioning takes the header out of normal flow on every page, so
   ordinary content needs the equivalent space reserved above it — measured
   for real by js/main.js into --header-h, not guessed as a fixed number.
   The Orrery hero is the one deliberate exception: it's full-bleed and
   meant to sit behind the header at the very top of the page. */

#main-content {
  padding-top: var(--header-h, 64px);
}

body:has(.orrery-hero) #main-content {
  padding-top: 0;
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* ---------------------------------------------------------------- Bar --- */

.header__bar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 1.75rem;
}

.header__logo {
  align-items: center;
  display: flex;
  text-decoration: none;
}

.header__logo img {
  display: block;
  height: var(--logo-h, 32px);
  width: auto;
}

.header__logo-fallback {
  color: #264653;
  font-family: Plus Jakarta Sans, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------------------------------------------------------- Menu trigger --- */

.header__toggle {
  align-items: center;
  background: none;
  border: none;
  color: #264653;
  cursor: pointer;
  display: flex;
  gap: 0.7rem;
  padding: 0.5rem;
}

.header__toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 14px;
  justify-content: center;
  width: 20px;
}

.header__toggle-bar {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  width: 100%;
}

.header--open .header__toggle-bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.header--open .header__toggle-bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.header__toggle-label {
  font-family: Plus Jakarta Sans, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------- Overlay --- */

.header__overlay {
  background: color-mix(in srgb, #264653 55%, transparent);
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  z-index: 190;
}

.header--open .header__overlay {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------------------------- Drawer --- */

.header__panel {
  background: #264653;
  bottom: 0;
  display: flex;
  flex-direction: column;
  max-width: 90vw;
  overflow: hidden;
  padding: 1.5rem 2rem 0;
  position: fixed;
  right: 0;
  top: var(--header-h, 64px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 420px;
  z-index: 195;
}

.header--open .header__panel {
  transform: translateX(0);
}

/* Scrolls on its own — an expanded/long nav never pushes the CTAs and
   social/copyright row below it out of view. */

.header__navigation {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

/* Always visible at the bottom of the drawer, never part of the
   scrolling nav region above it. */

.header__panel-pinned {
  flex: none;
  padding-bottom: 2rem;
}

.header__ctas {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  flex: none;
  gap: 0.75rem;
  padding-top: 1.25rem;
}

.header__cta {
  border-radius: 0;
  font-family: Plus Jakarta Sans, system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.2rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.header__cta--primary {
  background: #A96252;
  border: 1px solid #A96252;
  color: #FEF9F6;
}

.header__cta--primary:hover,
.header__cta--primary:focus-visible {
  background: #8A5B52;
  border-color: #8A5B52;
  color: #FEF9F6;
}

.header__cta--secondary {
  border: 1px solid #FEF9F6;
  color: #FEF9F6;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.header__cta--secondary::before {
  background: #FEF9F6;
  content: "";
  inset: 0;
  position: absolute;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.header__cta--secondary:hover,
.header__cta--secondary:focus-visible {
  color: #264653;
}

.header__cta--secondary:hover::before,
.header__cta--secondary:focus-visible::before {
  transform: translateY(0);
}

/* ------------------------------------------------------ Drawer footer --- */

/* Stacked, not side-by-side: the social row above the copyright line,
   both left-aligned — two side-by-side lines never lined up cleanly next
   to the icons, this always reads correctly regardless of how long the
   copyright text is. */

.header__panel-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.header__panel-footer .social-links {
  justify-content: flex-start;
}

.header__copyright {
  color: #B2BABD;
  font-size: 0.78rem;
}

@media (max-width: 480px) {
  .header__panel {
    padding: 1.25rem 1.5rem 1.5rem;
    width: 100%;
  }
}
.footer {
  background: #1E3741;
  color: #FEF9F6;
  padding: 5.5rem 0 2.5rem;
}

.footer__container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1.5rem;
}

/* ------------------------------------------------------------- Wordmark --- */

.footer__wordmark {
  color: #FEF9F6;
  display: block;
  font-family: Plus Jakarta Sans, Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 3rem;
  text-decoration: none;
  text-decoration: none;
}

.footer .footer__wordmark-dot {
  /* Verdigris — the site's interactive/tech accent — reads as a proper
     spotlight detail against the dark charcoal footer ground. */
  color: #2A9D8F;
}

/* ------------------------------------------------------------------ Row --- */

.footer__row {
  border-top: 1px solid color-mix(in srgb, #FEF9F6 16%, transparent);
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.1fr 1fr;
  padding-top: 3rem;
}

.footer__intro-copy {
  color: color-mix(in srgb, #FEF9F6 78%, transparent);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1.6rem;
  max-width: 42ch;
}

.footer__cta {
  border: 1px solid color-mix(in srgb, #FEF9F6 40%, transparent);
  color: #FEF9F6;
  display: inline-block;
  font-family: Plus Jakarta Sans, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer__cta:hover,
.footer__cta:focus-visible {
  background: #A96252;
  border-color: #A96252;
  color: #FEF9F6;
}

.footer__columns {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
}

.footer .footer__column-title {
  color: color-mix(in srgb, #FEF9F6 55%, transparent);
  display: block;
  font-family: Plus Jakarta Sans, ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.footer__list {
  display: grid;
  gap: 0.75rem;
}

.footer__list a {
  color: #FEF9F6;
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__list a:hover,
.footer__list a:focus-visible {
  color: #2A9D8F; /* matches the wordmark-dot rule above */
}

.footer__column--social .social-links {
  justify-content: flex-start;
}

.footer__column--social .social-links__icon svg {
  fill: #FEF9F6;
  height: 16px;
  width: 16px;
}

.footer__column--social .social-links__link {
  margin-right: 0.9rem;
  transition: opacity 0.2s ease;
}

.footer__column--social .social-links__link:hover,
.footer__column--social .social-links__link:focus-visible {
  opacity: 0.65;
}

/* --------------------------------------------------------------- Bottom --- */

.footer__bottom {
  border-top: 1px solid color-mix(in srgb, #FEF9F6 16%, transparent);
  margin-top: 3.5rem;
  padding-top: 1.75rem;
}

.footer .footer__copyright {
  color: color-mix(in srgb, #FEF9F6 55%, transparent);
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .footer {
    padding: 4rem 0 2rem;
  }

  .footer__row {
    grid-template-columns: 1fr;
  }
}
/* 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;
  }
}
/* Fade-in scroll reveal, plain CSS + vanilla JS (js/main.js), no library.
   Every [data-reveal] element starts hidden and fades up slightly into
   place once js/main.js's IntersectionObserver adds .is-revealed — a
   fallback keeps it visible outright with no JS or on reduced-motion. */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}