@charset "UTF-8";
/* =====================================
   Modern CSS Reset — SASS-Friendly
   Inspired by Andy Bell, Josh Comeau, Tailwind, and Normalize
===================================== */
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Lexend+Giga:wght@100..900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin/padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: sans-serif;
  background-color: #fff;
  color: #111;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Reset links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove all animations and transitions for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Make images and videos easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
}

/* Remove built-in form element styles */
button,
input,
select,
textarea {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/* Respect user-set `hidden` attribute */
[hidden] {
  display: none !important;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 2560px) {
  .container {
    max-width: 1600px;
  }
}
.container--fluid {
  max-width: none;
}
.container--sm {
  max-width: 540px;
}
.container--lg {
  max-width: 960px;
}
.container--xl {
  max-width: 1140px;
}
.container--xxl {
  max-width: 1320px;
}
.container--4k {
  max-width: 1600px;
}

.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 50px;
}
@media only screen and (max-width: 991px) {
  .col2 {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 50px;
}
@media only screen and (max-width: 991px) {
  .col3 {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.col2-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 66.6% 50px 33.3%;
  grid-template-columns: 66.6% 33.3%;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 50px;
}
@media only screen and (max-width: 991px) {
  .col2-3 {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

@font-face {
  font-family: "Sackers";
  src: url("../fonts/sackersgothicstd-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Sackers";
  src: url("../fonts/sackersgothicstd-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Sackers";
  src: url("../fonts/sackersgothicstd-heavy.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
::-moz-selection {
  background-color: #c78155;
  color: #fff;
}
::selection {
  background-color: #c78155;
  color: #fff;
}

.text-primary {
  color: #363123;
}

.text-secondary {
  color: #c78155;
}

html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
  height: auto !important;
  margin: 0 auto;
  background: #fff;
  font-family: "Sackers", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #363123;
  margin: 0;
}
body .site__wrapper {
  position: relative;
}
@media only screen and (max-width: 991px) {
  body .site__wrapper main {
    padding-top: 60px;
  }
}

h1,
h2 {
  font-family: "Sackers", sans-serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 74px;
  color: #363123;
}
h1 + p,
h2 + p {
  margin-top: 35px;
}

.editor h2 {
  font-family: "Sackers", sans-serif;
  font-size: 45px;
  line-height: 64px;
}
.editor h3 {
  font-family: "Sackers", sans-serif;
  font-size: 32px;
  line-height: 46px;
}
.editor h2 + h3 {
  margin-top: 15px;
}
.editor h3 + p {
  margin-top: 20px;
}
.editor ul + h2,
.editor ul + h3 {
  margin-top: 60px;
}

h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  color: #363123;
  letter-spacing: 5px;
}

h4 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 40px;
  color: #363123;
}
h4 a {
  position: relative;
  color: #363123;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 2px;
  -webkit-box-shadow: inset 0 -2px 0 0 #c78155;
          box-shadow: inset 0 -2px 0 0 #c78155;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
h4 a:hover {
  -webkit-box-shadow: inset 0 -2px 0 0 #c78155;
          box-shadow: inset 0 -2px 0 0 #c78155;
  color: #c78155;
}

p {
  font-family: "Albert Sans", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: #363123;
}
p + p {
  margin-top: 20px;
}
p + h4 {
  margin-top: 30px;
}
p strong,
p b {
  font-weight: 700;
}
p em {
  font-style: italic;
}
p a {
  color: #c78155;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 0.1px;
}
p a:hover {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
}

blockquote,
blockquote p {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 40px;
  color: #363123;
  margin-bottom: 0;
}
blockquote + p,
blockquote p + p {
  margin-top: 20px;
}
@media only screen and (max-width: 991px) {
  blockquote,
  blockquote p {
    font-size: 23px;
    line-height: 34px;
  }
}

p + blockquote {
  margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
  h1,
  h2 {
    font-size: 50px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  h1,
  h2 {
    font-size: 32px;
    line-height: 46px;
  }
  .editor h3 {
    font-size: 26px;
    line-height: 38px;
  }
  .editor h2 + h3 {
    margin-top: 10px;
  }
  .editor h3 + p {
    margin-top: 15px;
  }
}
header {
  padding: 30px 0;
}
@media only screen and (max-width: 991px) {
  header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    background: white;
    width: 100%;
    z-index: 5;
  }
  header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header nav {
    width: 100%;
  }
}
header nav {
  position: relative;
}
header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr) 1fr repeat(3, 1fr);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
header nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Sackers", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  text-transform: uppercase;
  color: #363123;
}
header nav ul li a {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
header nav ul li a:hover {
  color: #c78155;
}
@media only screen and (max-width: 1199px) {
  header nav ul li {
    font-size: 14px;
  }
}
header nav ul li:nth-child(1),
header nav ul li:nth-child(2),
header nav ul li:nth-child(3) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
header nav ul li:nth-child(5),
header nav ul li:nth-child(6),
header nav ul li:nth-child(7) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header nav ul .header__logo {
  height: 60px;
}
@media only screen and (max-width: 991px) {
  header nav ul .header__logo {
    height: 45px;
  }
}
@media only screen and (max-width: 991px) {
  header nav ul li:nth-child(1),
  header nav ul li:nth-child(2),
  header nav ul li:nth-child(3),
  header nav ul li:nth-child(5),
  header nav ul li:nth-child(6),
  header nav ul li:nth-child(7) {
    display: none; /* hide these */
  }
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* center the logo */
  }
  header nav ul li:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; /* make sure logo doesn't stretch */
  }
}

#header__hamburger--wrapper {
  display: none;
  position: relative;
  height: 40px;
  width: 40px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
@media only screen and (max-width: 991px) {
  #header__hamburger--wrapper {
    display: block;
  }
}
#header__hamburger--wrapper #hamburger {
  width: 30px;
  height: 8px;
  position: relative;
  display: block;
  margin: -3px auto 0;
  top: 50%;
}
#header__hamburger--wrapper .bar {
  width: 100%;
  height: 2px;
  display: block;
  position: relative;
  background: #c78155;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
#header__hamburger--wrapper .bar--top {
  -webkit-transform: translateY(-10px) rotate(0deg);
          transform: translateY(-10px) rotate(0deg);
}
#header__hamburger--wrapper .bar--middle {
  -webkit-transform: translateY(0px) rotate(0deg);
          transform: translateY(0px) rotate(0deg);
}
#header__hamburger--wrapper .bar--bottom {
  -webkit-transform: translateY(10px) rotate(0deg);
          transform: translateY(10px) rotate(0deg);
}

