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

/* Design Tokens - STARC Brand Color System */

/* Brand Color Palette - Connected to Theme Settings */
:root {
  /* Lochmara (Primary Blue) */
  --lochmara-lighter: #CCE2F1;
  --lochmara-light: #4C9CD0;
  --lochmara-base: #0072BC;
  --lochmara-dark: #005B96;
  
  /* Coral (CTA Red) */
  --coral-light: #E77B77;
  --coral-base: #D9534F;
  --coral-dark: #B22C28;
  
  /* Shark (Grays) */
  --shark-lightest: #F2F2F2;
  --shark-lighter: #E5E5E5;
  --shark-light: #D5D5D5;
  --shark-base: #B2B4B5;
  --shark-dark: #313133;
  --shark-darker: #272728;
  --shark-darkest: #000000;
  
  /* Product Colors */
  --realwall: #00B9AF;
  --litebarrier: #F7941D;
  --fireblockwall: #EF4123;
  --stackbarrier: #78BE20;
  
  /* Default Color Scheme Values - Lightest */
  --color-text: #000000;
  --color-background: #FFFFFF;
  --color-foreground: #F2F2F2;
  --color-border: rgba(0, 6, 9, 0.15);
  --color-accent: #0072BC;
  --color-accent-hover: #005B96;
  --color-navigational: var(--lochmara-light);
  --color-navigational-hover: var(--lochmara-dark);
  
  /* Button Variables */
  --button-background: var(--coral-base);
  --button-text: #ffffff;
  --button-border: var(--coral-base);
  
  /* Form Variables */
  --form-input-bg: #fff;
  --form-input-border-color: var(--shark-light);
  --form-check-bg: var(--shark-lighter);
}

/* Color Scheme - Lightest (Default) */
.color-scheme--lightest {
  --color-text: #313133;
  --color-background: #FFFFFF;
  --color-foreground: #F2F2F2;
  --color-border: #E5E5E5;
  --color-accent: #0072BC;
  --color-accent-hover: #005B96;
  --color-navigational: var(--lochmara-light);
  --color-navigational-hover: var(--lochmara-dark);
  
  background: var(--color-background);
  color: var(--color-text);
}

/* Color Scheme - Light */
.color-scheme--light {
  --color-text: #313133;
  --color-background: #F2F2F2;
  --color-foreground: #FFFFFF;
  --color-border: #E5E5E5;
  --color-accent: #0072BC;
  --color-accent-hover: #005B96;
  --color-navigational: var(--lochmara-light);
  --color-navigational-hover: var(--lochmara-dark);
  
  background: var(--color-background);
  color: var(--color-text);
}

/* Color Scheme - Dark (Blue) */
.color-scheme--dark {
  --color-text: #FFFFFF;
  --color-background: #0072BC;
  --color-foreground: #005B96;
  --color-border: #FFFFFF;
  --color-accent: #FFFFFF;
  --color-accent-hover: rgba(255, 255, 255, 0.8);
  --color-navigational: var(--color-accent);
  --color-navigational-hover: var(--color-accent-hover);
  
  background: var(--color-background);
  color: var(--color-text);
}

/* Color Scheme - Darkest (Dark Gray) */
.color-scheme--darkest {
  --color-text: #FFFFFF;
  --color-background: #313133;
  --color-foreground: #272728;
  --color-border: #FFFFFF;
  --color-accent: #FFFFFF;
  --color-accent-hover: rgba(255, 255, 255, 0.8);
  --color-navigational: var(--color-accent);
  --color-navigational-hover: var(--color-accent-hover);
  
  background: var(--color-background);
  color: var(--color-text);
}

/* Form Color Scheme Overrides */
.color-scheme--dark,
.color-scheme--darkest {
  --form-input-bg: var(--shark-lightest);
  --form-input-border-color: var(--shark-light);
  --form-check-bg: rgba(255, 255, 255, 0.3);
}

/* 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: 1200px) {
  .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;
  }
}

/* Force DND columns to stack on tablet portrait and below */
@media (max-width: 1199px) {
  .dnd-section .row-fluid .dnd-column {
    width: 100% !important;
    display: block;
  }
}

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

/* Ensure headings in color scheme sections use accent color */
.color-scheme--lightest h1,
.color-scheme--lightest h2,
.color-scheme--lightest h3,
.color-scheme--light h1,
.color-scheme--light h2,
.color-scheme--light h3 {
  color: var(--color-accent);
}

.color-scheme--dark h1,
.color-scheme--dark h2,
.color-scheme--dark h3,
.color-scheme--darkest h1,
.color-scheme--darkest h2,
.color-scheme--darkest h3 {
  color: var(--color-accent);
}

/* 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;
}
/* Button Base Styles */
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease-in-out;
  white-space: normal;
  font-family: avenir-next-lt-pro, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-width: 2px;
  border-style: solid;
  border-radius: 12px;
  padding: 12px 24px;
  text-decoration: none;
  line-height: 1.5;
}

/* Primary Button */
.button--primary,
.hs-button.primary,
button[type="submit"] {
  background-color: #D9534F;
  color: #FFFFFF;
  border-color: #D9534F;
}

.button--primary:hover,
.button--primary:focus,
.hs-button.primary:hover,
.hs-button.primary:focus,
button[type="submit"]:hover,
button[type="submit"]:focus {
  background-color: #B22C28;
  color: #FFFFFF;
  border-color: #B22C28;
}

