/* Theme base styles */
/* touch: force watcher/bundle rebuild after editing included partials below — see css/components/_header.css changes */

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

/* 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: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

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

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

/* ==========================================================================
   BLV EXPORTS — SITE HEADER  (complete file — replaces css/components/_header.css)
   Palette from the brand guidelines: #BF7810 / #EE9B19 / #FFFFFF.
   Part 1 = header shell, logo, phone, CTA, nav, mobile drawer.
   Part 2 (below) = mega panel, brands panel, description rows.
   ========================================================================== */

:root {
  --blv-bronze:   #BF7810;
  --blv-amber:    #EE9B19;
  --blv-ink:      #17130B;
  --blv-ink-soft: #5F5748;
  --blv-ivory:    #FBF8F2;
  --blv-white:    #FFFFFF;
  --blv-line:     rgba(23, 19, 11, 0.10);

  --blv-header-h:      108px;
  --blv-header-h-slim: 90px;
  --blv-logo-h:        72px;
  --blv-logo-h-slim:   58px;
  --blv-header-max:    1440px;
  --blv-header-pad:    40px;

  --blv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* --------------------------------------------------------------------------
   ICON SIZING — every inline SVG in the header. Without this an SVG with no
   width/height renders at its intrinsic size, which is what blew the phone
   and arrow icons up to full width.
   -------------------------------------------------------------------------- */

.header__bar svg { display: block; flex-shrink: 0; }
.header__phone-icon { width: 16px; height: 16px; }
.header__cta-arrow  { width: 15px; height: 15px; }
.mobmenu__chevron   { width: 18px; height: 18px; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Optional slim contact strip (trustbar module)
   -------------------------------------------------------------------------- */

.blv-trustbar {
  position: relative;
  width: 100%;
  background-color: var(--trustbar-bg, var(--blv-ink));
  color: var(--trustbar-text, #EFEADF);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
}

.blv-trustbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--blv-header-max);
  margin-inline: auto;
  padding: 9px var(--blv-header-pad);
}

.blv-trustbar-list { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.blv-trustbar-item {
  display: flex; align-items: center; gap: 7px;
  position: relative; padding-left: 26px;
}
.blv-trustbar-item:first-child { padding-left: 0; }

.blv-trustbar-item:not(:first-child)::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--trustbar-accent, var(--blv-amber));
}

.blv-trustbar-icon { width: 14px; height: 14px; flex-shrink: 0; }
.blv-trustbar-link { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.blv-trustbar-link:hover { color: var(--trustbar-accent, var(--blv-amber)); }

.blv-trustbar-right {
  white-space: nowrap;
  color: var(--trustbar-accent, var(--blv-amber));
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

@media (max-width: 767px) {
  .blv-trustbar-inner { flex-wrap: wrap; justify-content: center; gap: 6px 18px; padding: 8px 16px; }
  .blv-trustbar-list { justify-content: center; gap: 14px; }
  .blv-trustbar-right { width: 100%; text-align: center; }
}

/* --------------------------------------------------------------------------
   Shell + spacer for the fixed bar
   -------------------------------------------------------------------------- */

.header {
  position: relative;
  width: 100%;
  margin-bottom: var(--blv-header-h);
}

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

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto; width: auto;
  left: 0; top: 0;
  overflow: visible; z-index: 300;
  padding: 12px 20px;
  background: var(--blv-ink);
  color: #FFFFFF;
}

.header--no-navigation .header__container {
  display: flex; justify-content: center; padding: 1rem 0;
}
.header--no-navigation .header__logo { max-width: 260px; }
.header--no-navigation .header__logo img { max-width: 100%; }

/* --------------------------------------------------------------------------
   THE BAR
   -------------------------------------------------------------------------- */

.header__bar {
  position: fixed;
  left: 0; top: 0;
  z-index: 200;
  width: 100%;
  background-color: var(--blv-ivory);
  transition:
    top 0.2s ease,
    transform 0.45s var(--blv-ease),
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

.header__bar:not(.is-scrolled) { border-bottom: 1px solid var(--blv-line); }

.header__bar.is-scrolled {
  background-color: rgba(251, 248, 242, 0.84);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 8px 32px rgba(23, 19, 11, 0.07);
}

/* main.js adds .is-hidden on scroll-down */
.header__bar.is-hidden { transform: translateY(-105%); }

.header__hairline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    var(--blv-bronze) 0%,
    var(--blv-amber) 45%,
    rgba(191, 120, 16, 0) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s var(--blv-ease);
}

.header__bar.is-scrolled .header__hairline { transform: scaleX(1); }

.header__bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--blv-header-max);
  margin-inline: auto;
  padding: 0 var(--blv-header-pad);
  height: var(--blv-header-h);
  transition: height 0.4s var(--blv-ease);
}