#header__hamburger--wrapper.active {
  -webkit-transition: all 0.3s ease-in, background 0.5s ease-in;
  transition: all 0.3s ease-in, background 0.5s ease-in;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#header__hamburger--wrapper.active .bar--top {
  -webkit-transform: translateY(1px) rotate(45deg);
          transform: translateY(1px) rotate(45deg);
}
#header__hamburger--wrapper.active .bar--middle {
  width: 0;
}
#header__hamburger--wrapper.active .bar--bottom {
  -webkit-transform: translateY(-3px) rotate(-45deg);
          transform: translateY(-3px) rotate(-45deg);
}

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0;
}
.section .section__heading--wrapper h1,
.section .section__heading--wrapper h2 {
  margin-bottom: 35px;
}
.section .section__heading--wrapper h3 {
  margin-bottom: 10px;
}
.section img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .section {
    padding: 40px 0;
  }
}

.section__divider {
  /* right line a touch later for a classy stagger */
  /* circle enters after the lines */
}
.section__divider:last-child {
  padding-bottom: 0;
}
.section__divider .section__divider--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px auto 16px 1fr;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.section__divider .line--wrapper {
  overflow: hidden;
}
.section__divider .line {
  height: 1px;
  background: #c78155;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.section__divider .line--wrapper:last-child .line {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.section__divider .circle {
  opacity: 0;
  -webkit-transform: scale(0.92);
          transform: scale(0.92);
  -webkit-transition: opacity 0.5s ease 0.3s, -webkit-transform 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s, -webkit-transform 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s, -webkit-transform 0.5s ease 0.3s;
  will-change: opacity, transform;
}
.section__divider.is-visible .line {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.section__divider.is-visible .circle {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* a11y */
@media (prefers-reduced-motion: reduce) {
  .section__divider .line {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .section__divider .circle {
    -webkit-transition: none;
    transition: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.footer {
  padding: 75px 0;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .footer {
    padding: 60px 0;
  }
}
.footer .footer__bg--wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  z-index: -1;
}
.footer .container {
  position: relative;
}
.footer .container .footer__links--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 20% 20%;
  grid-template-columns: 60% 20% 20%;
}
@media only screen and (max-width: 1199px) {
  .footer .container .footer__links--wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.footer .container .footer__links--wrapper nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
.footer .container .footer__links--wrapper nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 40px;
  font-weight: 300;
}
.footer .container .footer__links--wrapper nav a {
  color: #363123;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .container .footer__links--wrapper nav a:hover {
  color: #c78155;
}
.footer .container .footer__links--wrapper .footer__contacts--wrapper {
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 40px;
  font-weight: 300;
}
.footer .container .footer__links--wrapper .footer__contacts--wrapper .footer__heading {
  font-family: "Sackers", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #363123;
}
@media only screen and (max-width: 1199px) {
  .footer .container .footer__links--wrapper .footer__contacts--wrapper {
    margin-top: 40px;
  }
}
.footer .container .footer__links--wrapper .footer__socials--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 1199px) {
  .footer .container .footer__links--wrapper .footer__socials--wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 20px;
  }
}
.footer .container .footer__links--wrapper .footer__socials--wrapper .btn + .btn {
  margin-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .footer .container .footer__links--wrapper .footer__socials--wrapper .btn + .btn {
    margin-top: 0px;
    margin-left: 20px;
  }
}
.footer .container .footer__copyright--wrapper {
  margin-top: 50px;
  border-top: 1px solid #c78155;
  text-align: center;
}
.footer .container .footer__copyright--wrapper span {
  display: block;
  padding-top: 25px;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 40px;
  font-weight: 300;
}

/* ========== Apple-style Animations (slower) ========== */
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeScale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.975) translateY(16px);
            transform: scale(0.975) translateY(16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes fadeScale {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.975) translateY(16px);
            transform: scale(0.975) translateY(16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* ========== Mobile Menu (slower reveal + stagger) ========== */
.mobileMenu {
  background: #fff;
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 20px 15px;
  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  clip-path: inset(0 0 100% 0);
  /* slower, premium feel */
  -webkit-transition: opacity 0.5s ease, clip-path 1.15s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, clip-path 1.15s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, clip-path 1.15s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: opacity 0.5s ease, transform 0.5s ease, clip-path 1.15s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.5s ease;
  backdrop-filter: saturate(180%) blur(8px); /* optional */
  /* ===== Header (logo + close) ===== */
  /* ===== Nav with generous stagger ===== */
  /* ===== Spinning image enters last ===== */
}
.mobileMenu .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobileMenu.is-open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: none;
          transform: none;
  clip-path: inset(0 0 0 0);
}
.mobileMenu .mobileMenu__header--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #c78155;
  padding-bottom: 15px;
  /* slower intro */
  opacity: 0;
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  -webkit-animation: fadeDown 0.95s ease both;
          animation: fadeDown 0.95s ease both;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.mobileMenu .mobileMenu__header--wrapper .mobileMenu__logo {
  height: 45px;
  width: auto;
}
.mobileMenu .mobileMenu__header--wrapper .mobileMenu__btn--close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mobileMenu .mobileMenu__header--wrapper .mobileMenu__btn--close svg {
  fill: #c78155;
  height: 30px;
  width: 30px;
}
.mobileMenu .mobileMenu__nav--wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobileMenu nav {
  padding-top: 18px;
}
.mobileMenu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  /* slower, even stagger (feel free to add more) */
}
.mobileMenu nav ul li {
  font-family: "Sackers", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #363123;
  padding: 18px 0;
  /* staged fade-in */
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeUp 0.95s ease both;
          animation: fadeUp 0.95s ease both;
}
.mobileMenu nav ul li a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.mobileMenu nav ul li a:hover {
  color: #c78155;
}
.mobileMenu nav ul li:nth-child(1) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.mobileMenu nav ul li:nth-child(2) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.mobileMenu nav ul li:nth-child(3) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.mobileMenu nav ul li:nth-child(4) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.mobileMenu nav ul li:nth-child(5) {
  -webkit-animation-delay: 1.05s;
          animation-delay: 1.05s;
}
.mobileMenu .mobileMenu__image--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  opacity: 0;
  -webkit-transform: scale(0.975) translateY(16px);
          transform: scale(0.975) translateY(16px);
  -webkit-animation: fadeScale 1.05s ease both;
          animation: fadeScale 1.05s ease both;
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s; /* after last nav item */
}
.mobileMenu .mobileMenu__image {
  width: 75%;
  -webkit-animation: spin 20s linear infinite;
          animation: spin 20s linear infinite;
  will-change: transform;
}

