/* 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
*/

/* Settings
Design tokens like colors, typography variables, spacing, etc.
*/

/* Honka Design System - Color Palette */
/* Colors are managed through HubSpot theme settings (fields.json) */

:root {
  /* Primary Colors - Reference HubSpot Theme Colors */
  --color-white: #FFFFFF;
  --color-dark-gray: #3574E3;
  --color-morning-sun: #E8D7A0;
  --color-sun: #ffffff;
  --color-old-wood-light: #C9BFB1;
  --color-light-gray: #E5E5E5;
  --color-grass: #CDD3AF;
  --color-lichen: #B8C4A3;
  --color-dark-brown: #3D3532;
  --color-moss-grey: #D9D9D9;
  --color-button-hover-brown: #5D4C50;

  /* CTA Button Colors */
  --color-cta-button-primary: #FFD43B;
  --color-cta-button-hover: #FFC929;
  --color-cta-button-active: #EBB800;

  /* Text Colors */
  --color-text-brown-primary: #4c3f36;
  --color-text-brown-dark: #2f231c;
  --color-text-gray-dark: #494A52;
  --color-body-text: #181818;
  --color-black: #000000;

  /* Border Colors */
  --color-border-gray-light: #D1D6DC;
  --color-border-gray-medium: #CED4DB;

  /* Navigation Colors */
  --color-nav-island-bg: #EBE8E2;
  --color-nav-island-border: #998B7C;

  /* Status Colors */
  --color-success-green: #4F7D24;
  --color-success-green-light: #CDE3CC;
  --color-error-red: #EF6B51;

  /* Background Colors */
  --color-background-light: #F8FAFC;
  --color-secondary-background: #f4f4f4;

  /* Semantic Color Assignments */

  /* Text Colors */
  --color-text-primary: var(--color-dark-gray);
  --color-text-inverse: var(--color-white);
  --color-text-muted: var(--color-dark-brown);

  /* Background Colors */
  --color-bg-primary: var(--color-white);
  --color-bg-light: var(--color-light-gray);
  --color-bg-muted: var(--color-moss-grey);
  --color-bg-dark: var(--color-dark-brown);

  /* Accent Colors */
  --color-accent-primary: var(--color-sun);
  --color-accent-secondary: var(--color-morning-sun);
  --color-accent-nature-1: var(--color-grass);
  --color-accent-nature-2: var(--color-lichen);
  --color-accent-wood: var(--color-old-wood-light);

  /* Interactive Elements */
  --color-link: var(--color-dark-gray);
  --color-link-underline: rgba(93, 76, 80, 0.5); /* Button hover brown at 50% opacity */
  --color-link-hover: var(--color-button-hover-brown);

  --color-button-primary-bg: var(--color-dark-brown);
  --color-button-primary-text: var(--color-white);
  --color-button-primary-hover: var(--color-button-hover-brown);

  --color-button-secondary-bg: var(--color-sun);
  --color-button-secondary-text: var(--color-dark-gray);
  --color-button-secondary-hover: var(--color-morning-sun);

  /* Border Colors */
  --color-border-light: var(--color-light-gray);
  --color-border-medium: var(--color-moss-grey);
  --color-border-dark: var(--color-dark-gray);

  /* Status Colors (if needed) */
  --color-success: var(--color-grass);
  --color-warning: var(--color-sun);
  --color-error: var(--color-dark-brown);
  --color-info: var(--color-lichen);
}

/* Utility Classes for Background Colors */
.bg-white { background-color: var(--color-white); }
.bg-dark-gray { background-color: var(--color-dark-gray); }
.bg-morning-sun { background-color: var(--color-morning-sun); }
.bg-sun { background-color: var(--color-sun); }
.bg-old-wood-light { background-color: var(--color-old-wood-light); }
.bg-light-gray { background-color: var(--color-light-gray); }
.bg-grass { background-color: var(--color-grass); }
.bg-lichen { background-color: var(--color-lichen); }
.bg-dark-brown { background-color: var(--color-dark-brown); }
.bg-moss-grey { background-color: var(--color-moss-grey); }