.header__bar.is-scrolled .header__bar-inner { height: var(--blv-header-h-slim); }

.header__logo { flex-shrink: 0; display: flex; align-items: center; }

.header__logo img {
  display: block;
  width: auto !important;
  height: var(--blv-logo-h) !important;
  min-width: 48px;
  max-width: 320px;
  object-fit: contain;
  transition: height 0.4s var(--blv-ease);
}

.header__bar.is-scrolled .header__logo img { height: var(--blv-logo-h-slim) !important; }

.header__nav-wrap { flex: 1; display: flex; justify-content: center; }

.header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

/* --- Direct line --- */

.header__phone {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 22px;
  border-right: 1px solid var(--blv-line);
  color: var(--blv-ink);
  text-decoration: none;
  transition: color 0.25s ease;
}

.header__phone:hover,
.header__phone:focus-visible { color: var(--blv-bronze); text-decoration: none; }

.header__phone-icon { color: var(--blv-bronze); }
.header__phone-text { display: flex; flex-direction: column; line-height: 1.2; }

.header__phone-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blv-ink-soft);
}

.header__phone-number {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: inherit;
}

/* --- CTA --- */

.header__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 999px;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--blv-ink);
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s var(--blv-ease), box-shadow 0.3s ease, color 0.3s ease;
}

.header__cta::before { display: none; }

.header__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--blv-bronze) 0%, var(--blv-amber) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s var(--blv-ease);
  z-index: 0;
}

.header__cta-label,
.header__cta-arrow { position: relative; z-index: 1; }

.header__cta:hover,
.header__cta:focus-visible {
  color: var(--blv-ink);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(191, 120, 16, 0.26);
}

.header__cta:hover::after,
.header__cta:focus-visible::after { transform: scaleX(1); }

.header__cta-arrow { transition: transform 0.3s var(--blv-ease); }
.header__cta:hover .header__cta-arrow { transform: translateX(3px); }

.header__bar a:focus-visible,
.header__bar button:focus-visible {
  outline: 2px solid var(--blv-bronze);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ==========================================================================
   DESKTOP NAV — scoped to .header__bar so it beats menu.module/module.css
   ========================================================================== */

.header__bar .menu--desktop { display: block; }

.header__bar .menu--desktop .menu__wrapper {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__bar .menu__item { position: relative; }
.header__bar .menu__item--depth-1 { display: inline-block; padding: 0; }

.header__bar .menu__item--depth-1 > .menu__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 8px;
}

.header__bar .menu__link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.4;
  color: var(--blv-ink-soft);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.header__bar .menu__link:hover,
.header__bar .menu__link:focus { color: var(--blv-ink); text-decoration: none; }

.header__bar .menu__item--depth-1 > .menu__link::before {
  content: '';
  position: absolute;
  left: 16px; right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blv-bronze), var(--blv-amber));
  transform: scaleX(0);
  transition: transform 0.32s var(--blv-ease);
}

.header__bar .menu__item--depth-1 > .menu__link:hover::before,
.header__bar .menu__item--depth-1.menu__item--open > .menu__link::before,
.header__bar .menu__item--depth-1 > .menu__link--active-link::before {
  transform: scaleX(1);
}

.header__bar .menu__item--depth-1 > .menu__link--active-link,
.header__bar .menu__link--active-branch {
  color: var(--blv-ink);
  font-weight: 600;
}

.header__bar .menu__item--depth-1 > .menu__link--active-link::after { display: none; }

@media (min-width: 1101px) and (max-width: 1200px) {
  .header__bar .menu__link { font-size: 0.75rem; }
  .header__bar .menu__item--depth-1 > .menu__link { padding: 11px 11px; }
  .header__bar .menu__item--depth-1 > .menu__link::before { left: 11px; right: 11px; }
}

/* --- Caret --- */