/* ========== Accessibility: Reduce Motion ========== */
@media (prefers-reduced-motion: reduce) {
  .mobileMenu {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
    clip-path: none;
  }
  .mobileMenu .mobileMenu__header--wrapper,
  .mobileMenu nav ul li,
  .mobileMenu .mobileMenu__image--wrapper {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .mobileMenu .mobileMenu__image {
    -webkit-animation: none;
            animation: none;
  }
}
/* Optional: prevent page scroll when open */
.body--menu-open {
  overflow: hidden;
}

.banner {
  position: relative;
  padding: 60px 0;
}
.banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner .banner__heading--wrapper {
  padding-bottom: 40px;
  width: 75%;
}
.banner .banner__heading--wrapper h3 {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .banner .banner__heading--wrapper {
    width: 100%;
  }
}

.banner__homepage .banner__studios--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}
.banner__homepage .banner__studios--wrapper .card__image {
  height: 550px;
}
@media only screen and (max-width: 991px) {
  .banner__homepage .banner__studios--wrapper {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.banner__studios .banner__studios--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.banner__studios .banner__studios--wrapper .card__image {
  height: 550px;
}
@media only screen and (max-width: 991px) {
  .banner__studios .banner__studios--wrapper {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  .banner__studios .banner__studios--wrapper .card__image {
    height: auto;
  }
}

.banner__page .banner__page--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.btn {
  cursor: pointer;
  font-family: "Sackers", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  text-decoration: none;
  color: #363123;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f0f0e7;
  padding: 5px 15px;
  border-radius: 15px;
}
.btn__social {
  position: relative;
  padding-right: 35px;
  width: auto; /* ensures it only fits content */
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content; /* extra safeguard */
}
.btn__social::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background-size: contain;
}
.btn__social--facebook::after {
  background: url("../images/facebook.svg") no-repeat center;
}
.btn__social--youtube::after {
  margin-left: 20px;
  background: url("../images/youtube.svg") no-repeat center;
}
.btn__outline {
  font-family: "Sackers", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #c78155;
  padding: 20px 30px 15px 30px;
  background: transparent;
  border-radius: unset;
  border: 1px solid #c78155;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn__outline:hover {
  background: #c78155;
  color: #fff;
}
.btn__booking {
  font-family: "Sackers", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: #c78155;
  padding: 20px 30px 15px 30px;
  background: transparent;
  border-radius: unset;
  border: 1px solid #c78155;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn__booking:hover {
  background: #c78155;
  color: #fff;
}
.btn__contact {
  margin-top: 30px;
  font-family: "Sackers", sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  color: #c78155;
  padding: 15px 20px 10px 20px;
  background: transparent;
  border-radius: unset;
  border: 1px solid #c78155;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn__contact:hover {
  background: #c78155;
  color: #fff;
}
.btn__table {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
  color: #363123;
  background: #f0f0e7;
  padding: 10px 15px;
  border-radius: unset;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn__table:nth-child(2) {
  background: #363123;
  color: #fff;
}
.btn__table:hover {
  background: #c78155;
  color: #fff;
}
.btn__table.is-active {
  background: #c78155;
  color: #fff;
}

.card {
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.card__nocursor {
  cursor: none;
}

.card__studio .card__heading--wrapper {
  margin-top: 15px;
}
.card__studio .card__heading {
  font-family: "Sackers", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: normal;
}
.card__studio .card__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
}
@media only screen and (max-width: 991px) {
  .card__studio .card__image {
    height: auto;
  }
}

.card__products .card__heading--wrapper {
  margin-top: 15px;
}
.card__products .card__heading {
  font-family: "Sackers", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: normal;
}
.card__products .card__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
}
@media only screen and (max-width: 991px) {
  .card__products .card__image {
    height: auto;
  }
}

.card__brand .card__heading--wrapper {
  margin-top: 15px;
}
.card__brand .card__heading {
  font-family: "Sackers", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}
.card__brand .card__image {
  height: 400px;
}
@media only screen and (max-width: 991px) {
  .card__brand .card__image {
    height: auto;
  }
}

.card__contact .card__heading--wrapper {
  margin-top: 15px;
}
.card__contact .card__heading {
  font-family: "Sackers", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: #c78155;
}
.card__contact .card__image {
  fill: #c78155;
  height: 100px;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card__contact .card__content--wrapper {
  margin-top: 20px;
  height: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .card__contact .card__content--wrapper {
    height: auto;
  }
}

.card__brandLogos {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0px;
}
.card__brandLogos img {
  display: block;
  height: var(--height);
  width: auto;
}

.card__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}
.card__links h3 {
  font-family: "Sackers", sans-serif;
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card__links span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card__links:hover h3 {
  color: #c78155;
}

.featuredProducts--carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 24px;
  padding: 20px 0;
  scrollbar-width: none;
}

.featuredProducts--carousel::-webkit-scrollbar {
  display: none;
}

.featuredProducts--carousel .card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 520px;
          flex: 0 0 520px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.featuredProducts--carousel .card.is-visible {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 768px) {
  .featuredProducts--carousel .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80vw;
            flex: 0 0 80vw;
  }
}
/* dots */
.carousel-dots {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c78155;
  opacity: 0.4;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.carousel-dots button.active {
  opacity: 1;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.featuredProducts--rail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 24px;
  padding: 20px 0;
  scrollbar-width: none;
}
.featuredProducts--rail::-webkit-scrollbar {
  display: none;
}
.featuredProducts--rail .card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 520px;
          flex: 0 0 520px;
  scroll-snap-align: start;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.featuredProducts--rail .card img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .featuredProducts--rail .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80vw;
            flex: 0 0 80vw;
  }
}

