/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.page-center,
.content-wrapper {
  padding-left:15px;
  padding-right:15px;
  margin-left:auto;
  margin-right:auto;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
  padding-left:15px;
  padding-right:15px;
}
.banner-area .dnd-section {
  padding: 0;
}

.dnd-section[class*="force-full-width"]>.row-fluid {
  max-width: 100%;
  padding-left:0;
  padding-right: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;
  line-height: normal;
}

/* 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;
  color: #FFF;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.8px; /* 160% */
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

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

/* Header DND sections */


/* =============================================
   JAYASOM BRAND TOKENS
   ============================================= */

/* =============================================
   LOADER OVERLAY
   ============================================= */

.hs-inline-edit #jayasom-loader {
  display:none;
}
#jayasom-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FAF7F2;
  overflow: hidden;
}
.popup-form .form-inner-wrap .submitted-message {
    text-align: center;
}
#jayasom-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    rgba(196, 168, 130, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ---- Corner bracket marks ---- */
.ldr-corner { position: absolute; width: 44px; height: 44px; }
.ldr-corner--tl { top: 28px; left: 28px; }
.ldr-corner--tr { top: 28px; right: 28px; }
.ldr-corner--bl { bottom: 28px; left: 28px; }
.ldr-corner--br { bottom: 28px; right: 28px; }
.ldr-corner svg { width: 100%; height: 100%; }
.ldr-corner svg line {
  stroke: #D6C9B4;
  stroke-width: 1;
  opacity: 0;
  animation: cFade 1s cubic-bezier(.25, .46, .45, .94) 0.4s forwards;
}

/* ---- Inner content stack ---- */
.ldr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- Logo lockup ---- */
.ldr-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s cubic-bezier(.25, .46, .45, .94) 0.1s forwards;
}
.ldr-rule {
  width: 40px;
  height: 1px;
  background: #9B7D5A;
  transform: scaleX(0);
  transform-origin: center;
  animation: scaleIn 0.8s cubic-bezier(.25, .46, .45, .94) 0.5s forwards;
}
.ldr-wordmark {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(26px, 3.8vw, 40px);
  letter-spacing: 0.36em;
  color: #1A110A;
  text-transform: uppercase;
  line-height: 1;
}
.ldr-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.2em;
  color: #9B7D5A;
  opacity: 0;
  animation: fadeIn 0.9s cubic-bezier(.25, .46, .45, .94) 0.95s forwards;
}

/* ---- Breathing pulse ---- */
.ldr-pulse {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.6s cubic-bezier(.25, .46, .45, .94) 0.85s forwards;
}
.ldr-pulse__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #C4A882;
  animation: breathe 3s ease-in-out 1.2s infinite;
}
.ldr-pulse__ring:nth-child(2) {
  inset: 10px;
  border-color: #9B7D5A;
  animation-delay: 1.55s;
}
.ldr-pulse__dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #9B7D5A;
  transform: translate(-50%, -50%);
  animation: dotBeat 3s ease-in-out 1.2s infinite;
}

/* ---- Progress line ---- */
.ldr-prog-wrap {
  width: 180px;
  height: 1px;
  background: #D6C9B4;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.6s cubic-bezier(.25, .46, .45, .94) 1.05s forwards;
}
.ldr-prog-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #9B7D5A, #C4A882);
  transform-origin: left;
  transform: scaleX(0);
  animation: progLoad 2.6s cubic-bezier(.25, .46, .45, .94) 1.1s forwards;
}
.ldr-wordmark img {
  max-width: 190px;
}

/* ---- Status text ---- */
.ldr-status {
  margin-top: 18px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8A7762;
  opacity: 0;
  animation: fadeIn 0.6s cubic-bezier(.25, .46, .45, .94) 1.25s forwards;
}
.ldr-dots::after {
  content: '';
  animation: dotsAnim 1.4s steps(4, end) 1.6s infinite;
  min-width: 20px;
  display: inline-block;
}

/* ---- Exit animation ---- */
#jayasom-loader.leaving {
  animation: loaderOut 0.95s cubic-bezier(.25, .46, .45, .94) forwards;
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes fadeUp  { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; }  to { opacity:1; } }
@keyframes scaleIn { from { transform:scaleX(0); } to { transform:scaleX(1); } }
@keyframes cFade   { from { opacity:0; } to { opacity:1; } }
@keyframes breathe  { 0%,100% { transform:scale(1);    opacity:.85; } 50% { transform:scale(1.25); opacity:.25; } }
@keyframes dotBeat  { 0%,100% { transform:translate(-50%,-50%) scale(1);   opacity:1; } 50% { transform:translate(-50%,-50%) scale(.55); opacity:.4; } }
@keyframes progLoad { 0% { transform:scaleX(0); } 65% { transform:scaleX(.8); } 100% { transform:scaleX(1); } }
@keyframes dotsAnim { 0% { content:''; } 25% { content:'.'; } 50% { content:'..'; } 75% { content:'...'; } }
@keyframes loaderOut { 0% { opacity:1; transform:translateY(0); } 100% { opacity:0; transform:translateY(-20px); pointer-events:none; } }

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

/* Header container */

.header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

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

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

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



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

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

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

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* 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: 200px;
  overflow: hidden;
}

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

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

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

.header__logo--main {
  padding-top: 1rem;
}

/* 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: #000;
    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: #FFF;
  border: 2px solid #D1D6DC;
  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 #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  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 #CED4DB;
    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: none;
  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 #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}
button.hs-language-switcher__button {
    border-color: #fff;
    color: #fff;
}
button.hs-language-switcher__button svg {
    fill: #fff !important;
}
html[lang="ar"] .header__language-switcher.header--element {
    padding-left: 1.4rem;
    padding-right: 0;
}
html[lang="ar"] .header__language-switcher.header--element button.hs-language-switcher__button span.hs-language-switcher__label span#hs_cos_wrapper_language-switcher_ {
    margin: 0 0 0 15px;
}
html[lang="ar"] .header__language-switcher.header--element button.hs-language-switcher__button span.hs-language-switcher__label svg.hs-language-switcher__icon--dropdown {
    margin-left: 0 !important;
    margin-right: 15px !important;
}
@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    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;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: 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,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    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 5vw;
    position: relative;
  }

  .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:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* 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%;
}
/* ─── TOKENS ─────────────────────────────── */
:root {
  --cream:    #F2EBD9;
  --cream2:   #EDE4CE;
  --offwhite: #FAF7F2;
  --dark:     #1A110A;
  --brown:    #5A3D22;
  --tan:      #9B7D5A;
  --sand:     #C4A882;
  --muted:    #8A7762;
  --border:   #D6C9B4;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', sans-serif;
  --ease:     cubic-bezier(.25,.46,.45,.94);
}