@media (min-width: 1101px) {
  .header__bar .menu__item--has-submenu > .menu__link { padding-right: 30px; }

  .header__bar .menu__item--depth-1 > .menu__child-toggle {
    position: absolute;
    right: 8px; top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
    pointer-events: none;
  }

  .header__bar .menu__child-toggle-icon {
    display: block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--blv-ink-soft);
    transition: transform 0.3s ease, border-top-color 0.3s ease;
  }

  .header__bar .menu__item--open > .menu__child-toggle .menu__child-toggle-icon {
    transform: rotate(180deg);
    border-top-color: var(--blv-bronze);
  }
}

/* --- Dropdown card --- */

.header__bar .menu__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 99;
  width: 268px;
  padding: 10px;
  display: block;
  text-align: left;
  text-transform: none;
  background-color: var(--blv-white);
  border: 1px solid var(--blv-line);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(23, 19, 11, 0.13);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transform-origin: top left;
  transition: opacity 0.24s ease, transform 0.28s var(--blv-ease), visibility 0.24s;
  margin-top: 0;
}

.header__bar .menu__item--has-submenu::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 16px;
}

.header__bar .menu__item--open > .menu__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header__bar .menu__submenu--level-2 {
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  transform-origin: top center;
}
.header__bar .menu__item--open > .menu__submenu--level-2 {
  transform: translateX(-50%) translateY(0);
}

.header__bar .menu__item--depth-1:first-child .menu__submenu--level-2 {
  left: 0;
  transform: translateY(8px);
  transform-origin: top left;
}
.header__bar .menu__item--depth-1:first-child.menu__item--open > .menu__submenu--level-2 {
  transform: translateY(0);
}

.header__bar .menu__submenu .menu__item { border-bottom: none; padding: 0; width: 100%; }

.header__bar .menu__submenu .menu__link {
  position: relative;
  display: block;
  width: 100%;
  padding: 11px 14px 11px 18px;
  border-radius: 10px;
  background-color: transparent;
  color: var(--blv-ink-soft);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.header__bar .menu__submenu .menu__link::before {
  content: '';
  position: absolute;
  left: 8px; top: 50%;
  width: 2px; height: 0;
  border-radius: 2px;
  background-color: var(--blv-bronze);
  transform: translateY(-50%);
  transition: height 0.25s var(--blv-ease);
}

.header__bar .menu__submenu .menu__link:hover,
.header__bar .menu__submenu .menu__link:focus {
  background-color: rgba(191, 120, 16, 0.08);
  color: var(--blv-ink);
  padding-left: 22px;
}

.header__bar .menu__submenu .menu__link:hover::before,
.header__bar .menu__submenu .menu__link:focus::before { height: 16px; }

.header__bar .menu__submenu--level-3 { left: 100%; top: 0; }
.header__bar .menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
  left: auto; right: 100%; top: 0;
}

/* --------------------------------------------------------------------------
   Hamburger
   -------------------------------------------------------------------------- */

.header__mobile-toggle {
  display: none;
  position: relative;
  width: 26px; height: 20px;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
}

.header__mobile-toggle::before,
.menu__child-toggle::before { display: none; }

.header__mobile-toggle-bar,
.header__mobile-toggle-bar::before,
.header__mobile-toggle-bar::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--blv-ink);
  border-radius: 2px;
  transition: transform 0.35s var(--blv-ease), opacity 0.3s ease, top 0.3s ease, width 0.3s ease;
}

.header__mobile-toggle-bar { top: 9px; }
.header__mobile-toggle-bar::before { content: ''; top: -8px; }
.header__mobile-toggle-bar::after  { content: ''; top: 8px; width: 68%; }

.header__mobile-toggle:hover .header__mobile-toggle-bar::after { width: 100%; }

.header__mobile-toggle[aria-expanded="true"] .header__mobile-toggle-bar { background-color: transparent; }
.header__mobile-toggle[aria-expanded="true"] .header__mobile-toggle-bar::before {
  top: 0; transform: rotate(45deg); background-color: var(--blv-bronze);
}
.header__mobile-toggle[aria-expanded="true"] .header__mobile-toggle-bar::after {
  top: 0; width: 100%; transform: rotate(-45deg); background-color: var(--blv-bronze);
}