/* carousel navigation */
.rail-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.rail-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #c78155;
  color: #c78155;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.rail-btn svg {
  width: 20px;
  height: 20px;
}
.rail-btn svg path {
  fill: currentColor;
}
.rail-btn:hover {
  background: #c78155;
  color: #fff;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.breadcrumbs {
  margin-bottom: 10px;
}
.breadcrumbs ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Sackers", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  position: relative;
}
.breadcrumbs ul li .circle {
  height: 20px;
}
.breadcrumbs ul li:not(:last-of-type) {
  margin-right: 5px;
}
.breadcrumbs ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.breadcrumbs ul li a img {
  margin-right: 5px;
}
.breadcrumbs ul li a:hover {
  color: #c78155;
}
.breadcrumbs ul li.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.gform_wrapper {
  padding: 30px 15px 0 0;
}
.gform_wrapper .gfield_label {
  display: none !important;
}
.gform_wrapper .gfield_required {
  display: none !important;
}
.gform_wrapper .name_first #input_2_1_3 {
  margin-bottom: 15px;
}
.gform_wrapper .ginput_container input[type=text],
.gform_wrapper .ginput_container input[type=email],
.gform_wrapper .ginput_container input[type=tel],
.gform_wrapper .ginput_container textarea {
  border: 0;
  background: #f0f0e7;
  padding: 15px 20px;
  width: 100%;
  font-family: "Albert Sans", serif;
  font-size: 18px;
  color: #363123;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gform_wrapper .ginput_container input[type=text]:focus,
.gform_wrapper .ginput_container input[type=email]:focus,
.gform_wrapper .ginput_container input[type=tel]:focus,
.gform_wrapper .ginput_container textarea:focus {
  color: #363123;
  outline: none;
  border: 1px solid #c78155;
}
.gform_wrapper .ginput_container input[type=text]::-webkit-input-placeholder, .gform_wrapper .ginput_container input[type=email]::-webkit-input-placeholder, .gform_wrapper .ginput_container input[type=tel]::-webkit-input-placeholder, .gform_wrapper .ginput_container textarea::-webkit-input-placeholder {
  color: #363123;
}
.gform_wrapper .ginput_container input[type=text]::-moz-placeholder, .gform_wrapper .ginput_container input[type=email]::-moz-placeholder, .gform_wrapper .ginput_container input[type=tel]::-moz-placeholder, .gform_wrapper .ginput_container textarea::-moz-placeholder {
  color: #363123;
}
.gform_wrapper .ginput_container input[type=text]:-ms-input-placeholder, .gform_wrapper .ginput_container input[type=email]:-ms-input-placeholder, .gform_wrapper .ginput_container input[type=tel]:-ms-input-placeholder, .gform_wrapper .ginput_container textarea:-ms-input-placeholder {
  color: #363123;
}
.gform_wrapper .ginput_container input[type=text]::-ms-input-placeholder, .gform_wrapper .ginput_container input[type=email]::-ms-input-placeholder, .gform_wrapper .ginput_container input[type=tel]::-ms-input-placeholder, .gform_wrapper .ginput_container textarea::-ms-input-placeholder {
  color: #363123;
}
.gform_wrapper .ginput_container input[type=text]::placeholder,
.gform_wrapper .ginput_container input[type=email]::placeholder,
.gform_wrapper .ginput_container input[type=tel]::placeholder,
.gform_wrapper .ginput_container textarea::placeholder {
  color: #363123;
}
.gform_wrapper .ginput_container select {
  width: 100%;
  border: 0;
  background: #f0f0e7;
  font-family: "Albert Sans", serif;
  font-size: 18px;
  color: #363123 !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding: 12px 44px 12px 18px;
  line-height: 1.4;
  height: auto;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000000' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
}
.gform_wrapper .ginput_container select:focus {
  border: 1px solid #c78155;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #363123 !important;
}
.gform_wrapper .ginput_container select option {
  color: #363123 !important;
  background: #fff !important;
}
.gform_wrapper .ginput_container select option[value=""],
.gform_wrapper .ginput_container select option:disabled,
.gform_wrapper .ginput_container select option[disabled] {
  color: rgba(54, 49, 35, 0.6) !important;
}
.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  font-family: "Albert Sans", serif;
  font-size: 18px;
  color: #363123;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.gform_wrapper .gfield_checkbox label:hover,
.gform_wrapper .gfield_radio label:hover {
  color: #c78155;
}
.gform_wrapper .gfield_checkbox .gchoice,
.gform_wrapper .gfield_radio .gchoice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gform_wrapper .gfield_checkbox input[type=checkbox],
.gform_wrapper .gfield_checkbox input[type=radio],
.gform_wrapper .gfield_radio input[type=checkbox],
.gform_wrapper .gfield_radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(54, 49, 35, 0.4);
  background: #f0f0e7;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-right: 10px;
}
.gform_wrapper .gfield_checkbox input[type=checkbox]:checked,
.gform_wrapper .gfield_checkbox input[type=radio]:checked,
.gform_wrapper .gfield_radio input[type=checkbox]:checked,
.gform_wrapper .gfield_radio input[type=radio]:checked {
  border-color: #c78155;
  background-color: #c78155;
}
.gform_wrapper .gfield_checkbox input[type=checkbox]:checked::after,
.gform_wrapper .gfield_checkbox input[type=radio]:checked::after,
.gform_wrapper .gfield_radio input[type=checkbox]:checked::after,
.gform_wrapper .gfield_radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 11px;
  width: 6px;
  height: 15px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.gform_wrapper .gfield_checkbox input[type=checkbox][type=radio],