/* Utility Classes for Text Colors */
.text-white { color: var(--color-white); }
.text-dark-gray { color: var(--color-dark-gray); }
.text-morning-sun { color: var(--color-morning-sun); }
.text-sun { color: var(--color-sun); }
.text-old-wood-light { color: var(--color-old-wood-light); }
.text-light-gray { color: var(--color-light-gray); }
.text-grass { color: var(--color-grass); }
.text-lichen { color: var(--color-lichen); }
.text-dark-brown { color: var(--color-dark-brown); }
.text-moss-grey { color: var(--color-moss-grey); }

/* Utility Classes for Border Colors */
.border-white { border-color: var(--color-white); }
.border-dark-gray { border-color: var(--color-dark-gray); }
.border-morning-sun { border-color: var(--color-morning-sun); }
.border-sun { border-color: var(--color-sun); }
.border-old-wood-light { border-color: var(--color-old-wood-light); }
.border-light-gray { border-color: var(--color-light-gray); }
.border-grass { border-color: var(--color-grass); }
.border-lichen { border-color: var(--color-lichen); }
.border-dark-brown { border-color: var(--color-dark-brown); }
.border-moss-grey { border-color: var(--color-moss-grey); }

/* 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.)
*/









/* Typography System - Honka Design System */
/* Typography is managed through HubSpot theme settings (fields.json) */

/* Note: Fonts are loaded via HubSpot theme settings - Inter, Work Sans, and IvyPresto Display */

/* Body Styles */
body {
  font-family: Inter, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: var(--color-text-primary);
  overflow-wrap: break-word;
}

/* Handles word breaking for specific languages */
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Headings - Styles from HubSpot Theme Settings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-primary);
  margin: 0 0 1.4rem;
}

h1 {
  font-family: 'Abril Fatface', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  text-transform: none;
  line-height: 1.03; /* 76px at 74px */
}

h2 {
  font-family: 'Abril Fatface', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  text-transform: none;
  line-height: 1.09; /* 60px at 55px */
}

h3 {
  font-family: 'Abril Fatface', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  text-transform: none;
  line-height: 1.11; /* 40px at 36px */
}

h4 {
  font-weight: 300; text-decoration: none; font-family: 'Abril Fatface', sans-serif; font-style: normal;
  text-transform: none;
  line-height: 1.06;
}

h5 {
  font-weight: 400; text-decoration: none; font-family: 'Work Sans', sans-serif; font-style: normal;
  text-transform: none;
  line-height: 1.3; /* 26px at 20px */
  letter-spacing: -0.02em;
}

h6 {
  font-weight: 400; text-decoration: none; font-family: 'Work Sans', sans-serif; font-style: normal;
  text-transform: none;
  line-height: 1.23; /* 16px at 13px */
  letter-spacing: -0.5px;
  opacity: 0.5;
}

/* Mobile Typography Adjustments */
@media (max-width: 767px) {
  h1 {
    font-size: 46px;
    line-height: 1.15; /* 53px at 46px */
  }

  h2 {
    font-size: 34px;
    line-height: 1.18; /* 40px at 34px */
  }

  h3 {
    font-size: 24px;
    line-height: 1.25; /* 30px at 24px */
  }

  h4 {
    font-size: 20px;
    line-height: 1.35; /* 27px at 20px */
  }

  h5 {
    font-size: 18px;
    line-height: 1.33; /* 24px at 18px */
  }

  h6 {
    font-size: 12px;
    line-height: 1.3;
  }

  body,
  p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Highlight Heading Variant - Uses Work Sans from accent font */
.h1-highlight,
h1.highlight {
  font-family: Work Sans, sans-serif;
  font-size: 77px;
  line-height: 1.25; /* 96px at 77px */
  font-weight: 400;
  letter-spacing: -0.06em;
  color: var(--color-text-primary);
}

@media (max-width: 767px) {
  .h1-highlight,
  h1.highlight {
    font-size: 47px;
    line-height: 1; /* 47px */
  }
}

/* Paragraphs */
p {
  font-family: Inter, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  margin: 0 0 1.4rem;
  color: var(--color-text-primary);
  line-height: 1.39; /* 25px at 18px */
}

/* Paragraph Size Variants */
p.paragraph-md {
  font-size: 16px;
  line-height: 1.5; /* 24px at 16px */
}

p.paragraph-sm {
  font-size: 14px;
  line-height: 1.43; /* 20px at 14px */
  letter-spacing: -0.02em;
}

/* Anchors - Inherit from theme settings */
a {
  font-weight: normal; text-decoration: underline; font-family: 'Work Sans', sans-serif; font-style: normal;
  cursor: pointer;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-link-hover);
}