/* Secondary Button */
.button--secondary,
.hs-button.secondary {
  background-color: #FFFFFF;
  color: #0072BC;
  border-color: #0072BC;
}

.button--secondary:hover,
.button--secondary:focus,
.hs-button.secondary:hover,
.hs-button.secondary:focus {
  background-color: #0072BC;
  color: #FFFFFF;
  border-color: #0072BC;
}

/* Secondary Button - Color Scheme Overrides */
.color-scheme--dark .button--secondary,
.color-scheme--darkest .button--secondary {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.color-scheme--dark .button--secondary:hover,
.color-scheme--dark .button--secondary:focus,
.color-scheme--darkest .button--secondary:hover,
.color-scheme--darkest .button--secondary:focus {
  background-color: #f2f2f2 !important;
  color: #b22c28 !important;
  border-color: #b22c28 !important;
}

.color-scheme--lightest .button--secondary,
.color-scheme--light .button--secondary {
  background-color: transparent !important;
  color: #D9534F !important;
  border-color: #D9534F !important;
}

.color-scheme--lightest .button--secondary:hover,
.color-scheme--lightest .button--secondary:focus,
.color-scheme--light .button--secondary:hover,
.color-scheme--light .button--secondary:focus {
  background-color: #D9534F !important;
  color: #ffffff !important;
  border-color: #D9534F !important;
}

/* Disabled State */
button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
  cursor: not-allowed;
  opacity: 0.6;
}

/* No button / Reset */
.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;
}

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

/* STARC Systems Header Styles */

.header--starc {
  padding: 1rem 0;
  background-color: #ffffff;
}

.header--starc .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header--starc .header__logo {
  flex-shrink: 0;
  margin-right: 0;
}

.header--starc .header__logo a {
  display: block;
  color: inherit;
}

.header--starc .header__logo svg {
  display: block;
  height: 45px;
  width: auto;
  color: #0072bc;
}

.header--starc .header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header--starc .header__phone {
  color: #313133;
  font-size: 18px;
  font-family: var(--font-avenir);
  font-weight: 700;
  line-height: 27px;
}

.header--starc .header__actions .button--primary {
  display: inline-flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #D9534F;
  color: #ffffff;
  border: 1px solid #D9534F;
  border-radius: 12px;
  font-size: 18px;
  font-family: var(--font-avenir);
  font-weight: 700;
  line-height: 27px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.header--starc .header__actions .button--primary:hover,
.header--starc .header__actions .button--primary:focus {
  background-color: #B22C28;
  color: #ffffff;
  border-color: #B22C28;
  box-shadow: 0 6px 20px -2px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .header--starc .container {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .header--starc .header__logo svg {
    height: 35px;
  }
  
  .header--starc .header__actions {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .header--starc .header__phone {
    font-size: 16px;
    line-height: 24px;
  }
  
  .header--starc .header__actions .button--primary {
    padding: 6px 16px;
    font-size: 16px;
    line-height: 24px;
  }
}
/* Footer Styles */

.footer--starc {
  padding: 3rem 0 2rem;
  background-color: #ffffff;
}

/* Ensure all footer text is black */
.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
  color: #000000 !important;
}

.footer--starc .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Top row: Logo and Social Icons */
.footer--starc .footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
}

.footer--starc .footer__logo {
  flex-shrink: 0;
}

.footer--starc .footer__logo a {
  display: block;
  color: var(--lochmara-base);
}

.footer--starc .footer__logo svg {
  display: block;
  height: 30px;
  width: auto;
  fill: currentColor;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 1.25rem;
}

.footer__social a:hover {
  color: var(--lochmara-base);
}

.footer__social svg,
.footer__social i {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}

/* Divider */
.footer__divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}

/* Bottom row: Copyright and Links */
.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-avenir);
  font-weight: 400;
}

.footer__copyright {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer__links a {
  color: #000;
  text-decoration: underline;
  transition: color 0.2s ease;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 700
}

.footer__links a:hover {
  color: var(--lochmara-base);
}

/* Responsive */
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }
  
  .footer__copyright {
    font-size: 0.8rem;
  }
  
  .footer__links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
/* 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%;
}

/* Default Button/CTA Module - Apply Primary Theme Styling */
.hs_cos_wrapper_type_cta a,
.hs-cta-wrapper a {
  /* Apply button base styles */
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease-in-out;
  white-space: normal;
  font-family: avenir-next-lt-pro, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-width: 2px;
  border-style: solid;
  border-radius: 12px;
  padding: 12px 24px;
  text-decoration: none;
  line-height: 1.5;
  
  /* Apply primary button colors by default */
  background-color: #D9534F !important;
  color: #FFFFFF !important;
  border-color: #D9534F !important;
}

.hs_cos_wrapper_type_cta a:hover,
.hs_cos_wrapper_type_cta a:focus,
.hs-cta-wrapper a:hover,
.hs-cta-wrapper a:focus {
  background-color: #B22C28 !important;
  color: #FFFFFF !important;
  border-color: #B22C28 !important;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* Shared Component Utilities for Header & Footer */

/* Shared container pattern */
.starc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Shared logo base styles */
.starc-logo a {
  display: block;
}

.starc-logo svg {
  display: block;
  width: auto;
}

/* Shared flex group for actions/social */
.starc-flex-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Shared font family */
:root {
  --font-avenir: "avenir-next-lt-pro", "Avenir Next LT Pro", sans-serif;
}
/* 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;
  }
}