.gform_wrapper .gfield_checkbox input[type=radio][type=radio],
.gform_wrapper .gfield_radio input[type=checkbox][type=radio],
.gform_wrapper .gfield_radio input[type=radio][type=radio] {
  border-radius: 50%;
}
.gform_wrapper .gfield_checkbox input[type=checkbox][type=radio]:checked::after,
.gform_wrapper .gfield_checkbox input[type=radio][type=radio]:checked::after,
.gform_wrapper .gfield_radio input[type=checkbox][type=radio]:checked::after,
.gform_wrapper .gfield_radio input[type=radio][type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}
.gform_wrapper .gfield_checkbox input[type=checkbox]:focus,
.gform_wrapper .gfield_checkbox input[type=radio]:focus,
.gform_wrapper .gfield_radio input[type=checkbox]:focus,
.gform_wrapper .gfield_radio input[type=radio]:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(199, 129, 85, 0.4);
          box-shadow: 0 0 0 2px rgba(199, 129, 85, 0.4);
}
@media only screen and (max-width: 767px) {
  .gform_wrapper .gform-footer {
    text-align: center;
  }
}
.gform_wrapper .gform_confirmation_wrapper_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gform_wrapper .gform_confirmation_wrapper_2 .gform_confirmation_message_2 {
  border: 1px solid #c78155;
  padding: 15px;
  font-family: "Albert Sans", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: #363123;
}
.gform_wrapper .gform_validation_errors {
  border: 1px solid red;
  padding: 15px;
  margin-bottom: 50px;
}
.gform_wrapper .gform_submission_error {
  font-family: "Albert Sans", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  color: #363123;
}
.gform_wrapper .gfield_validation_message {
  font-family: "Albert Sans", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: red;
}