.header__mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 149;
  background-color: rgba(23, 19, 11, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__mobile-backdrop.is-open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   Breakpoints
   -------------------------------------------------------------------------- */

@media (max-width: 1320px) {
  :root { --blv-header-pad: 28px; }
  .header__bar-inner { gap: 20px; }
  .header__phone-text { display: none; }
  .header__phone { padding-right: 18px; }
}

@media (max-width: 1100px) {
  :root {
    --blv-header-h: 84px;
    --blv-header-h-slim: 74px;
    --blv-logo-h: 56px;
    --blv-logo-h-slim: 48px;
    --blv-header-pad: 20px;
  }

  .header__bar .menu--desktop { display: none; }

  .header__actions .header__cta,
  .header__actions .header__phone { display: none; }

  .header__mobile-toggle { display: block; }
  .header__nav-wrap { flex: 0; }
  .header__bar-inner { justify-content: space-between; }
}

@media (max-width: 500px) { :root { --blv-header-pad: 16px; } }

/* --------------------------------------------------------------------------
   MOBILE DRAWER (.mobmenu — markup in modules/menu.module)
   -------------------------------------------------------------------------- */

.mobmenu { display: none; }

@media (max-width: 1100px) {
  .mobmenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--blv-ivory);
    height: 0;
    opacity: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: height 0.4s var(--blv-ease), opacity 0.25s ease, border-color 0.35s ease;
  }

  .mobmenu.is-open {
    height: calc(100vh - var(--blv-header-h));
    opacity: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-color: var(--blv-line);
  }

  .mobmenu__head { padding: 24px 24px 6px; flex-shrink: 0; }

  .mobmenu__kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blv-bronze);
  }
  .mobmenu__kicker::before {
    content: ''; width: 22px; height: 1px; background-color: var(--blv-bronze);
  }

  .mobmenu__list { padding: 6px 24px 20px !important; flex-shrink: 0; list-style: none; }
  .mobmenu__item { border-bottom: 1px solid var(--blv-line); }

  .mobmenu__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 18px 2px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--blv-ink);
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
  }

  .mobmenu__row::-webkit-details-marker,
  .mobmenu__row::marker { display: none; content: ''; }

  .mobmenu__row:hover,
  .mobmenu__row:focus-visible,
  .mobmenu__row--active { color: var(--blv-bronze); }
  .mobmenu__row--active { font-weight: 600; }

  .mobmenu__chevron {
    color: var(--blv-ink-soft);
    transition: transform 0.3s var(--blv-ease), color 0.3s ease;
  }

  .mobmenu__details[open] > .mobmenu__row { color: var(--blv-bronze); }
  .mobmenu__details[open] > .mobmenu__row .mobmenu__chevron {
    transform: rotate(180deg); color: var(--blv-bronze);
  }

  .mobmenu__sublist { padding-bottom: 10px; list-style: none; }

  .mobmenu__sublink {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    margin-bottom: 3px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--blv-ink-soft);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }

  .mobmenu__sublink:hover,
  .mobmenu__sublink:focus-visible {
    background-color: rgba(191, 120, 16, 0.09);
    color: var(--blv-bronze);
    padding-left: 16px;
  }

  .mobmenu__thumb {
    width: 38px; height: 38px;
    border-radius: 8px;
    background-color: #F1EADC;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
  }

  .mobmenu .mobmenu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: auto 24px 28px;
    padding: 16px 24px;
    border-radius: 999px;
    background-color: var(--blv-ink);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
  }
  .mobmenu .mobmenu__cta::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .header__bar,
  .header__bar-inner,
  .header__logo img,
  .header__hairline,
  .header__cta,
  .header__cta::after,
  .header__cta-arrow,
  .header__bar .menu__submenu,
  .header__bar .menu__link::before,
  .mobmenu {
    transition-duration: 0.01ms !important;
  }
  .header__bar.is-hidden { transform: none; }
}

/* ==========================================================================
   BLV NAV — MEGA PANEL, BRANDS LIST, DESCRIPTION ROWS
   Append to the bottom of css/components/_header.css.
   Uses the tokens declared at the top of that file (--blv-bronze etc).
   ========================================================================== */

/* --------------------------------------------------------------------------
   Products mega panel: categories | how you buy | feature card
   -------------------------------------------------------------------------- */