html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--offwhite); color: var(--dark); overflow-x: hidden; }
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }




/* ─── HELPERS ─────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* label / eyebrow */
.eyebrow {
  font-family: var(--sans); font-size: 8.5px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
}
.eyebrow--light { color: rgba(255,255,255,.55); }

/* outlined CTA */
.btn {
  display: inline-block; font-family: var(--sans); font-size: 8.5px;
  font-weight: 400; letter-spacing: 2.8px; text-transform: uppercase;
  padding: 10px 24px; border: 1px solid;
  transition: background .28s var(--ease), color .28s var(--ease);
}
.btn-dark  { color: var(--brown); border-color: var(--brown); }
.btn-dark:hover  { background: var(--brown); color: #fff; }
.btn-light { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-light:hover { background: #fff; color: var(--dark); }
.btn-sand  { color: var(--tan); border-color: var(--tan); }
.btn-sand:hover  { background: var(--tan); color: #fff; }

/* scroll reveal */
.sr { opacity: 0; transform: translateY(20px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.sr.d1 { transition-delay: .12s; }
.sr.d2 { transition-delay: .24s; }
.sr.d3 { transition-delay: .36s; }
.sr.visible { opacity: 1; transform: none; }

/* ─── NAVBAR ──────────────────────────────── */

/* ─── S1 HERO ─────────────────────────────── */
#s1 { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }

.s1-bg {
  position: absolute; inset: 0;
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 9s var(--ease);
}
.s1-bg.go { transform: scale(1); }

.s1-shade {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(18,10,3,.18) 0%, rgba(18,10,3,.18) 45%, rgba(18,10,3,.60) 100%);
}

/* "GET IN TOUCH" rotated tab on the right */
.s1-tab {
  position: absolute; right: -32px; top: 50%; z-index: 4;
  transform: rotate(90deg) translateX(-50%);
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: #fff; background: rgba(50,32,14,.5); padding: 8px 20px;
  white-space: nowrap;
}

.s1-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 60px;
}
.s1-eyebrow { color: rgba(255,255,255,.7); margin-bottom: 14px; }
.s1-h1 {
  text-decoration:none; font-weight: 300;
  font-size: clamp(38px, 5.5vw, 68px); line-height: 1.05;
  color: #fff; margin-bottom: 0;
}
.s1-h1 em { font-style: italic; }

.s1-explore {
  position: absolute; bottom: 62px; right: 48px; z-index: 4;
}

/* ─── S2 HEART-CENTERED ───────────────────── */
#s2 { background: var(--offwhite); padding-top: 72px; padding-bottom: 0; }

.s2-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding-bottom: 44px;
}
.s2-left .eyebrow { margin-bottom: 18px; }
.s2-h2 {
  text-decoration:none; font-weight: 300;
  font-size: clamp(26px,3.2vw,44px); line-height: 1.1;
  color: var(--dark); margin-bottom: 24px;
}
.s2-right p {
  font-size: 12.5px; font-weight: 300; line-height: 1.9; color: var(--muted);
  margin-bottom: 12px;
}

/* two images edge-to-edge */
.s2-images { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.s2-images .img-cell { height: 420px; overflow: hidden; }

/* ─── S3 WHAT MOVES US ────────────────────── */
#s3 { background: var(--cream); padding: 80px 0; }

.s3-box {
  border: 1px solid var(--border);
  max-width: 800px; margin: 0 auto;
  padding: 60px 70px; text-align: center;
}
.s3-box .eyebrow { margin-bottom: 18px; }
.s3-h2 {
  text-decoration:none; font-weight: 300;
  font-size: clamp(30px,4vw,54px); line-height: 1.1;
  color: var(--dark); margin-bottom: 36px;
}
.s3-p {
  font-size: 12.5px; font-weight: 300; line-height: 1.9;
  color: var(--muted); margin-bottom: 14px; text-align: left;
}
.s3-p:last-of-type { margin-bottom: 34px; }

/* ─── S4 PULVINAR ─────────────────────────── */
#s4 { position: relative; height: 540px; overflow: hidden; }
.s4-bg {
  position: absolute; inset: 0;
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
}
.s4-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,8,2,.84) 0%, rgba(14,8,2,.5) 55%, rgba(14,8,2,.08) 100%);
}
.s4-body {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: flex-end; padding: 0 48px 54px;
}
.s4-inner { max-width: 400px; }
.s4-eyebrow { color: var(--sand); margin-bottom: 16px; }
.s4-h2 {
  text-decoration:none; font-weight: 300;
  font-size: clamp(28px,3.8vw,50px); line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.s4-p {
  font-size: 12px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.65); margin-bottom: 28px;
}

.intro-img-stats-grid__img,
.approach-three__card,
.about-img-stats__img {
    border-radius: 5px;
}

/* ─── S8 SAPIEN ───────────────────────────── */
#s8 { background: var(--cream2); overflow: hidden; }
.s8-grid { display: grid; grid-template-columns: 1fr 1fr; }

.s8-img { height: 560px; overflow: hidden; position: relative; }
.s8-img img { height: 100%; object-fit: cover; transition: opacity .5s; }

.s8-img-dots {
  position: absolute; bottom: 18px; right: 20px;
  display: flex; gap: 7px;
}
.s8-img-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s; }
.s8-img-dot.on { background: #fff; transform: scale(1.3); }

.s8-text { padding: 70px 64px; display: flex; flex-direction: column; justify-content: center; }
.s8-text .eyebrow { margin-bottom: 18px; }
.s8-h2 {
  text-decoration:none; font-weight: 300;
  font-size: clamp(24px,3.2vw,42px); line-height: 1.15;
  color: var(--dark); margin-bottom: 28px;
}
.s8-h2 em { font-style: italic; }
.s8-p {
  font-size: 12.5px; font-weight: 300; line-height: 1.9; color: var(--muted); margin-bottom: 10px;
}
.s8-p:last-of-type { margin-bottom: 32px; }

.s8-nav { display: flex; gap: 8px; align-items: center; margin-top: 24px; }
.s8-btn {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--tan); transition: all .3s;
}
.s8-btn:hover { background: var(--brown); border-color: var(--brown); color: #fff; }
.s8-btn svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ─── S9 INSTAGRAM ────────────────────────── */
#s9 { background: var(--offwhite); padding: 72px 0 80px; }

.s9-h2 {
  text-decoration:none; font-weight: 300;
  font-size: clamp(20px,3vw,36px); color: var(--dark); margin-bottom: 20px;
}

.s9-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.s9-profile { display: flex; align-items: center; gap: 10px; }
.s9-avatar  { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1.5px solid var(--sand); }
.s9-handle  { font-size: 11px; font-weight: 400; color: var(--dark); }
.s9-sub     { font-size: 9.5px; font-weight: 300; color: var(--muted); }
.s9-visit   { font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); padding: 8px 16px; transition: all .3s; }
.s9-visit:hover { background: var(--brown); color: #fff; border-color: var(--brown); }

.s9-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }

.s9-cell { position: relative; overflow: hidden; cursor: pointer; }
.s9-cell-img { aspect-ratio: 4/5; overflow: hidden; }
.s9-cell-img img { transition: transform .6s var(--ease); }
.s9-cell:hover .s9-cell-img img { transform: scale(1.06); }

.s9-cell-cap { display: flex; align-items: center; justify-content: space-between; padding: 8px 0 0; }
.s9-cell-acc { display: flex; align-items: center; gap: 6px; }
.s9-cell-av  { width: 20px; height: 20px; border-radius: 50%; overflow: hidden; }
.s9-cell-name { font-size: 9px; font-weight: 400; color: var(--dark); }
.s9-cell-ext  { font-size: 10px; color: var(--muted); }

.s9-play {
  position: absolute; top: 10px; right: 10px; width: 26px; height: 26px;
  border-radius: 50%; background: rgba(255,255,255,.28);
  display: flex; align-items: center; justify-content: center;
}
.s9-play svg { width: 10px; height: 10px; fill: #fff; }

/* ─── FOOTER ──────────────────────────────── */

/* ─── SCROLL TO TOP ───────────────────────── */
#gotop {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 40px; height: 40px; background: var(--brown);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
#gotop.show { opacity: 1; pointer-events: all; }
#gotop svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .s2-top { grid-template-columns: 1fr; gap: 30px; }
  .s8-grid { grid-template-columns: 1fr; }
  .s8-img  { height: 320px; }
  .s8-text { padding: 48px 32px; }
  .s5-card { flex: 0 0 50%; }
  .s9-grid { grid-template-columns: repeat(2,1fr); }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; border-bottom: 1px solid var(--border); padding-bottom: 32px; margin-bottom: 0; }
  .foot-col { padding: 20px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  #nav  { padding: 14px 20px; }
  #nav.stuck { padding: 10px 20px; }
  .s1-content { padding: 0 20px 48px; }
  .s1-explore { right: 20px; bottom: 48px; }
  .s2-images .img-cell { height: 240px; }
  .s3-box { padding: 40px 20px; }
  .s7-prev { left: -24px; }
  .s7-next { right: -24px; }
  .s7-viewport { padding: 40px 20px; }
  .s5-card { flex: 0 0 90%; }
  .s9-grid { grid-template-columns: repeat(2,1fr); }
  .foot-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .foot-col { border-left: none; border-top: 1px solid var(--border); padding: 20px 0; }
  .foot-bottom { padding: 14px 20px; }
}




html,
body {
  overflow-x: hidden!important;
  overflow-y: auto!important;
}
.hsfc-Row .hsfc-RichText {
  font-family: 'CENTURYGOTHIC'!important;
  text-align: center;
}
.body-wrapper.hs-landing-page.hs-page {
  overflow: hidden !important;
}
/* Popup form overlay – hidden by default, shown when .active (same as Marjan_2025) */
body .popup-form {
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  visibility: hidden;
  z-index: -99;
  transform: scale(1.1);
}

body .popup-form.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  transform: scale(1);
}

body .popup-form::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body .popup-form::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

body .popup-form::-webkit-scrollbar-thumb {
  background-color: #272c68;
}

/* Popup inner form box */
.popup-form .form-inner-wrap {
  background: #F4EAE5;
  box-shadow: 0 4px 84px 0 rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  max-width: 700px;
  padding: 66px 30px 30px;
  position: relative;
}

.popup-form h3.form-title {
  margin-top: 0;
  padding-right: 50px;
}

.popup-form h3.form-title:empty {
  display: none;
}