.section__featuredProducts {
  padding-top: 25px;
}

.section__about--homepage .section__content--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 40px 25% 40px auto;
  grid-template-columns: 30% 25% auto;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}
.section__about--homepage .section__content--wrapper .center img {
  height: 450px;
}
@media only screen and (max-width: 1199px) {
  .section__about--homepage .section__content--wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .section__about--homepage .section__content--wrapper .right {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/span 2;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .section__about--homepage .section__content--wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .section__about--homepage .section__content--wrapper .right {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-column: unset;
  }
}
.section__about--homepage .section__image--wrapper {
  margin-top: 80px;
}

.section__symbol {
  text-align: center;
  /* ✅ Use a VIEW timeline (element-in-viewport progress) */
  view-timeline-name: --aeSpin;
  view-timeline-axis: block;
}
.section__symbol .section__image--wrapper {
  position: relative;
  display: inline-block;
  max-width: 750px;
  width: 100%;
}
.section__symbol .section__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  will-change: transform;
}
.section__symbol .section__heading--wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@keyframes spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.section__symbol .section__image {
  -webkit-animation: spin linear both;
          animation: spin linear both;
  animation-timeline: --aeSpin;
  /* fallback then modern range */
  animation-range: cover; /* older syntax */
  animation-range: entry 0% exit 100%; /* modern, precise */
}
@media (prefers-reduced-motion: reduce) {
  .section__symbol .section__image {
    -webkit-animation: none !important;
            animation: none !important;
  }
}

.section__brands {
  /* Accessibility: reduce motion */
}
.section__brands .section__heading--wrapper {
  text-align: center;
}
.section__brands .brands__carousel--wrapper {
  --gap: 0px;
  --height: 80px;
  --speed: 40s;
  position: relative;
  overflow: hidden;
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(5%, black), color-stop(95%, black), to(transparent));
  mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(5%, black), color-stop(95%, black), to(transparent));
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
}
.section__brands .brands__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gap);
  padding-block: 16px;
  will-change: transform;
}
.section__brands .brands__track.is-ready {
  -webkit-animation: brands-scroll var(--speed, 40s) linear infinite;
          animation: brands-scroll var(--speed, 40s) linear infinite;
}
.section__brands .brands__carousel--wrapper:hover .brands__track.is-ready {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@-webkit-keyframes brands-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes brands-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .section__brands .brands__track.is-ready {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: none;
            transform: none;
  }
}