/* Text Link Style - Honka specific underline treatment */
a.text-link {
  text-decoration: underline;
  text-decoration-color: var(--color-link-underline);
  text-underline-offset: 30%;
}

/* 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 var(--color-border-gray-medium);
}

/* 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: var(--color-neutral-light, var(--color-border-gray-light));
  border-color: var(--color-neutral-light, var(--color-border-gray-light));
  color: var(--color-neutral-light-contrast, var(--color-light-gray));
}

/* 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: var(--color-white);
}

.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: var(--color-white);
}

/* 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: var(--color-error-red);
}

.hs-input.invalid.error {
  border-color: var(--color-error-red);
}

.hs-error-msg {
  color: var(--color-error-red);
  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: var(--color-white);
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: var(--color-text-gray-dark);
    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;
}

.header {
  position: relative;
  z-index: 10;
}

/* Header hat bar - top dark bar */

.header__hat {
  background-color: var(--color-dark-brown);
  padding: 0.65rem 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 3;
}

.header__hat-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.header__hat-left,
.header__hat-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__hat-right {
  flex: 1;
  justify-content: flex-end;
}

.header__hat-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.header__hat-link:hover {
  opacity: 0.8;
}

.header__hat-search-toggle,
.header__hat-language-toggle {
  background: transparent;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  transition: opacity 0.2s;
}

.header__hat-search-toggle:hover,
.header__hat-language-toggle:hover {
  opacity: 0.8;
}

.header__hat-search-toggle svg,
.header__hat-language-toggle svg {
  width: 16px;
  height: 16px;
}

.header__hat-language {
  position: relative;
}

.header__hat-language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  z-index: 1000;
}

.header__hat-language:hover .header__hat-language-dropdown,
.header__hat-language-dropdown:hover {
  display: block;
}

/* Header main section */

.header__main {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
  backdrop-filter: none;
  position: relative;
  padding: 0.75rem 0;
}