/* Close button */
.popup-form .form-inner-wrap .close-icon {
  cursor: pointer;
  float: right;
  font-size: 28px;
  position: absolute;
  right: 15px;
  top: 9px;
  background: #fff;
  border-radius: 50%;
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-form .hsfc-RichText  strong{
  font-weight:normal
}
.popup-form .hsfc-RichText p{
  color:#464446!important
}
.popup-form  .submitted-message p,
.popup-form .submitted-message strong,
.popup-form .submitted-message h3 {
  font-weight:normal!important;
  color: #464446!important;
}

.form-inner-wrap .close-icon:hover svg * {
  stroke: #fff;
}

.form-inner-wrap .close-icon svg {
  transition: all ease 0.3s;
}

/* Form fields inside popup */
.popup-form .form-inner-wrap .hs-input {
  border: 0;
  border-bottom: 1px solid #111;
  color: #111;
  background: transparent;
  padding-left: 0;
}

body .popup-form .form-inner-wrap .hs-input::placeholder {
  color: #111;
  opacity: 0.6;
}

.popup-form .form-inner-wrap .grecaptcha-badge {
  margin: 0;
}

body .popup-form .hs-form-field {
  margin-bottom: 17px;
}
/* body, html {
overflow: hidden auto!important;
} */
.button,
.hs-button,
a,
button {
  text-decoration: none;
}
.button:hover,
.hs-button:hover,
a:hover,
button:hover {
  text-decoration: none;
}
.popup-form .form-inner-wrap .hs-input {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #111;
  height:38px
}
.popup-form .form-inner-wrap .hs-input:focus {
  border-color: #00000042;
  outline:none;
  box-shadow:none
}
.popup-form .form-inner-wrap textarea.hs-input {
  min-height: 120px;
  height: auto;
  padding-top: 0.35rem;
}
.popup-form .hs-form-field label {
  font-size: 14px;
}
.popup-form .hs-input {width:100%!important}
.popup-form .input .hs-fieldtype-intl-phone{
  border-bottom:0
}

.popup-form input.hs-button.primary.large {
  width: 100%;
  height: 43px;
}

/* Inline / embedded forms — same field chrome as Homepage Banner popups (.popup-form .form-inner-wrap) */
.hs-form-fields-popup-match .hs-form-field {
  margin-bottom: 17px;
}
.hs-form-fields-popup-match .hs-input {
  width: 100% !important;
}
.hs-form-fields-popup-match .hs-input,
.hs-form-fields-popup-match textarea.hs-input,
.hs-form-fields-popup-match select.hs-input {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #111;
  height: 38px;
  color: #111;
  background: transparent;
  padding-left: 0;
}
.hs-form-fields-popup-match textarea.hs-input {
  min-height: 120px;
  height: auto;
  padding-top: 0.35rem;
}
.hs-form-fields-popup-match .hs-input::placeholder {
  color: #111;
  opacity: 0.6;
}
.hs-form-fields-popup-match .hs-input:focus {
  border-color: #00000042;
  outline: none;
  box-shadow: none;
}
.hs-form-fields-popup-match .hs-form-field label {
  font-size: 14px;
}
.hs-form-fields-popup-match .input .hs-fieldtype-intl-phone {
  border-bottom: 0;
}
.hs-form-fields-popup-match input.hs-button.primary.large,
.hs-form-fields-popup-match input[type="submit"].hs-button,
.hs-form-fields-popup-match .hs-button.primary {
  width: 100%;
  height: 43px;
}

.header--no-navigation {
  position: absolute;
  top: 0;
  z-index: 1000;
  padding: 2rem 50px;
  width: 100%;
}

.header--no-navigation  .content-wrapper {
  max-width: 100% !important;
  padding: 0;
}
.header--no-navigation  .content-wrapper .button-group .button-item {
  margin: 0!important;
}

.header--no-navigation.is-sticky {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
button, .button, .hs-button, .hs-blog-post-listing__post-button {
  letter-spacing: 3.5px;
}

.hs-button.white,
.button.white  {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.60);  
  color: #fff;
}
.amaala-footer {
  display: none !important;
}
h6{
  /* font-family: "Century Gothic"; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 164.286% */
  letter-spacing: 3px;
  text-transform: uppercase;
}


h1, h2, h3, h4, h5 {
  letter-spacing: 4px;
}
h6 {
  letter-spacing: 3px;
}
p {
  letter-spacing: 1px;
}
@media (max-width: 1280px) and (min-width: 1200px) {
  h1,h2 {
    font-size: 40px!important;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  h1,h2 {
    font-size: 38px!important;
  }
  h3 {
    font-size: 28px!important;
  }



}
@media (max-width: 991px) and (min-width: 768px) {
  h1,h2 {
    font-size: 32px!important;
  }
  h3 {
    font-size: 24px!important;
  }
}
@media (max-width: 767px) {
  /* Popup inner form box */
  .popup-form .form-inner-wrap {
    margin: 0 auto!important;
    max-width: 100%!important;
  }
  .banner__fixed-btn {display: none!important;}
  h1,h2 {
    font-size: 30px!important;
    letter-spacing: 2px;
  }
  h3 {
    font-size: 20px!important;
    letter-spacing: 2px;
  }
  .header--no-navigation {
    padding: 1rem 0;
  }
  .header--no-navigation .header__logo {
    margin: 0;
    width: auto;
    max-width: 150px;
  }
  .header--no-navigation  .header__container {
    flex-direction: row;
    padding: 0 1rem; 
  }
  .header--no-navigation  .header__container .button-item.white.normal .button {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .popup-form .form-inner-wrap .close-icon {
    width: 30px!important;
    height: 30px!important;
    font-size: 14px!important;
  }
  .popup-form .form-inner-wrap {
    padding: 30px 30px 30px!important;
  }
}

@media (max-width: 359px) {
  .header--no-navigation .header__logo {
    max-width: 130px;
  }
  .header--no-navigation  .header__container .button-item.white.normal .button {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* RTL – same overflow as LTR to avoid double scrollbar; inherit caused both html and body to scroll */
[dir="rtl"] body,
[dir="rtl"] html {
  direction: rtl!important;
}
[dir="rtl"] .header__logo {
  margin-right: 0;
}
[dir="rtl"] .banner__fixed-btn {
  right: auto;
  left: 0;
  border-radius: 0 5px 5px 0;
}
[dir="rtl"] .media__slide-arrow svg,
[dir="rtl"] .media .media__controls button svg,
[dir="rtl"] .destinations .destinations__controls button svg,
[dir="rtl"] .wellness-retreats__deco svg,
[dir="rtl"] .quote-cards-grid__deco svg,
[dir="rtl"] .shape-content svg {
  transform: rotate(180deg);
}
[dir="rtl"] .sustainability-community__col--right {
  padding: 0 3rem 0 15px;
}
[dir="rtl"] .destinations {
  padding-left: 0 !important;
  padding-right: 50px!important;
}
@media (min-width: 1440px) {
  [dir="rtl"] .careers__col.careers__col--image {
    padding: 0 0 0 3rem;
  }
}
[dir="rtl"] .careers {
  padding: 0 0 0 50px;
}
[dir="rtl"] .media {
  padding: 0 50px 0 0;
}
[dir="rtl"] .media__col--heading {
  padding-left: 1.5rem;
  padding-right: 0;
}
[dir="rtl"] .banner__scroll-up {
  left: 2rem;
  right: auto;
}
[dir="rtl"] .destinations__header {
  text-align: right;
}
[dir="rtl"] [data-aos=fade-left] {
  transform: translate3d(-100px, 0, 0);
}
[dir="rtl"] [data-aos=fade-right] {
  transform: translate3d(100px, 0, 0);
}
[dir="rtl"]  .bottom-footer__form-wrap .hs-form-field .hs-input {
  padding: 15px 15px 15px 120px;
}
[dir="rtl"] .bottom-footer__form-wrap .actions {
  left: 10px;
  right: auto;
}
[dir="rtl"] .amaala-slider__paragraph  {
  text-align: right;
}
@media (max-width: 767px) {
  [dir="rtl"] .careers,
  [dir="rtl"] .media,
  [dir="rtl"] .destinations { 
    padding-left: 1rem !important;
    padding-right: 1rem!important;
  }
  [dir="rtl"] .bottom-footer__col--right {
    text-align: right;
  }
  .bottom-footer__inner,
  .bottom-footer .last-row {
    opacity: 1;
    transform: translateZ(0);
  }
}
/* Arabic-only RTL overrides
   Keep fully scoped to avoid affecting English pages. */

[lang="ar"] {
  direction: rtl;
}

[lang="ar"] body {
  direction: rtl;
}

/* Core text/chrome alignment for content-heavy modules */
[lang="ar"] .content-wrapper,
[lang="ar"] .hs_cos_wrapper_type_module,
[lang="ar"] .hs-richtext,
[lang="ar"] .hs-richtext p,
[lang="ar"] .hs-richtext li {
  direction: rtl;
}

/* Common left/right patterns used across custom modules */
[lang="ar"] [class*="__breadcrumbs"] {
  direction: rtl;
}

[lang="ar"] [class*="__breadcrumbs"] [class*="__sep"] {
  transform: scaleX(-1);
}

[lang="ar"] [class*="button-group"],
[lang="ar"] [class*="buttons-wrp"] {
  direction: rtl;
}

/* Flip most 2-column split wrappers without touching centered modules */
[lang="ar"] [class*="split__grid"],
[lang="ar"] [class*="split__row"],
[lang="ar"] [class*="two-col__grid"],
[lang="ar"] [class*="two-column__grid"],
[lang="ar"] [class*="__split-grid"],
[lang="ar"] [class*="__dual-grid"] {
  direction: rtl;
}

/* Header + language switcher */
[lang="ar"] #nav,
[lang="ar"] .nav-right,
[lang="ar"] .nav-lang-switcher {
  direction: rtl;
}

[lang="ar"] .nav-lang-switcher {
  padding-right: 0;
  padding-left: 10px;
}

[lang="ar"] .nav-lang-switcher::after {
  right: auto;
  left: 20px;
}

[lang="ar"] .nav-lang-select {
  padding: 4px 10px 4px 28px;
}

[lang="ar"] .mob-menu-footer-lang::after {
  right: auto;
  left: 8px;
}

[lang="ar"] .mob-lang-select {
  padding: 4px 8px 4px 22px;
}

/* Form controls and tables in Arabic pages */
[lang="ar"] input,
[lang="ar"] textarea,
[lang="ar"] select {
  direction: rtl;
  text-align: right;
}

[lang="ar"] table th,
[lang="ar"] table td {
  text-align: right;
}

/* Sliders/carousels: keep track math stable, flip visible flow only */
[lang="ar"] .slick-slider,
[lang="ar"] .owl-carousel {
  direction: ltr;
}

[lang="ar"] .slick-slide,
[lang="ar"] .owl-item {
  direction: rtl;
}

/* AOS directional mirroring for Arabic pages */
[lang="ar"] [data-aos="fade-left"] {
  transform: translate3d(-100px, 0, 0);
}

[lang="ar"] [data-aos="fade-right"] {
  transform: translate3d(100px, 0, 0);
}

[lang="ar"] [data-aos="fade-up-left"] {
  transform: translate3d(-100px, 100px, 0);
}

[lang="ar"] [data-aos="fade-up-right"] {
  transform: translate3d(100px, 100px, 0);
}

[lang="ar"] [data-aos="fade-down-left"] {
  transform: translate3d(-100px, -100px, 0);
}

[lang="ar"] [data-aos="fade-down-right"] {
  transform: translate3d(100px, -100px, 0);
}

[lang="ar"] [data-aos="zoom-in-left"] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[lang="ar"] [data-aos="zoom-in-right"] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[lang="ar"] [data-aos="zoom-out-left"] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[lang="ar"] [data-aos="zoom-out-right"] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[lang="ar"] [data-aos].aos-animate {
  transform: translate3d(0, 0, 0);
}
[lang="ar"] .banner__inner.content-wrapper {
  text-align: right;
}
[lang="ar"] .intro-img-stats-grid__top .span6 {
  text-align: inherit;
}

[lang="ar"] .newsletter-stay__form .hs-form,
[lang="ar"] .press-news-card,
[lang="ar"] .res-split__row .span6,
[lang="ar"] .sig-retreats__card-body,
[lang="ar"] .sig-retreats__head-titles,
[lang="ar"] .retreat-path__step,
[lang="ar"] .arch-sg__stat,
[lang="ar"] .arch-sg__top .span6,
[lang="ar"] .intro-img-stats-grid__copy,
[lang="ar"] .intro-img-stats-grid__stat {
  text-align: right;
}
[lang="ar"] .two-zones__list ul {
  padding-right: 1.1rem;
}
/* [lang="ar"] .heritage-brackets__decor svg {
  transform: rotate(180deg);
} */
[lang="ar"] span.press-news-card__read-arrow {
  transform: rotate(180deg);
  display: inline-block;
  position: relative;
  top: 1px;
}
[lang="ar"] .press-news-card__read {
  gap: .5rem;
  display: flex;
  align-items: center;
  line-height: normal;
}

/* ======================================================================
   Module-level RTL overrides (Arabic only)
   Each block below targets a specific .module file and flips its
   left/right padding, margin, position, border, text-align and arrow
   directions. Scoped via [lang="ar"].
   ====================================================================== */

/* Working Practice Two Cards */
[lang="ar"] .practice-two__card-body {
  text-align: right;
}

/* Menu */
[lang="ar"] .menu__submenu {
  text-align: right;
  left: auto;
  right: 0;
}
[lang="ar"] .menu__submenu--level-2 {
  transform: translateX(50%);
}
[lang="ar"] .menu__submenu--level-3 {
  left: auto;
  right: 100%;
}
[lang="ar"] .menu__item--depth-1:nth-last-child(-n+2) .menu__submenu--level-3 {
  left: 100%;
  right: auto;
}
[lang="ar"] .menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 0;
  padding-left: 3rem;
}
[lang="ar"] .menu__submenu--level-2 > .menu__item:first-child:before {
  left: auto;
  right: 125px;
  margin-left: 0;
  margin-right: 1rem;
}
[lang="ar"] .menu__item--depth-1:first-child > .menu__submenu--level-2 > .menu__item:first-child:before {
  left: auto;
  right: 0;
}
[lang="ar"] .menu__submenu .menu__child-toggle {
  margin-left: 0;
  margin-right: auto;
}
[lang="ar"] .menu__child-toggle {
  right: auto;
  left: 5px;
}
[lang="ar"] .menu__item--depth-1 > .menu__child-toggle {
  right: auto;
  left: 0;
}
[lang="ar"] .menu__child-toggle-icon {
  margin-left: 0;
  margin-right: 1px;
}
[lang="ar"] .menu__item--depth-1 > .menu__link--active-link:after {
  left: auto;
  right: 0;
}

/* Two Zones Practice Cards */
[lang="ar"] .two-zones__card {
  text-align: right;
}
[lang="ar"] .two-zones__list ul {
  padding-left: 0;
  padding-right: 1.1rem;
}

/* Movement Lab Two Column Schedule */
[lang="ar"] .movement-lab-schedule__value {
  text-align: left;
}

/* Jayasom Residences Overview Slider */
[lang="ar"] .jres-overview__card {
  text-align: right;
}
[lang="ar"] .jres-overview__card-footer {
  flex-direction: row-reverse;
}

/* Programme Inclusions Table */
[lang="ar"] .programme-inclusions-table__table th:first-child,
[lang="ar"] .programme-inclusions-table__table td:first-child {
  text-align: right;
}

/* FAQ Glass Accordion */
[lang="ar"] .faq-glass-accordion__question {
  text-align: right;
}

/* Jayasom Left Heading Two Column Grid */
[lang="ar"] .jay-lh-two-col__header,
[lang="ar"] .jay-lh-two-col__col {
  text-align: right;
}

/* Pillars Zigzag Alternating */
[lang="ar"] .pillar-zigzag__text {
  text-align: right;
}
[lang="ar"] .pillar-zigzag__sub-grid {
  flex-direction: row-reverse;
}
[lang="ar"] .pillar-zigzag__sub-cell {
  border-right: none;
  border-left: 1px solid var(--border, rgba(0, 0, 0, 0.12));
}
[lang="ar"] .pillar-zigzag__sub-cell:last-child {
  border-left: none;
}

/* Jayasom Amenities Tabs Grid */
[lang="ar"] .jay-amen__tablist {
  flex-direction: row-reverse;
}
[lang="ar"] .jay-amen__card-body {
  text-align: right;
}

/* Header */
[lang="ar"] .nav-lang {
  padding-right: 0;
  padding-left: 12px;
}
[lang="ar"] .nav-lang-switcher::after {
  border-right: 0;
  border-left: 1.6px solid currentColor;
  transform: rotate(45deg);
}
[lang="ar"] .mob-menu::before {
  left: auto;
  right: 0;
}
[lang="ar"] .mob-close {
  right: auto;
  left: 30px;
}
@media (max-width: 767px) {
  [lang="ar"] .mob-close {
    right: auto;
    left: 20px;
  }
}
[lang="ar"] .mob-menu a {
  text-align: right;
}
[lang="ar"] .mob-menu .hs-menu-wrapper > ul > li > a::before {
  left: auto;
  right: -40px;
}
[lang="ar"] .mob-menu .hs-menu-wrapper > ul > li > a:hover {
  padding-left: 0;
  padding-right: 28px;
}
[lang="ar"] .mob-menu .hs-menu-wrapper > ul > li > a:hover::before {
  left: auto;
  right: 0;
}
[lang="ar"] .mob-menu .hs-menu-wrapper > ul > li > a::after {
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
  padding-right: 16px;
}
[lang="ar"] .child-trigger {
  right: auto;
  left: 0;
}
[lang="ar"] .mob-menu .hs-item-has-children > a {
  padding-right: 0;
  padding-left: 50px;
}
[lang="ar"] .mob-menu .hs-menu-wrapper > ul > li ul.hs-menu-children-wrapper {
  left: auto;
  right: 0;
  border-left: 0;
  border-right: 1px solid var(--border, rgba(0, 0, 0, 0.12));
  margin-left: 0;
  margin-right: 4px;
}
[lang="ar"] .mob-menu .hs-menu-children-wrapper a:hover {
  padding-left: 0;
  padding-right: 12px;
}
[lang="ar"] .mob-menu-footer-lang a {
  margin-left: 0;
  margin-right: 8px;
}
[lang="ar"] .mob-menu .hs-menu-wrapper > ul::before {
  transform-origin: right;
}

/* Amaala Slider */
[lang="ar"] .amaala-slider__content {
  text-align: right;
}

/* Programme Matrix Table */
[lang="ar"] .programme-matrix-table__table th:first-child,
[lang="ar"] .programme-matrix-table__table td:first-child {
  text-align: right;
}

/* Signature Retreats Grid */
[lang="ar"] .sig-retreats__intro {
  text-align: right;
}

/* Wellness Residences Split */
[lang="ar"] .res-split__main {
  text-align: right;
}

/* Welcome Dual Columns */
[lang="ar"] .welcome-dual-columns__col--left {
  padding-right: 0;
  padding-left: 1.5rem;
}
[lang="ar"] .welcome-dual-columns__paragraph {
  text-align: right;
}

/* Destinations */
[lang="ar"] .destinations__header {
  text-align: right;
}

/* Contact Smart Route Table */
[lang="ar"] .contact-smart-route__table th:first-child,
[lang="ar"] .contact-smart-route__table td:first-child {
  text-align: right;
}

/* Per Tier Inclusions Table */
[lang="ar"] .per-tier-inclusions__table th:first-child,
[lang="ar"] .per-tier-inclusions__table td:first-child {
  text-align: right;
}

/* Guided Tour Dark CTA */
[lang="ar"] .guided-tour-dark-cta {
  text-align: right;
}

/* Destination Boxes Image Grid */
[lang="ar"] .dest-img-grid__box-title,
[lang="ar"] .dest-img-grid__box-description {
  text-align: right;
}
[lang="ar"] .dest-img-grid__arrow {
  right: auto;
  left: 18px;
  transform: scaleX(-1);
}

/* Guest Experiences Results Cards */
[lang="ar"] .guest-results-cards__right {
  text-align: left;
}

/* Header Contact */
[lang="ar"] .header-contact-popup__backdrop {
  left: auto;
  right: 0;
}
[lang="ar"] .header-contact-popup__close {
  right: auto;
  left: 1rem;
}
[lang="ar"] .header-contact-popup__title {
  padding-right: 0;
  padding-left: 2.5rem;
}
@media (max-width: 767px) {
  [lang="ar"] .header-contact__actions {
    text-align: left;
  }
}

/* Rooms Villas Inner Detail */
[lang="ar"] .rv-inner-detail__at-glance-label {
  padding-left: 0;
  padding-right: 12px;
}
[lang="ar"] .rv-inner-detail__at-glance-label::before {
  left: auto;
  right: 0;
}
[lang="ar"] .rv-inner-detail__at-glance-value {
  text-align: left;
}
[lang="ar"] .rv-inner-detail__list {
  padding-left: 0;
  padding-right: 13px;
}

/* Pricing Card */
[lang="ar"] .card__body li {
  text-align: right;
}
[lang="ar"] .card__body svg {
  margin-right: 0;
  margin-left: 0.7rem;
}
[lang="ar"] button.card__overlay-close--top,
[lang="ar"] button.card__overlay-close--bottom {
  right: auto;
  left: 16px;
}

/* Featured Slider */
[lang="ar"] .amaala-slider .owl-nav {
  direction: ltr;
}
[lang="ar"] .amaala-slider-progress {
  left: auto;
  right: 22px;
}
@media (max-width: 767px) {
  [lang="ar"] .amaala-slider-progress {
    left: auto;
    right: 20px;
  }
}
[lang="ar"] .amaala-slider-progress-bar {
  left: auto;
  right: 0;
}

/* Retreat Path Steps */
[lang="ar"] .retreat-path__step-tag::before {
  left: auto;
  right: 0;
}

/* Leadership Team Grid */
[lang="ar"] .team-leadership__panel {
  text-align: right;
}
[lang="ar"] .team-leadership__sub-grid {
  flex-direction: row-reverse;
}
[lang="ar"] .team-leadership__sub-cell {
  border-right: none;
  border-left: 1px solid var(--border, rgba(0, 0, 0, 0.12));
}
[lang="ar"] .team-leadership__sub-cell:last-child {
  border-left: none;
}

/* Brochure Download Form Dark */
[lang="ar"] .brochure-download-dark__form {
  text-align: right;
}

/* Bottom Footer */
[lang="ar"] .bottom-footer__col--left {
  padding-right: 0;
  padding-left: 2rem;
}
[lang="ar"] .bottom-footer__col--right {
  padding-left: 0;
  padding-right: 1rem;
  text-align: left;
}
[lang="ar"] .bottom-footer .hsfc-Step__Content .hsfc-TextInput,
[lang="ar"] .bottom-footer__form-wrap .hs-form-field .hs-input {
  padding-right: 0;
  padding-left: 120px;
}
[lang="ar"] .bottom-footer .hsfc-Step__Content .hsfc-NavigationRow,
[lang="ar"] .bottom-footer__form-wrap .actions {
  right: auto;
  left: 10px;
}
@media (max-width: 767px) {
  [lang="ar"] .bottom-footer__col--right {
    text-align: right;
  }
}

/* Family Tier Duality Table */
@media (max-width: 767px) {
  [lang="ar"] .family-tier-duality__col--center {
    text-align: right;
  }
}

/* Architecture Stats Gardens */
[lang="ar"] .arch-sg__copy {
  text-align: right;
}

/* Featured Treatments Grid */
[lang="ar"] .featured-treatments-grid__panel {
  text-align: right;
}

/* Homepage Banner */
[lang="ar"] .banner__fixed-btn {
  right: auto;
  left: 0;
  border-radius: 0 5px 5px 0;
}
[lang="ar"] .banner__scroll-up {
  right: auto;
  left: 2rem;
}
@media (max-width: 767px) {
  [lang="ar"] .banner__scroll-up {
    right: auto;
    left: 20px;
  }
}

/* Group Activities Live Calendar */
[lang="ar"] .ga-live-cal__table tbody td:first-child {
  text-align: right;
}

/* Activity Calendar */
[lang="ar"] .ac-module__check-input:checked + .ac-module__check-ui::after {
  left: auto;
  right: 5px;
}
[lang="ar"] .ac-module__search-btn {
  border-left: none;
  border-right: 0;
}
[lang="ar"] .ac-module__activities {
  padding-right: 0;
  padding-left: 12px;
}
@media (max-width: 767px) {
  [lang="ar"] .ac-module__toolbar {
    flex-direction: row-reverse;
  }
}

/* Two Column Introduction */
[lang="ar"] .welcome__col--left {
  padding-right: 0;
  padding-left: 1.5rem;
}
@media (max-width: 767px) {
  [lang="ar"] .welcome__section--content .welcome__col--left {
    padding-left: 0;
  }
}

/* Visual Experience Fullwidth Slider */
[lang="ar"] .visual-full-slider__arrow--prev {
  left: auto;
  right: 40px;
}
[lang="ar"] .visual-full-slider__arrow--next {
  right: auto;
  left: 40px;
}
@media (max-width: 767px) {
  [lang="ar"] .visual-full-slider__arrow--prev {
    left: auto;
    right: 20px;
  }
  [lang="ar"] .visual-full-slider__arrow--next {
    right: auto;
    left: 20px;
  }
}

/* Dining Experiences Slider */
[lang="ar"] .de-slider__arrow--prev {
  left: auto;
  right: -18px;
}
[lang="ar"] .de-slider__arrow--next {
  right: auto;
  left: -18px;
}
@media (max-width: 767px) {
  [lang="ar"] .de-slider__arrow--prev {
    left: auto;
    right: -6px;
  }
  [lang="ar"] .de-slider__arrow--next {
    right: auto;
    left: -6px;
  }
}

/* Jayasom Overlapping Circles */
[lang="ar"] .jay-overlap-circles__circle + .jay-overlap-circles__circle {
  margin-left: 0;
  margin-right: -34px;
}
@media (max-width: 1024px) {
  [lang="ar"] .jay-overlap-circles__circle + .jay-overlap-circles__circle {
    margin-left: 0;
    margin-right: -24px;
  }
}
@media (max-width: 767px) {
  [lang="ar"] .jay-overlap-circles__circle + .jay-overlap-circles__circle {
    margin-left: 0;
    margin-right: -14px;
  }
}

/* Destination Cards Showcase */
[lang="ar"] .destination-cards-showcase__status {
  left: auto;
  right: 0.5rem;
}

/* Blogs Carousel Option2 */
[lang="ar"] .blogs-carousel__header {
  padding-left: 0;
  padding-right: 54px;
}
@media (max-width: 1024px) {
  [lang="ar"] .blogs-carousel__slider-wrapper {
    padding-left: 0;
    padding-right: 54px;
  }
}
@media (max-width: 767px) {
  [lang="ar"] .blogs-carousel__slider-wrapper {
    padding-left: 0;
    padding-right: 24px;
  }
}

/* Day By Day Timeline */
[lang="ar"] .day-by-day-timeline__list {
  margin-left: 0;
  margin-right: 4px;
}
[lang="ar"] .day-by-day-timeline__item:not(:last-child)::after {
  left: auto;
  right: 4px;
}

/* Rooms Villas Triple Filter HubDB */
[lang="ar"] .rv-triple-filter__badge {
  left: auto;
  right: 8px;
}

/* Text Scroll Image Slick */
[lang="ar"] .text-scroll-image-slick__content {
  padding-right: 0;
  padding-left: 12px;
}

/* Programme Inclusions List */
[lang="ar"] .programme-inclusions-list__items li::before {
  left: auto;
  right: 0;
}

/* Jayasom Quote Tabs Slider */
[lang="ar"] .jyrqts-slider__arrow--prev {
  left: auto;
  right: 40px;
}
[lang="ar"] .jyrqts-slider__arrow--next {
  right: auto;
  left: 40px;
}
@media (max-width: 767px) {
  [lang="ar"] .jyrqts-slider__arrow--prev {
    left: auto;
    right: 20px;
  }
  [lang="ar"] .jyrqts-slider__arrow--next {
    right: auto;
    left: 20px;
  }
}

/* Other Suggested Treatments Slider */
[lang="ar"] .other-suggested-treatments__arrow--prev {
  left: auto;
  right: 0;
}
[lang="ar"] .other-suggested-treatments__arrow--next {
  right: auto;
  left: 0;
}

/* Rooms Villas Tab Cards */
[lang="ar"] .rv-tab-cards__image-label {
  left: auto;
  right: 12px;
}
[lang="ar"] .rv-tab-cards__tabs .rv-tab-cards__tab-btn:first-child {
  border-radius: 0 100px 100px 0;
}
[lang="ar"] .rv-tab-cards__tabs .rv-tab-cards__tab-btn:last-child {
  border-radius: 100px 0 0 100px;
}
@media (max-width: 767px) {
  [lang="ar"] .rv-tab-cards__tabs .rv-tab-cards__tab-btn.is-active:first-child {
    border-radius: 0 100px 100px 0;
  }
}

/* Card Grid Three Column + Card Slider */
[lang="ar"] .s5-card-desc,
[lang="ar"] .s5-card-duration {
  padding-right: 0;
  padding-left: 30px;
}
[lang="ar"] .s5-card-link {
  right: auto;
  left: 35px;
  transform: scaleX(-1);
}

/* Insights Hero Banner */
[lang="ar"] .insights-hero__search {
  right: auto;
  left: 54px;
}
@media (max-width: 767px) {
  [lang="ar"] .insights-hero__search {
    right: auto;
    left: 40px;
  }
}
[lang="ar"] .insights-hero__search-btn {
  border-left: none;
  border-right: 1px solid var(--border, rgba(0, 0, 0, 0.12));
}
[lang="ar"] .insights-hero__suggestions {
  left: auto;
  right: 0;
}

/* Testimonial Slider */
[lang="ar"] .s7-head h6:before {
  left: auto;
  right: 0;
}

/* HubDB Insights Filter Grid */
[lang="ar"] .hubdb-insights-grid__share-menu {
  right: auto;
  left: 0;
}

/* Find Your Retreat HubDB */
[lang="ar"] .fyr-card__badge {
  left: auto;
  right: 8px;
}

/* Footer */
[lang="ar"] .foot-brand {
  padding-right: 0;
  padding-left: 48px;
}
[lang="ar"] .foot-nl-row input.hs-button.primary.large {
  right: auto;
  left: 0;
}
[lang="ar"] .foot-nl-btn {
  border-left: none;
  border-right: 1px solid var(--border, rgba(0, 0, 0, 0.12));
}
[lang="ar"] .foot-nl-row .hs-input {
  padding-right: 0;
  padding-left: 130px;
}

/* Quote Cards Grid */
[lang="ar"] .quote-cards-grid__card {
  flex-direction: row-reverse;
}

/* Who We Are Split */
[lang="ar"] .who-we-are__defs {
  flex-direction: row-reverse;
}

/* Jayasom Tabber */
[lang="ar"] .tab__arrow {
  transform: translateX(6px) scaleX(-1);
}
[lang="ar"] .tab.--active .tab__arrow {
  transform: translateX(0) scaleX(-1);
}

/* Editorial Brackets Story */
[lang="ar"] .heritage-brackets__frame {
  flex-direction: row-reverse;
}
[lang="ar"] .heritage-brackets__gallery-cell {
  border-right: none;
  border-left: 1px solid var(--border, rgba(0, 0, 0, 0.12));
}
[lang="ar"] .heritage-brackets__gallery-cell:last-child {
  border-left: none;
}

/* Featured Treatments */
[lang="ar"] .ft-module__search-btn {
  border-left: none;
  border-right: 0;
}

/* Residency Hero Breadcrumb Mosaic */
[lang="ar"] .residency-hero-breadcrumb-mosaic__tile {
  border-left: none;
  border-right: 1px solid var(--border, rgba(0, 0, 0, 0.12));
}
[lang="ar"] .residency-hero-breadcrumb-mosaic__tile--main {
  border-left: none;
  border-right: 0;
}

/* Jayasom Slider */
[lang="ar"] .slide-card__info {
  padding-left: 0;
  padding-right: 30px;
}
[lang="ar"] .slider__track .slick-slide {
  margin-right: 0;
  margin-left: 36px;
}
@media (max-width: 767px) {
  [lang="ar"] .slide-card__info {
    padding-right: 0;
  }
}

/* Contact FAQ */
[lang="ar"] .contact-faq__q-text {
  padding-right: 0;
  padding-left: 16px;
}

/* Contact Form */
[lang="ar"] .contact-form__select {
  padding-right: 0;
  padding-left: 48px;
  background-position: left 1rem center;
}

/* Family Retreat Includes Two Lists */
[lang="ar"] .family-retreat-includes__list {
  padding-left: 0;
  padding-right: 15px;
}

/* Insights Blog Tabber */
[lang="ar"] .article-card__date {
  margin-left: 0;
  margin-right: 12px;
}

/* Sustainability Community */
[lang="ar"] .sustainability-community__col--right {
  padding-left: 0;
  padding-right: 3rem;
}

/* Media */
[lang="ar"] .media__col--heading {
  padding-right: 0;
  padding-left: 1.5rem;
}
@media (max-width: 767px) {
  [lang="ar"] .media__col--heading {
    padding-left: 0;
  }
}

/* Activities Category HubDB Filter */
[lang="ar"] .activities-category-filter__filter-icon {
  margin-left: 0;
  margin-right: 4px;
}
[lang="ar"] .activities-category-filter__group-list ul {
  padding-left: 0;
  padding-right: 1rem;
}

/* Careers */
[lang="ar"] .careers__col--image {
  padding-right: 0;
  padding-left: 1.5rem;
}
@media (max-width: 767px) {
  [lang="ar"] .careers__col--image,
  [lang="ar"] .careers__col--content {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Buttons (popup close icon) */
[lang="ar"] .popup-form .form-inner-wrap .close-icon {
  float: left;
  right: auto;
  left: 15px;
}
[lang="ar"] .button-wrap .button-group {
  margin-right: 0;
  margin-left: 10px;
}
.programme-inclusions-list__items li:before {
  right: 0;
  left: auto;
}
[lang="ar"] .programme-inclusions-list__items li {
  padding: 0 1rem 1rem 0;
}
[lang="ar"] .outcomes-split-list-box__list li:before {
  right: 0;
  left: auto;
}
[lang="ar"] .outcomes-split-list-box__list li {
  padding-right: .8rem;
  padding-left: 0;
}
[lang="ar"] .coming-soon-hero-meantime__card {
  text-align: right;
}
[lang="ar"].coming-soon-hero-meantime__card-arrow {
  transform: rotate(180deg);
}

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