.section__forum {
  position: relative;
  overflow: hidden;
  color: #fff;
  /* ----- Background + overlay ----- */
  /* ----- Foreground content ----- */
  /* ----- Heading ----- */
  /* ----- Forum links grid ----- */
}
.section__forum .section__bg--wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section__forum .section__bg--wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section__forum .section__bg--wrapper .section__overlay--wrapper {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(37, 25, 27, 0)), color-stop(46%, rgba(37, 25, 27, 0.3)), to(rgba(37, 25, 27, 0.7)));
  background: linear-gradient(90deg, rgba(37, 25, 27, 0) 0%, rgba(37, 25, 27, 0.3) 46%, rgba(37, 25, 27, 0.7) 100%);
}
.section__forum .container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 60px;
  min-height: 500px;
}
.section__forum .section__heading--wrapper {
  max-width: 600px;
}
.section__forum .section__heading--wrapper h2 {
  color: #fff;
}
.section__forum .forum__links--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px 60px;
  max-width: 1140px;
}
@media only screen and (max-width: 991px) {
  .section__forum .container {
    padding: 0 30px;
  }
}

.section__page--overview .product-of-the-year {
  width: unset;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section__page--overview .section__content--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 24px auto;
  grid-template-rows: auto auto;
  gap: 24px;
}
.section__page--overview .section__content--wrapper > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.section__page--overview .section__content--wrapper > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.section__page--overview .section__content--wrapper > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.section__page--overview .section__content--wrapper > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.section__page--overview .section__content--wrapper .left {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
.section__page--overview .section__content--wrapper .right {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
@media only screen and (max-width: 991px) {
  .section__page--overview .section__content--wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .section__page--overview .section__content--wrapper .left {
    grid-column: unset;
    grid-row: unset;
  }
  .section__page--overview .section__content--wrapper .right {
    grid-column: unset;
    grid-row: unset;
  }
}
.section__page--overview .section__content--wrapper .section__btn--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 50px;
  -ms-grid-column: 1;
  grid-column: 1/1;
  -ms-grid-row: 2;
  grid-row: 2;
}
.section__page--overview .section__image--wrapper {
  margin-top: 80px;
}

.section__page--photos .section__image--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 25px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.section__page--photos .section__image--wrapper:not(:last-of-type) {
  margin-bottom: 25px;
}
.section__page--photos .section__image--wrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .section__page--photos .section__image--wrapper {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
  }
  .section__page--photos .section__image--wrapper:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
.section__page--photos .section__image--5050 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.section__page--photos .section__image--255025 {
  -ms-grid-columns: 25% 50% 1fr;
  grid-template-columns: 25% 50% 1fr;
}
.section__page--photos .section__image--502525 {
  -ms-grid-columns: 50% 1fr 1fr;
  grid-template-columns: 50% 1fr 1fr;
}
.section__page--photos .section__image--252550 {
  -ms-grid-columns: 25% 25% 1fr;
  grid-template-columns: 25% 25% 1fr;
}
.section__page--photos .section__image--33 {
  -ms-grid-columns: 33.3% 1fr 1fr;
  grid-template-columns: 33.3% 1fr 1fr;
}
.section__page--photos .section__image--3366 {
  -ms-grid-columns: 33.3% 1fr;
  grid-template-columns: 33.3% 1fr;
}
.section__page--photos .section__image--6633 {
  -ms-grid-columns: 66.6% 1fr;
  grid-template-columns: 66.6% 1fr;
}

/* any photos section that follows another -> top becomes 25px */
.section__page--photos + .section__page--photos {
  padding-top: 25px;
}

/* any photos section that is followed by another -> bottom becomes 0 */
.section__page--photos:has(+ .section__page--photos) {
  padding-bottom: 0;
}

.section__page ul li {
  font-family: "Albert Sans", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: #363123;
}
.section__page ul li strong,
.section__page ul li b {
  font-weight: 700;
}
.section__page ul li em {
  font-style: italic;
}
.section__page ul li a {
  color: #c78155;
  font-weight: 500;
  text-decoration: none;
  text-underline-offset: 1px;
  text-decoration-thickness: 0.1px;
}
.section__page ul li a:hover {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: underline;
}

.section__page + .section__page {
  padding-top: 0;
}

.section__page--table {
  /* Grid of cards (2 cols desktop, 1 col mobile) */
  /* Card */
  /* Table */
  /* Tabs: panels */
}
.section__page--table .section__header--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  /* Tabs */
}
@media only screen and (max-width: 991px) {
  .section__page--table .section__header--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section__page--table .section__header--wrapper .section__heading--wrapper h2 {
  margin-bottom: 0;
}
.section__page--table .section__header--wrapper .section__button--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
}
.section__page--table .section__content--wrapper {
  margin-top: 80px;
}
.section__page--table .spec-card:not(:last-of-type) {
  margin-bottom: 40px;
}
.section__page--table .spec-table {
  width: 100%;
  border-collapse: collapse;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  /* Bold first column rows (matches screenshot style) */
}
.section__page--table .spec-table thead th {
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  color: #363123;
  text-align: left;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  width: 35%;
}
.section__page--table .spec-table thead th:first-of-type {
  font-weight: 500;
  background: #f0f0e7;
  color: #c78155;
  width: 30%;
}
.section__page--table .spec-table tbody td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.6);
  font-family: "Albert Sans", serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.section__page--table .spec-table tbody tr:nth-child(odd) td {
  background: rgba(0, 0, 0, 0.02);
}
.section__page--table .spec-table .emph td:first-child {
  font-weight: 700;
}
.section__page--table .tables {
  display: block;
}
.section__page--table .tables:not(.is-active) {
  display: none;
}