/* Make header transparent when on hero */
.header--transparent .header__main {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/* Header container */

.header__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header__row-1 {
  padding-top: 0;
}

.header__logo {
  grid-column: 1;
  justify-self: start;
}

.header__column {
  display: flex;
  justify-content: center;
  width: 100%;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 0;
  position: relative;
}

.header__navigation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.header__nav-island {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(var(--color-nav-island-bg-rgb, 235, 232, 226), 0.95);
  border: 1px solid rgba(var(--color-nav-island-border-rgb, 153, 139, 124), 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  width: auto;
  max-width: none;
  margin: 0 auto;
  gap: 0;
}

.header__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-island .header__navigation {
  flex: 0 auto;
}

/* Contact Us CTA Button */

.header__cta {
  margin-left: 0;
  position: absolute;
  right: 8px;
  z-index: 10;
}

.header__cta-button {
  background-color: var(--color-cta-button-primary) !important;
  color: var(--color-text-brown-dark) !important;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  white-space: nowrap;
  border: none;
  box-shadow: 0 2px 8px rgba(var(--color-cta-button-primary-rgb, 255, 212, 59), 0.3);
}

.header__cta-button:hover,
.header__cta-button:focus {
  background-color: var(--color-cta-button-hover) !important;
  color: var(--color-text-brown-dark) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(var(--color-cta-button-primary-rgb, 255, 212, 59), 0.4);
  transform: translateY(-1px);
}

.header__cta-button:active {
  background-color: var(--color-cta-button-active) !important;
  color: var(--color-text-brown-dark) !important;
  text-decoration: none !important;
  transform: translateY(0);
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  /* Hide hat bar on mobile */
  .header__hat {
    display: none;
  }

  .header__main {
    background: var(--color-white);
  }

  .header__container {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;
  }

  .header__column {
    position: relative;
    width: auto;
  }

  .header__navigation-wrapper {
    width: 100%;
  }

  .header__nav-island {
    width: 100%;
    display: block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
  }

  .header__nav-island .header__navigation {
    flex: 1;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: flex-end;
    padding: 0;
    gap: 1rem;
  }

  .header__cta {
    display: none;
  }

  .header__logo {
    max-width: 150px;
  }

  .header__navigation-wrapper {
    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;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 180px;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0;
    max-width: 140px;
  }
}

.header__logo img {
  max-width: 100%;
  height: auto;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: var(--color-black);
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: var(--color-white);
  border: 2px solid var(--color-border-gray-light);
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid var(--color-border-gray-light);
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: var(--color-text-gray-dark);
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid var(--color-border-gray-medium);
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--color-text-gray-dark);
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid var(--color-border-gray-medium);
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open {
    background-color: var(--color-dark-brown);
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    padding-top: 80px;
  }

  .header__search.open,
  .header__language-switcher.open {
    background-color: var(--color-dark-brown);
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0;
    position: relative;
    background: transparent;
    border: none;
    padding: 0.5rem;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 12h18M3 6h18M3 18h18' stroke='%23333333' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: center;
    height: 32px;
    width: 32px;
  }

  .header__close--toggle {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 28px;
    background-position: center;
    display: none;
    height: 32px;
    width: 32px;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
  }

  .header__close--toggle.show {
    display: block;
  }

  .header__language-switcher--toggle {
    display: none;
  }

  .header__search--toggle {
    display: none;
  }
}
/* 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%;
}
:root {
  --module-full-max-width: 2500px;
}

.module {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0px;
  background-color: var(--color-secondary-background);
}

/* Video background support */
.module__video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.module__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Ensure content is above video background */
.module:has(.module__video-background) .module__inner {
  position: relative;
  z-index: 2;
}

/* Fallback for older browsers that don't support :has() */
@supports not selector(:has(*)) {
  .module__inner {
    position: relative;
    z-index: 2;
  }
}

.module--width-normal {
  max-width: 1100px;
}

.module--width-narrow {
  max-width: 760px;
}

.module--width-full {
  position: relative;
  width: min(100vw, var(--module-full-max-width));
  max-width: var(--module-full-max-width);
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}

.module__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.module__inner--width-normal {
  max-width: 1100px;
}

.module__inner--width-narrow {
  max-width: 760px;
}

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

.module__header {
  width: 100%;
  margin-bottom: 1.5rem;
}

.module__main-content {
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: var(--module-gap, clamp(2rem, 4vw, 4rem));
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

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

.module__main-content--width-normal {
  max-width: 1100px;
}

.module__main-content--width-narrow {
  max-width: 760px;
}

.module__main-content--width-full {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  align-self: stretch;
  position: relative;
  width: min(100vw, var(--module-full-max-width));
  max-width: var(--module-full-max-width);
  left: 50%;
  transform: translateX(-50%);
}


.module__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0px;
}

.module__block--media {
  text-align: center;
}

.module__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0px;
  object-fit: cover;
}

.module__eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent, var(--color-primary, var(--color-dark-gray)));
  margin-bottom: 0.75rem;
}

.module__eyebrow--align-center,
.module__heading--align-center,
.module__lead--align-center {
  display: block;
  text-align: center;
}

.module__eyebrow--align-right,
.module__heading--align-right,
.module__lead--align-right {
  display: block;
  text-align: right;
}

.module__heading {
  margin: 0 0 1rem;
  font-family: var(--font-secondary, "ivypresto-display", serif);
  color: var(--color-dark, var(--color-body-text));
}

.module__lead {
  font-family: var(--font-primary, "Work Sans", sans-serif);
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(var(--color-body-text-rgb, 24, 24, 24), 0.85);
  margin-bottom: 0.75rem;
}

.module__body {
  font-family: var(--font-primary, "Work Sans", sans-serif);
  color: rgba(var(--color-body-text-rgb, 24, 24, 24), 0.85);
}

.module__body p:last-child {
  margin-bottom: 0;
}

.module__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.module__actions--inline {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.module__block .module__actions--inline {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.module__block .module__actions--inline .module__button {
  flex: 0 1 auto;
  min-width: 140px;
  text-align: center;
}

.module__actions--stacked {
  flex-direction: column;
  align-items: flex-start;
}

.module--align-center .module__header,
.module--align-center .module__actions {
  text-align: center;
  justify-content: center;
}

.module--align-center .module__actions--stacked {
  align-items: center;
}

.module__button {
  font-weight: 600;
}

.module__actions--block {
  margin-top: 1rem;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .module__main-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    text-align: center;
  }

  .module__actions--stack-mobile {
    flex-direction: column;
    align-items: center;
  }
}

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