.header__bar .menu__submenu--mega {
  width: min(860px, calc(100vw - 60px));
  left: 50%;
  padding: 26px;
  transform: translateX(-50%) translateY(8px);
  transform-origin: top center;
}

.header__bar .menu__item--open > .menu__submenu--mega {
  transform: translateX(-50%) translateY(0);
}

.megapanel {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.05fr;
  gap: 28px;
}

.megapanel__col { display: flex; flex-direction: column; min-width: 0; }

.megapanel__col--use {
  padding-left: 28px;
  border-left: 1px solid var(--blv-line);
}

.megapanel__eyebrow {
  display: block;
  margin-bottom: 12px;
  padding-left: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blv-bronze);
}

.megapanel__list { margin: 0; padding: 0; list-style: none; }

.megapanel__row {
  position: relative;
  display: block;
  padding: 9px 12px 9px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.25s ease, padding-left 0.25s var(--blv-ease);
}

.megapanel__row::before {
  content: '';
  position: absolute;
  left: 5px; top: 50%;
  width: 2px; height: 0;
  border-radius: 2px;
  background-color: var(--blv-bronze);
  transform: translateY(-50%);
  transition: height 0.25s var(--blv-ease);
}

.megapanel__row:hover,
.megapanel__row:focus-visible {
  background-color: rgba(191, 120, 16, 0.07);
  padding-left: 18px;
  text-decoration: none;
}

.megapanel__row:hover::before,
.megapanel__row:focus-visible::before { height: 18px; }

.megapanel__row-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blv-ink);
  line-height: 1.35;
}

.megapanel__row-note {
  display: block;
  margin-top: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--blv-ink-soft);
  line-height: 1.4;
}

.megapanel__all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 14px 12px 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blv-bronze);
  text-decoration: none;
  transition: gap 0.25s var(--blv-ease);
}

.megapanel__all svg { width: 14px; height: 14px; }
.megapanel__all:hover { gap: 11px; color: var(--blv-bronze); text-decoration: none; }

/* --- Feature card --- */

.megacard {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background-color: #F5F0E6;
  border: 1px solid var(--blv-line);
  text-decoration: none;
  transition: transform 0.3s var(--blv-ease), box-shadow 0.3s ease;
}

.megacard:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(23, 19, 11, 0.14);
  text-decoration: none;
}

.megacard__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #E7DECB;
  background-size: cover;
  background-position: center;
}

.megacard__body { display: block; padding: 16px 18px 18px; }

.megacard__eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blv-bronze);
}

.megacard__title {
  display: block;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--blv-ink);
}

.megacard__text {
  display: block;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blv-ink-soft);
}

.megacard__link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blv-bronze);
  border-bottom: 1px solid rgba(191, 120, 16, 0.35);
  padding-bottom: 2px;
}

@media (max-width: 1200px) and (min-width: 1101px) {
  .header__bar .menu__submenu--mega { width: min(620px, calc(100vw - 48px)); padding: 20px; }
  .megapanel { grid-template-columns: 1fr 1fr; gap: 20px; }
  .megacard { display: none; }
}

/* --------------------------------------------------------------------------
   Brands dropdown — own brand card + partner logo grid
   -------------------------------------------------------------------------- */

.header__bar .menu__submenu--brands {
  width: min(680px, calc(100vw - 60px));
  left: 50%;
  padding: 24px;
  transform: translateX(-50%) translateY(8px);
  transform-origin: top center;
}

.header__bar .menu__item--open > .menu__submenu--brands {
  transform: translateX(-50%) translateY(0);
}

.brandpanel {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 26px;
}

.brandpanel__partners {
  display: flex;
  flex-direction: column;
  padding-left: 26px;
  border-left: 1px solid var(--blv-line);
}

/* --- Satluj (or any brand_type = own) --- */

.brandhero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background-color: #F5F0E6;
  border: 1px solid var(--blv-line);
  text-decoration: none;
  transition: transform 0.3s var(--blv-ease), box-shadow 0.3s ease;
}

.brandhero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(23, 19, 11, 0.14);
  text-decoration: none;
}

.brandhero__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 74px;
  border-radius: 10px;
  background-color: #FFFFFF;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blv-bronze);
  text-transform: uppercase;
}

.brandhero__name {
  display: block;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--blv-ink);
}

.brandhero__note {
  display: block;
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--blv-ink-soft);
}