.section__page--products .section__heading--wrapper {
  text-align: center;
}
.section__page--products .section__productsListing--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.brandsNav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: #f9f7f2;
}
.brandsNav li {
  display: contents;
}
.brandsNav [role=tab] {
  width: auto;
  min-width: auto;
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #363123;
  position: relative;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.brandsNav [role=tab]:last-child {
  border-right: 0;
}
.brandsNav [role=tab] img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: opacity 0.2s ease, -webkit-filter 0.2s ease;
  transition: opacity 0.2s ease, -webkit-filter 0.2s ease;
  transition: filter 0.2s ease, opacity 0.2s ease;
  transition: filter 0.2s ease, opacity 0.2s ease, -webkit-filter 0.2s ease;
}
.brandsNav [role=tab] span {
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  overflow-wrap: normal;
}
.brandsNav [role=tab][aria-selected=true] {
  background: #363123;
  color: #fff;
}
.brandsNav [role=tab][aria-selected=true] span {
  color: #fff;
}
.brandsNav [role=tab][aria-selected=true] img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 1;
}
.brandsNav [role=tab]:hover:not([aria-selected=true]) {
  background: #f2eee8;
}
.brandsNav [role=tab]:focus-visible {
  outline: 2px solid var(--rosegold);
  outline-offset: 2px;
}

.tabpanels {
  margin-top: 24px;
}

.tabpanel {
  display: none;
}
.tabpanel.is-active {
  display: block;
}

.panel-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 32px 1fr;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}
@media only screen and (max-width: 991px) {
  .panel-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .section__brandsNav {
    /* Ensure the section itself doesn't create a new scroll context */
    overflow: hidden;
  }
  .section__brandsNav .container {
    padding: 0;
  }
  .section__brandsNav .container--4k {
    /* Let the inner UL hang outside if needed; the UL will handle its own scroll */
    overflow: visible;
  }
  .brandsNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    /* Make the UL the ONLY horizontal scroller */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain; /* trap overscroll so the page doesn't grab it */
    -ms-touch-action: pan-x;
        touch-action: pan-x; /* hint: horizontal gestures are for this element */
    /* Full-bleed/off-canvas trick */
    inline-size: 100vw; /* span the viewport width */
    margin-left: 50vw; /* center relative to viewport */
    -webkit-transform: translateX(-50vw);
            transform: translateX(-50vw);
    /* add some comfortable inset */
    padding-inline: 12px;
    /* optional: keeps layout from shifting when scrollbar shows */
    scrollbar-gutter: stable both-edges;
    /* snap if you like */
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    /* subtle edge fade; OK to keep, but use masking shorthand to avoid weird overflow in some browsers */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .brandsNav::-webkit-scrollbar {
    height: 0;
    width: 0;
    display: none;
  }
  /* Optional: if you still see a tiny “ghost” line on Windows,
    nudge it under the section with a negative margin. */
  .brandsNav li {
    display: block;
  }
  .brandsNav [role=tab] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; /* shrink-to-fit each button */
    scroll-snap-align: start;
  }
  .brandsNav [role=tab]:last-child {
    border-right: 0;
  }
  /* Be extra sure no child forces extra width */
  .brandsNav img {
    max-width: 100%;
    height: 30px;
  }
}
.section__brands--tabs .section__heading--wrapper {
  text-align: center;
}
.section__brands--tabs .section__subheading--wrapper {
  margin-bottom: 30px;
}
.section__brands--tabs .section__subheading--wrapper h2 {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  color: #363123;
}
.section__brands--tabs .section__brandLinks--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: ;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}
.section__brands--tabs .section__brandLinks--wrapper:not(:last-of-type) {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .section__brands--tabs .section__brandLinks--wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section__contactDetails .contactDetails--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}
@media only screen and (max-width: 991px) {
  .section__contactDetails .contactDetails--wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 991px) {
  body.logged-in header,
  body.logged-in .mobileMenu {
    top: 46px;
  }
  #wpadminbar {
    position: fixed !important;
  }
}
.mce-content-body article.spec-card {
  margin-bottom: 50px;
}
.mce-content-body table.spec-table.mce-item-table {
  width: 100%;
}

body:not(.block-editor-page) .acf-flexible-content .layout.active-layout > .acf-fc-layout-actions-wrap {
  background: #c78155;
}

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