.brandhero__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blv-bronze);
  transition: gap 0.25s var(--blv-ease);
}

.brandhero__link svg { width: 13px; height: 13px; }
.brandhero:hover .brandhero__link { gap: 10px; }

/* --- Partner logo grid --- */

.brandgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.brandgrid__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 10px 6px 11px;
  border-radius: 11px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--blv-ease);
}

.brandgrid__tile:hover,
.brandgrid__tile:focus-visible {
  background-color: rgba(191, 120, 16, 0.07);
  border-color: rgba(191, 120, 16, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

/* White plate behind each logo — the partner marks are all different shapes
   and background colours, so they only read as a set on a neutral field. */
.brandgrid__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background-color: #FFFFFF;
  border: 1px solid rgba(23, 19, 11, 0.06);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blv-bronze);
  text-transform: uppercase;
}

.brandgrid__name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--blv-ink-soft);
  text-align: center;
  line-height: 1.3;
}

.brandgrid__tile:hover .brandgrid__name { color: var(--blv-ink); }

@media (max-width: 1200px) and (min-width: 1101px) {
  .header__bar .menu__submenu--brands { width: min(560px, calc(100vw - 48px)); padding: 18px; }
  .brandpanel { grid-template-columns: 1fr; gap: 18px; }
  .brandpanel__partners { padding-left: 0; border-left: none; border-top: 1px solid var(--blv-line); padding-top: 16px; }
}

/* --------------------------------------------------------------------------
   Manual dropdowns with a description line
   -------------------------------------------------------------------------- */

.header__bar .menu__submenu--level-2 { width: 290px; }

.header__bar .menu__submenu .menu__link-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blv-ink);
  line-height: 1.35;
}

.header__bar .menu__submenu .menu__link-note {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--blv-ink-soft);
  line-height: 1.4;
}

.header__bar .menu__submenu .menu__link:hover .menu__link-label { color: var(--blv-ink); }

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .megapanel,
  .megacard,
  .brandpanel { display: none; }

  .mobmenu__sublink--all {
    color: var(--blv-bronze);
    font-weight: 600;
  }

  .mobmenu__tag {
    margin-left: auto;
    padding: 2px 8px;
    border-radius: 999px;
    background-color: rgba(191, 120, 16, 0.12);
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blv-bronze);
  }
}

@media (prefers-reduced-motion: reduce) {
  .megapanel__row,
  .megapanel__all,
  .megacard,
  .brandhero,
  .brandgrid__tile { transition-duration: 0.01ms !important; }
}
/* ==========================================================================
   EDITORIAL B2B MASTER FOOTER STYLES
   ========================================================================== */

.blv-footer-editorial {
  background-color: #fcf9f4;
  color: #5f5748;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

/* --- Top Editorial Header --- */
.blv-editorial-top-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.blv-editorial-tag {
  color: #EE9B19;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.blv-editorial-headline {
  font-family: var(--font-heading, serif);
  color: #FDFBF7;
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0;
  max-width: 680px;
  font-weight: 600;
}

.blv-editorial-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(253, 251, 247, 0.05);
  border: 1px solid rgba(238, 155, 25, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  white-space: nowrap;
}

.blv-editorial-status-pill .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.blv-editorial-status-pill .status-text {
  font-size: 0.8rem;
  color: #5f5748;
  font-weight: 500;
}

.blv-editorial-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(238, 155, 25, 0.4) 0%, rgba(253, 251, 247, 0.1) 100%);
  margin-bottom: 56px;
}

/* --- Main Asymmetric Grid --- */
.blv-editorial-main {
  padding-bottom: 60px;
}

.blv-editorial-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr;
  gap: 50px;
}

/* Brand Column */
.blv-editorial-logo {
  height: 100px;
  width: auto;
  margin-bottom: 10px;
}

.blv-editorial-brand-name {
  font-family: var(--font-heading, serif);
  font-size: 1.8rem;
  color: #EE9B19;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.blv-editorial-bio {
  color: #5f5748;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 32ch;
}

.blv-editorial-location {
  display: flex;
  gap: 12px;
  color: rgba(253, 251, 247, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
}

.blv-editorial-location .loc-icon {
  color: #EE9B19;
  flex-shrink: 0;
}

/* Dual Nav Column */
.blv-editorial-col--navs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.blv-nav-head {
  color: #EE9B19;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 20px 0;
}

.blv-editorial-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blv-editorial-links a {
  color: rgba(253, 251, 247, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.blv-editorial-links a .bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(238, 155, 25, 0.4);
  transition: all 0.25s ease;
}

.blv-editorial-links a:hover {
  color: #EE9B19;
  transform: translateX(4px);
}

.blv-editorial-links a:hover .bullet {
  background-color: #EE9B19;
  transform: scale(1.4);
}

/* Glassmorphic Contact Card */
.blv-editorial-card {
  background: rgba(253, 251, 247, 0.04);
  border: 1px solid rgba(238, 155, 25, 0.25);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.blv-card-header {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(253, 251, 247, 0.08);
}

.blv-card-header .card-badge {
  font-size: 0.7rem;
  color: #EE9B19;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
}

.blv-card-header h4 {
  color: #FDFBF7;
  font-size: 1.05rem;
  margin: 4px 0 0 0;
  font-weight: 600;
}

.blv-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.blv-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(253, 251, 247, 0.85);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blv-contact-line svg {
  color: #EE9B19;
  flex-shrink: 0;
}

.blv-contact-line:hover {
  color: #EE9B19;
}

.blv-wa-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.blv-wa-button:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

/* --- Bottom Zone & Architectural Watermark --- */
.blv-editorial-bottom {
  background: #492e08;
  border-top: 1px solid rgba(253, 251, 247, 0.08);
  padding: 24px 0;
  position: relative;
}

.blv-bottom-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.blv-bottom-copyright {
  color: rgba(253, 251, 247, 0.5);
  font-size: 0.8rem;
}

.blv-bottom-legal {
  display: flex;
  gap: 20px;
}

.blv-bottom-legal a {
  color: rgba(253, 251, 247, 0.5);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blv-bottom-legal a:hover {
  color: #EE9B19;
}

.blv-bottom-social-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.06);
  border: 1px solid rgba(253, 251, 247, 0.12);
  color: rgba(253, 251, 247, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-circle:hover {
  background: #EE9B19;
  border-color: #EE9B19;
  color: #122219;
}

/* Watermark Text */
.blv-watermark-text {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading, serif);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  color: rgba(253, 251, 247, 0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 8px;
}

/* ==========================================================================
   ANIMATED FLOATING BACK TO TOP BUTTON (FORCE VISIBILITY FIX)
   ========================================================================== */

@keyframes bttGlowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(238, 155, 25, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(238, 155, 25, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238, 155, 25, 0);
  }
}

button.blv-back-to-top-floating {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #EE9B19 0%, #BF7810 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 99999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
  outline: none !important;
  animation: bttGlowPulse 2.5s infinite;
}

button.blv-back-to-top-floating.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

/* SVG Container Always Visible */
button.blv-back-to-top-floating svg,
button.blv-back-to-top-floating .blv-btt-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0 auto !important;
  overflow: visible !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* NORMAL STATE (Bina Hover Ke): White Arrow Line Force */
button.blv-back-to-top-floating svg path,
button.blv-back-to-top-floating:not(:hover) svg path {
  stroke: #FFFFFF !important;
  stroke-width: 2.5px !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-dasharray: none !important;
  stroke-dashoffset: 0 !important;
  fill: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* HOVER STATE: Dark Green Switch & Upward Bounce */
button.blv-back-to-top-floating:hover {
  background: linear-gradient(135deg, #FFAE34 0%, #EE9B19 100%) !important;
  transform: translateY(-5px) scale(1.08) !important;
  box-shadow: 0 12px 30px rgba(238, 155, 25, 0.5) !important;
}

button.blv-back-to-top-floating:hover svg {
  transform: translateY(-3px) scale(1.1) !important;
}

button.blv-back-to-top-floating:hover svg path {
  stroke: #122219 !important;
  stroke-dasharray: none !important;
  stroke-dashoffset: 0 !important;
}

button.blv-back-to-top-floating::before {
  display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
  .blv-editorial-top-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .blv-editorial-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blv-editorial-col--navs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blv-editorial-headline {
    font-size: 1.6rem;
  }

  .blv-editorial-col--navs {
    grid-template-columns: 1fr;
  }

  .blv-bottom-grid {
    flex-direction: column;
    text-align: center;
  }

  .blv-bottom-legal {
    justify-content: center;
  }

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