@charset "UTF-8";
/* CORE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0px; /* Effectively hides the scrollbar */
  background: transparent; /* Makes scrollbar transparent */
}

body {
  -webkit-overflow-scrolling: touch;
}

body {
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg, iframe {
  display: block;
  max-width: 100%;
  image-rendering: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none !important;
}

/* FORM RESETS
 * Commented out by default — uncomment when NOT using a third-party form plugin
 * (HubSpot, Gravity Forms, Ninja Forms, etc. ship their own resets and will conflict).
 *
 * Purpose: strips browser-default form appearance to create a clean foundation,
 * then adds accessible focus states. After uncommenting, add visual styling
 * (colors, borders, padding) in styles/theme/_forms.scss.
 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--wp--custom--color--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link,
.wp-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--wp--custom--color--text);
  color: var(--wp--custom--color--background);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus,
.wp-skip-link:focus {
  top: 0;
}

[hidden] {
  display: none !important;
}

abbr[title] {
  cursor: help;
  text-decoration: underline dotted;
}

[aria-disabled=true],
:disabled {
  cursor: not-allowed;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-4rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.has-animation.has-been-revealed .fade-in-left {
  animation-name: fade-in-left;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(4rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.has-animation.has-been-revealed .fade-in-right {
  animation-name: fade-in-right;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.has-animation.has-been-revealed .fade-in-up {
  animation-name: fade-in-up;
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes services-fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.has-animation.has-been-revealed .fade-in-down {
  animation-name: fade-in-down;
  animation-duration: 2s;
  animation-fill-mode: both;
}

.has-animation.has-been-revealed .reveal-in {
  animation: reveal 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: both;
}

@keyframes reveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.has-image-animation.has-been-revealed {
  overflow: hidden;
}
.has-image-animation.has-been-revealed figure {
  margin-bottom: 0;
}
.has-image-animation.has-been-revealed img {
  animation: zoom 1.5s ease-in-out;
  animation-fill-mode: both;
  margin-bottom: 0;
}

.delayed-image-animation img {
  animation-duration: 3s !important;
  animation-fill-mode: both;
}

@keyframes draw-in-line {
  from {
    width: 1%;
  }
  to {
    width: 100%;
  }
}
@keyframes draw-in-line-80 {
  from {
    width: 80%;
  }
  to {
    width: 100%;
  }
}
.has-animation.has-been-revealed .animated-line {
  animation: draw-in-line 1s ease-in-out;
  animation-fill-mode: both;
}

.has-animation.has-been-revealed .animated-line-80 {
  animation: draw-in-line-80 1s ease-in-out;
  animation-fill-mode: both;
}

/* ANIMATION UTILITIES */
.animation-delay-500ms {
  animation-delay: 500ms;
}

.animation-delay-1s {
  animation-delay: 1s;
}

.animation-delay-1p5s {
  animation-delay: 1.5s;
}

@keyframes pulse-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* REDUCED MOTION
 * Kills scroll-triggered entrance animations (fade, slide, zoom, parallax).
 * Deliberately spares transition-based micro-interactions (hover states, focus rings)
 * because those are meaningful UI feedback, not decorative motion.
 * Applied as a hard global override — any animation in .has-animation or
 * .has-image-animation context is disabled regardless of how it was added.
 */
@media (prefers-reduced-motion: reduce) {
  .has-animation *,
  .has-animation.has-been-revealed * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .has-image-animation img,
  .has-image-animation.has-been-revealed img,
  .delayed-image-animation img {
    animation: none !important;
    transform: none !important;
  }
  .has-animation.has-been-revealed .animated-line,
  .has-animation.has-been-revealed .animated-line-80 {
    animation: none !important;
    width: 100% !important;
  }
}
/* TABBED CONTENT */
body.front-end .gutenberghub-tab-content {
  display: none;
}
body.front-end .gutenberghub-tab-content.gutenberghub-active-tab {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.video-modal {
  border: 0;
  outline: var(--wp--custom--color--accent);
  padding: 0;
  background: transparent;
  overflow: visible;
}
.video-modal::backdrop {
  background: rgba(101, 95, 88, 0.8);
}
.video-modal iframe {
  aspect-ratio: 32/17;
  display: block;
  margin: 0;
  max-width: 95vw;
  max-height: 70vh;
  min-width: 60vw;
  user-select: none;
}
.video-modal:before {
  content: "✕";
  position: absolute;
  top: -2rem;
  right: 0;
  color: var(--wp--custom--color--background);
  cursor: pointer;
}

.wp-block-navigation__responsive-container-close {
  padding: 16px;
}

.wp-block-ollie-mega-menu__menu-container {
  transition: 0.3s;
  transform: translateY(20px);
  opacity: 0;
}

.wp-block-ollie-mega-menu .wp-block-ollie-mega-menu__toggle[aria-expanded=true] ~ .wp-block-ollie-mega-menu__menu-container {
  transform: translateY(0);
  opacity: 1;
}

.header-wrap a.wp-block-navigation-item__content,
.footer-wrap .desktop-footer a :not(img) {
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: 0.3s;
}
.header-wrap a.wp-block-navigation-item__content::after,
.footer-wrap .desktop-footer a :not(img)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25em;
  height: 0.125em;
  width: 0;
  background-color: var(--wp--preset--color--accent-gold-soft);
  transition: width 0.3s ease-out;
}
.header-wrap a.wp-block-navigation-item__content:hover::after,
.footer-wrap .desktop-footer a :not(img):hover::after {
  width: 100%;
}

.header-wrap a.wp-block-navigation-item__content[aria-current=page]::after,
.footer-wrap .desktop-footer a[aria-current=page]::after {
  width: 100%;
}

/* CORE BLOCKS */
.is-style-two-column {
  columns: 2;
  column-gap: 6rem;
}
@media (max-width: 991px) {
  .is-style-two-column {
    columns: 1;
  }
}

.is-style-has-dotted-links a {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: 0em;
  text-underline-position: from-font;
  transition: text-underline-offset 0.2s ease;
}
.is-style-has-dotted-links a:hover {
  text-underline-offset: 0.1em;
}

p[style="text-decoration:none"] a {
  text-decoration-color: transparent;
  transition: 0.3s;
}
p[style="text-decoration:none"] a:hover {
  text-decoration-color: currentColor;
}

.is-style-tab-toggle {
  opacity: 0.3;
  font-size: clamp(30px, 32.9032258065px + -0.0080645161 * 100vw, 20px);
  line-height: clamp(35px, 38.1935483871px + -0.0088709677 * 100vw, 24px);
  font-weight: 500;
}
.is-style-tab-toggle:hover {
  opacity: 0.7;
}

.gutenberghub-active-tab {
  font-weight: 600;
}
.gutenberghub-active-tab .is-style-tab-toggle {
  opacity: 1;
}

.is-style-regular-arrow {
  margin: 0;
}
.is-style-regular-arrow:after {
  content: " →";
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  transition: all 0.3s ease;
  transform: translateX(10px);
}
.is-style-regular-arrow:hover:after {
  transform: translateX(20px);
}

.blog-content p a {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}
.blog-content p a:hover {
  text-decoration-color: currentColor;
}

.blog-featured-image {
  pointer-events: none;
}

h1.wp-block-heading,
.has-h1-font-size {
  font-size: var(--wp--preset--font-size--h1);
  font-weight: 600;
  line-height: 1;
}

h2.wp-block-heading,
.has-h2-font-size {
  font-size: var(--wp--preset--font-size--h2);
  font-weight: 600;
  line-height: 1.1;
}

h3.wp-block-heading,
.has-h3-font-size {
  font-size: var(--wp--preset--font-size--h3);
  font-weight: 600;
  line-height: 1.2;
}

h4.wp-block-heading,
.has-h4-font-size {
  font-size: var(--wp--preset--font-size--h4);
  font-weight: 600;
  line-height: 1.2;
}

h5.wp-block-heading,
.has-h5-font-size {
  font-size: var(--wp--preset--font-size--h5);
  font-weight: 600;
  line-height: 1.3;
}

.wp-block-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-left: 1.5em;
}
.wp-block-list li {
  position: relative;
  padding-left: 0.25em;
}

.wp-block-list.is-style-plus-list,
.wp-block-list.is-style-hyphen-list,
.wp-block-list.is-style-check-list,
.wp-block-list.is-style-dash-list {
  padding-left: 0;
}
.wp-block-list.is-style-plus-list li,
.wp-block-list.is-style-hyphen-list li,
.wp-block-list.is-style-check-list li,
.wp-block-list.is-style-dash-list li {
  padding-left: 1.5em;
}

.is-style-plus-list,
.block-editor-block-list__block.is-style-plus-list {
  list-style: none;
  padding-left: 0;
}
.is-style-plus-list li::before,
.block-editor-block-list__block.is-style-plus-list li::before {
  content: "＋";
  position: absolute;
  left: 0;
  font-weight: inherit;
}

.is-style-hyphen-list,
.block-editor-block-list__block.is-style-hyphen-list {
  list-style: none;
  padding-left: 0;
}
.is-style-hyphen-list li::before,
.block-editor-block-list__block.is-style-hyphen-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  font-weight: inherit;
}

.is-style-check-list,
.block-editor-block-list__block.is-style-check-list {
  list-style: none;
  padding-left: 0;
}
.is-style-check-list li::before,
.block-editor-block-list__block.is-style-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: inherit;
}

.block-editor-block-list__block.is-style-plus-list li, .block-editor-block-list__block.is-style-hyphen-list li, .block-editor-block-list__block.is-style-check-list li {
  font-size: var(--wp--preset--font-size--h4);
}

.wp-block-quote {
  font-size: var(--wp--preset--font-size--h4);
  font-weight: 500;
  margin-left: 0;
  padding: 0 0 0 1rem;
  border-left: 2px solid;
}

.wp-block-quote.is-style-plain {
  font-size: var(--wp--preset--font-size--h4);
  font-weight: 300;
  margin-left: 0;
  border: 0;
}

.wp-block-button.is-style-fill a,
.wp-block-button.is-style-fill div,
.wp-block-button.is-style-default a,
.wp-block-button.is-style-default div,
.wp-block-button:not([class*=is-style-]) a,
.wp-block-button:not([class*=is-style-]) div {
  background: var(--wp--custom--color--text);
  color: var(--wp--custom--color--background);
  border: 0;
  padding: 1em;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  text-decoration: none;
  user-select: none;
}
.wp-block-button.is-style-fill a:hover,
.wp-block-button.is-style-fill div:hover,
.wp-block-button.is-style-default a:hover,
.wp-block-button.is-style-default div:hover,
.wp-block-button:not([class*=is-style-]) a:hover,
.wp-block-button:not([class*=is-style-]) div:hover {
  background: var(--wp--custom--color--accent) !important;
  color: var(--wp--custom--color--background) !important;
}

.wp-block-button.is-style-breadcrumb a,
.wp-block-button.is-style-breadcrumb div {
  border: 0;
  padding: 0;
  font-family: inherit;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  transition: 0.3s;
  user-select: none;
}
.wp-block-button.is-style-breadcrumb a span,
.wp-block-button.is-style-breadcrumb div span {
  padding-left: 0.25rem;
}
.wp-block-button.is-style-breadcrumb a::before,
.wp-block-button.is-style-breadcrumb div::before {
  display: inline-block;
  content: "←";
  position: absolute;
  left: 0;
  transition: left 0.3s ease;
}
.wp-block-button.is-style-breadcrumb a:hover::before,
.wp-block-button.is-style-breadcrumb div:hover::before {
  left: -5px;
}

.wp-block-button.is-style-outline-light a,
.wp-block-button.is-style-outline-light div {
  background: transparent;
  color: currentColor;
  border: 2px solid;
  padding: 1em;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s;
  text-decoration: none;
  border: 1px solid currentColor;
  user-select: none;
}
.wp-block-button.is-style-outline-light a:hover,
.wp-block-button.is-style-outline-light div:hover {
  background: var(--wp--custom--color--background) !important;
  color: var(--wp--custom--color--text) !important;
}

.wp-block-button.is-style-outline-dark a,
.wp-block-button.is-style-outline-dark div {
  background: transparent;
  color: currentColor;
  border: 2px solid;
  padding: 1em;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s;
  text-decoration: none;
  border: 1px solid currentColor;
  user-select: none;
}
.wp-block-button.is-style-outline-dark a:hover,
.wp-block-button.is-style-outline-dark div:hover {
  background: var(--wp--custom--color--accent) !important;
  color: var(--wp--custom--color--background) !important;
}

.wp-block-button.is-style-pi a,
.wp-block-button.is-style-pi div {
  display: inline-block;
  padding: 1rem 1.5rem !important;
  border-width: 0;
  font-weight: bold;
  border-style: solid;
  background: transparent;
  border-radius: 0.5em;
  cursor: pointer;
  user-select: none;
  vertical-align: bottom;
  transition: box-shadow 0.2s, transform 0.2s;
  border-radius: 12%/50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.wp-block-button.is-style-pi a:hover,
.wp-block-button.is-style-pi div:hover {
  transform: scale(1.02);
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.4);
}

.wp-block-button.is-style-nu a,
.wp-block-button.is-style-nu > div {
  display: inline-block;
  padding: 0.8em 2.5em !important;
  font-weight: normal;
  border-width: 3px;
  border-style: solid;
  font-weight: bold;
  background: transparent;
  border-radius: 0;
  border-color: currentColor;
  cursor: pointer;
  user-select: none;
  vertical-align: bottom;
  transition: background-color 0.2s, color 0.2s, padding 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-radius 0.2s;
}
.wp-block-button.is-style-nu a:hover,
.wp-block-button.is-style-nu > div:hover {
  background-color: currentColor !important;
  padding-left: 3.5em !important;
  padding-right: 3.5em !important;
  border-radius: 0.4em;
}
.wp-block-button.is-style-nu a:hover span, .wp-block-button.is-style-nu a:hover div,
.wp-block-button.is-style-nu > div:hover span,
.wp-block-button.is-style-nu > div:hover div {
  color: var(--wp--custom--color--background) !important;
}

.wp-block-button.is-style-iota a,
.wp-block-button.is-style-iota div {
  display: inline-block;
  padding: 0.6em 1.6em;
  border-width: 2px;
  border-style: solid;
  border-color: currentColor;
  background: transparent;
  border-radius: 1.46em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: "Booster Next FY", "Avenir Next", Avenir, sans-serif;
  user-select: none;
  vertical-align: bottom;
  position: relative;
  border-style: solid;
  overflow: hidden;
  transition: background-color 0.3s, color 0.3s;
}
.wp-block-button.is-style-iota a:after,
.wp-block-button.is-style-iota div:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 1.46em;
  transform: scaleX(0.7);
  opacity: 0;
  transition: transform 0.8s, opacity 0.3s;
  background-color: currentColor !important;
}
.wp-block-button.is-style-iota a:hover,
.wp-block-button.is-style-iota div:hover {
  background-color: currentColor !important;
}
.wp-block-button.is-style-iota a:hover span, .wp-block-button.is-style-iota a:hover div,
.wp-block-button.is-style-iota div:hover span,
.wp-block-button.is-style-iota div:hover div {
  color: var(--wp--custom--color--background) !important;
}
.wp-block-button.is-style-iota a:hover:after,
.wp-block-button.is-style-iota div:hover:after {
  transform: scaleX(1);
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
}

.wp-block-button.is-style-theta a,
.wp-block-button.is-style-theta div {
  display: inline-block;
  font-size: inherit;
  line-height: 1.42;
  padding: 0.7em 1.4em;
  margin-right: 2rem;
  font-weight: bold;
  border-width: 3px;
  border-style: solid;
  background: transparent;
  color: currentColor;
  border-color: currentColor;
  border-radius: 0;
  cursor: pointer;
  user-select: none;
  vertical-align: bottom;
  position: relative;
  transform: translate(0.5em, -0.4em) !important;
  transition: transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.wp-block-button.is-style-theta a:before,
.wp-block-button.is-style-theta div:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  transform: translate(0.6em, -0.3em) !important;
  transition: transform 0.2s, background-color 0.2s;
  background: currentColor;
  opacity: 0.3;
}
.wp-block-button.is-style-theta a:hover,
.wp-block-button.is-style-theta div:hover {
  transform: translate(0.2em, -0.1em) !important;
}
.wp-block-button.is-style-theta a:hover:before,
.wp-block-button.is-style-theta div:hover:before {
  transform: translate(-0.4em, 0.4em) !important;
}

.wp-block-button.is-style-arrow-link a,
.wp-block-button.is-style-arrow-link div {
  border: 0;
  padding: 0;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  user-select: none;
}
.wp-block-button.is-style-arrow-link a::after,
.wp-block-button.is-style-arrow-link div::after {
  font-size: 110%;
  margin-left: 0.5rem;
  content: "→";
  display: inline-block;
  transition: transform 0.3s;
}
.wp-block-button.is-style-arrow-link a:hover::after,
.wp-block-button.is-style-arrow-link div:hover::after {
  transform: translateX(6px);
}

.wp-block-button.is-style-arrow-link-alt a,
.wp-block-button.is-style-arrow-link-alt div {
  border: 0;
  padding: 0;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  user-select: none;
}
.wp-block-button.is-style-arrow-link-alt a::after,
.wp-block-button.is-style-arrow-link-alt div::after {
  font-size: 110%;
  margin-left: 0.5rem;
  content: "↗";
  display: inline-block;
  transition: transform 0.3s;
}
.wp-block-button.is-style-arrow-link-alt a:hover::after,
.wp-block-button.is-style-arrow-link-alt div:hover::after {
  transform: translateX(6px) translateY(-6px);
}

.wp-block-button.is-style-chevron-link a,
.wp-block-button.is-style-chevron-link div {
  border: 0;
  padding: 0;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  user-select: none;
}
.wp-block-button.is-style-chevron-link a::after,
.wp-block-button.is-style-chevron-link div::after {
  font-size: 110%;
  margin-left: 0.5rem;
  content: "»";
  display: inline-block;
  transition: transform 0.3s;
}
.wp-block-button.is-style-chevron-link a:hover::after,
.wp-block-button.is-style-chevron-link div:hover::after {
  transform: translateX(6px);
}

.wp-block-button.is-style-play-button a,
.wp-block-button.is-style-play-button div {
  color: var(--wp--custom--color--background);
  background: var(--wp--custom--color--accent);
  user-select: none;
}
.wp-block-button.is-style-play-button a:hover,
.wp-block-button.is-style-play-button div:hover {
  background: transparent !important;
  color: currentColor !important;
}

.front-end .wp-block-cover .is-style-play-button {
  display: none;
}

.is-style-plus-minus {
  list-style: none;
  width: 100%;
}
.is-style-plus-minus > summary {
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}
.is-style-plus-minus > summary::-webkit-details-marker {
  display: none;
}
.is-style-plus-minus > summary::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 1rem;
  transition: transform 0.3s ease;
}
@keyframes open {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.is-style-plus-minus[open] summary ~ * {
  animation: open 0.5s ease-in-out;
}
.is-style-plus-minus.closing summary ~ * {
  animation: close 0.5s ease-in-out;
}
.is-style-plus-minus > summary {
  font-size: var(--wp--preset--font-size--h4);
  color: var(--wp--custom--color--accent);
}
.is-style-plus-minus > summary::after {
  content: "+";
}
.is-style-plus-minus[open] > summary::after {
  content: "−";
}

.is-style-lg-plus-minus {
  list-style: none;
  width: 100%;
}
.is-style-lg-plus-minus > summary {
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}
.is-style-lg-plus-minus > summary::-webkit-details-marker {
  display: none;
}
.is-style-lg-plus-minus > summary::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 1rem;
  transition: transform 0.3s ease;
}
@keyframes open {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.is-style-lg-plus-minus[open] summary ~ * {
  animation: open 0.5s ease-in-out;
}
.is-style-lg-plus-minus.closing summary ~ * {
  animation: close 0.5s ease-in-out;
}
.is-style-lg-plus-minus > summary {
  font-size: var(--wp--preset--font-size--h2);
  color: var(--wp--custom--color--accent);
  border-bottom: 1px solid currentColor;
}
.is-style-lg-plus-minus > summary::after {
  content: "+";
}
.is-style-lg-plus-minus[open] > summary::after {
  content: "−";
}

.wp-block-separator {
  border-bottom: none;
  color: currentColor;
}

.is-style-center-ball {
  background: currentColor;
  position: relative;
  overflow: visible;
}
.is-style-center-ball:before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: currentColor;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: absolute;
  top: -0.5rem;
  left: 50%;
  margin: 0 0 0 -3px;
}

.is-style-center-square {
  background: currentColor;
  position: relative;
  overflow: visible;
}
.is-style-center-square:before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: currentColor;
  display: inline-block;
  border: 2px solid currentColor;
  position: absolute;
  top: -0.5rem;
  left: 50%;
  margin: 0 0 0 -3px;
}

.is-style-center-diamond {
  background: currentColor;
  position: relative;
  overflow: visible;
}
.is-style-center-diamond:before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: currentColor;
  display: inline-block;
  border: 2px solid currentColor;
  position: absolute;
  top: -0.5rem;
  left: 50%;
  margin: 0 0 0 -3px;
  transform: rotate(45deg) !important;
  -ms-transform: rotate(45deg) !important;
  -webkit-transform: rotate(45deg) !important;
}

.wp-block-image {
  line-height: 0;
}
.wp-block-image figcaption {
  line-height: 1.5;
}

figcaption:empty {
  display: none;
}

.wp-block-post-featured-image:not(.single-featured-image) {
  cursor: pointer;
  overflow: hidden;
}
.wp-block-post-featured-image:not(.single-featured-image) img {
  transition: transform 0.3s ease;
}
.wp-block-post-featured-image:not(.single-featured-image) img:hover {
  transform: scale(1.1);
}

.wp-block-image.is-style-zoom-effect:not(.single-featured-image) {
  cursor: pointer;
  transition: 0.3s;
}
.wp-block-image.is-style-zoom-effect:not(.single-featured-image):hover {
  transform: scale(1.1);
}

.is-style-stack-stretch {
  height: 100%;
  justify-content: space-between;
}

.is-style-overflow-hidden {
  overflow: hidden;
}

@media (max-width: 781px) {
  .is-style-stack-backwards {
    flex-direction: column-reverse;
  }
}

.is-style-blend-multiply span.wp-block-cover__background {
  mix-blend-mode: multiply;
}

.wp-block-search__input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 300px;
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid currentColor;
  border-radius: 0;
  color: var(--wp--custom--color--text);
  background: var(--wp--custom--color--background);
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  box-shadow: none;
}
.wp-block-search__input::placeholder {
  color: currentColor;
  opacity: 0.6;
}
.wp-block-search__input:focus {
  outline: none;
  box-shadow: none;
}
.wp-block-search__button {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-block-search__button svg {
  width: 1.25rem;
  height: 1.25rem;
}
.wp-block-search__inside-wrapper {
  position: relative;
}
.wp-block-search form {
  position: relative;
}

.wp-block-query.search-results .wp-block-post {
  margin-bottom: 1.5rem;
}
.wp-block-query.search-results .wp-block-post a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
.wp-block-query.search-results .wp-block-post .wp-block-post-title {
  margin-bottom: 0.75rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s;
}
.wp-block-query.search-results .wp-block-post .wp-block-post-excerpt {
  margin: 0;
}
.wp-block-query.search-results .wp-block-post:hover .wp-block-post-title {
  text-decoration-color: currentColor;
}

.single-post .wp-block-post-content {
  --wp--style--block-gap: var(--wp--preset--spacing--s);
}

/* THEME BLOCKS */
p.is-style-eyebrow {
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--wp--preset--color--navy-soft);
  margin: 0;
}

p.is-style-lede {
  font-family: var(--wp--preset--font-family--source-serif-4);
  font-size: var(--wp--preset--font-size--l);
  font-weight: 400;
  line-height: 1.5;
  color: var(--wp--preset--color--ink-muted);
  margin: 0;
}

p.wp-block-paragraph.is-style-stat-display {
  font-family: var(--wp--preset--font-family--source-serif-4);
  font-size: var(--wp--preset--font-size--xxl);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--navy);
  margin: 0;
}

.wp-block-list.is-style-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.wp-block-list.is-style-two-column li {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--xs);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wp--preset--color--ink);
}
.wp-block-list.is-style-two-column li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--ink-subtle);
  flex-shrink: 0;
}
.wp-block-list.is-style-two-column li:nth-child(odd) {
  background-color: var(--wp--preset--color--surface-warm);
}
@media (max-width: 600px) {
  .wp-block-list.is-style-two-column {
    grid-template-columns: 1fr;
  }
}

.wp-block-button .wp-block-button__link {
  font-family: var(--wp--preset--font-family--raleway);
  font-size: var(--wp--preset--font-size--s);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--xs);
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.wp-block-button.is-style-default .wp-block-button__link,
.wp-block-button:not([class*=is-style-]) .wp-block-button__link {
  background-color: var(--wp--preset--color--navy);
  color: #ffffff;
  border-color: transparent;
  border-radius: 999px;
}
.wp-block-button.is-style-default .wp-block-button__link:hover,
.wp-block-button:not([class*=is-style-]) .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 42, 71, 0.08), 0 1px 3px rgba(14, 42, 71, 0.05);
}

.wp-block-button.is-style-gold .wp-block-button__link {
  background-color: var(--wp--preset--color--accent-gold);
  color: var(--wp--preset--color--navy-deep);
  border-color: transparent;
  border-radius: 999px;
}
.wp-block-button.is-style-gold .wp-block-button__link::after {
  content: " →";
}
.wp-block-button.is-style-gold .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--accent-gold-soft);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.wp-block-button.is-style-text-link .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--navy);
  border-color: transparent;
  padding-right: 0;
  padding-left: 0;
}
.wp-block-button.is-style-text-link .wp-block-button__link::after {
  content: " →";
}
.wp-block-button.is-style-text-link .wp-block-button__link:hover {
  color: var(--wp--preset--color--accent-gold);
}

.wp-block-button.is-style-outline-arrow .wp-block-button__link {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: block;
}
.wp-block-button.is-style-outline-arrow .wp-block-button__link::after {
  content: " →";
}
.wp-block-button.is-style-outline-arrow .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.wp-block-button.is-style-blue-arrow .wp-block-button__link {
  background-color: var(--wp--preset--color--navy);
  color: #ffffff;
  border-color: transparent;
  border-radius: 999px;
}
.wp-block-button.is-style-blue-arrow .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 42, 71, 0.08), 0 1px 3px rgba(14, 42, 71, 0.05);
}

.is-style-faq {
  width: 100%;
}
.is-style-faq > summary {
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
  cursor: pointer;
  font-weight: 600;
}
.is-style-faq > summary::-webkit-details-marker {
  display: none;
}
.is-style-faq > summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
.is-style-faq[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.is-style-faq > :not(summary) {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.is-style-faq[open] > :not(summary) {
  max-height: 800px;
  opacity: 1;
}
.is-style-faq.closing > :not(summary) {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.is-style-faq > summary {
  font-size: var(--wp--preset--font-size--h4);
}

.is-style-submenu {
  width: 100%;
}
.is-style-submenu > summary {
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
  cursor: pointer;
  font-weight: 600;
}
.is-style-submenu > summary::-webkit-details-marker {
  display: none;
}
.is-style-submenu > summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
.is-style-submenu[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.is-style-submenu > :not(summary) {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.is-style-submenu[open] > :not(summary) {
  max-height: 800px;
  opacity: 1;
}
.is-style-submenu.closing > :not(summary) {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}
.is-style-submenu > summary {
  font-size: var(--wp--preset--font-size--h3);
  border-bottom: 1px solid currentColor;
}

.wp-block-group.is-style-frosted {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wp-block-group.is-style-hover-shadow {
  border: 1px solid var(--wp--preset--color--line);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wp-block-group.is-style-hover-shadow:hover {
  border-color: var(--wp--preset--color--ink-subtle);
  box-shadow: 0 4px 14px rgba(14, 42, 71, 0.08), 0 1px 3px rgba(14, 42, 71, 0.05);
}

@media (max-width: 991px) {
  .wp-block-columns.is-style-stack-991 {
    flex-direction: column;
  }
  .wp-block-columns.is-style-stack-991 .wp-block-column {
    flex-basis: 100% !important;
    width: 100%;
  }
}

.wp-block-quote p::after, .wp-block-quote p::before {
  font-family: inherit;
  font-size: 150%;
  font-weight: inherit;
}
.wp-block-quote p::before {
  content: "“";
  color: var(--wp--preset--color--accent-gold);
}
.wp-block-quote p::after {
  content: "”";
  color: var(--wp--preset--color--accent-gold);
}
.wp-block-quote cite,
.wp-block-quote .wp-block-quote__citation {
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}
.wp-block-quote cite strong,
.wp-block-quote .wp-block-quote__citation strong {
  font-family: var(--wp--preset--font-family--source-serif-4);
  font-size: 20px;
  font-weight: 500;
}

.wp-block-list.is-style-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.wp-block-list.is-style-two-column li {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--xs);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wp--preset--color--ink);
}
.wp-block-list.is-style-two-column li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--ink-subtle);
  flex-shrink: 0;
}
.wp-block-list.is-style-two-column li:nth-child(odd) {
  background-color: var(--wp--preset--color--surface-warm);
}
@media (max-width: 600px) {
  .wp-block-list.is-style-two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .wp-block-columns.is-style-stack-991 {
    flex-direction: column;
  }
  .wp-block-columns.is-style-stack-991 .wp-block-column {
    flex-basis: 100% !important;
    width: 100%;
  }
}

/* THEME LAYOUT */
form.post-password-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  padding-bottom: 600px;
}
form.post-password-form p:empty {
  display: none;
}
form.post-password-form > p:not(:has(label)) {
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  color: var(--wp--preset--color--ink-muted);
  margin-bottom: var(--wp--preset--spacing--s);
}
form.post-password-form > p:has(label) {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--s);
  margin: 0;
}
form.post-password-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--navy-soft);
  line-height: 1.4;
}
form.post-password-form input[type=password] {
  width: 100%;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 10px 14px;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 8px;
  background: var(--wp--preset--color--surface);
  color: var(--wp--preset--color--ink);
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
form.post-password-form input[type=password]:focus {
  outline: none;
  border-color: var(--wp--preset--color--navy-soft);
  box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.1);
}
form.post-password-form input[type=submit] {
  align-self: flex-end;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.75rem 1.375rem;
  background-color: var(--wp--preset--color--navy);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.18s, box-shadow 0.18s, transform 0.18s;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
}
form.post-password-form input[type=submit]:hover {
  background-color: var(--wp--preset--color--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 42, 71, 0.08), 0 1px 3px rgba(14, 42, 71, 0.05);
}

.wpaloginform {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--s);
  max-width: 600px;
}
.wpaloginform .wpa-login-label {
  display: block;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--navy-soft);
  line-height: 1.4;
}
.wpaloginform input[type=text].wpa-user-email-username {
  width: 100%;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 8px;
  background: var(--wp--preset--color--surface);
  color: var(--wp--preset--color--ink);
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.wpaloginform input[type=text].wpa-user-email-username::placeholder {
  color: var(--wp--preset--color--ink-subtle);
}
.wpaloginform input[type=text].wpa-user-email-username:focus {
  outline: none;
  border-color: var(--wp--preset--color--navy-soft);
  box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.1);
}
.wpaloginform input[type=submit].wpa-submit {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.375rem;
  background-color: var(--wp--preset--color--navy);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.18s, box-shadow 0.18s, transform 0.18s;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
}
.wpaloginform input[type=submit].wpa-submit:hover {
  background-color: var(--wp--preset--color--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 42, 71, 0.08), 0 1px 3px rgba(14, 42, 71, 0.05);
}

#ui-datepicker-div {
  background: var(--wp--preset--color--surface-warm-2);
}
#ui-datepicker-div > * {
  padding: 0.25rem;
}

.gform_wrapper .gform_validation_container {
  display: none !important;
}
.gform_wrapper .gfield--type-html {
  margin-top: var(--wp--preset--spacing--xl);
}
.gform_wrapper .gfield--type-html:first-child {
  margin-top: 0;
}
.gform_wrapper .gfield--type-html h2 {
  font-family: var(--wp--preset--font-family--source-serif-4);
  font-size: var(--wp--preset--font-size--xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--wp--preset--color--navy);
  margin: 0;
}
.gform_wrapper .gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--m);
  list-style: none;
  margin: 0;
  padding: 0;
}
.gform_wrapper .gfield {
  flex: 0 0 100%;
  min-width: 0;
}
.gform_wrapper .gfield--width-half {
  flex: 0 0 calc(48% - var(--wp--preset--spacing--m) / 2);
  min-width: 0;
}
.gform_wrapper .gfield_label,
.gform_wrapper .gform-field-label {
  display: block;
  margin-bottom: var(--wp--preset--spacing--xs);
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--navy-soft);
  line-height: 1.4;
}
.gform_wrapper .gfield_required {
  display: inline;
  margin-left: 0.2rem;
  color: var(--wp--preset--color--danger);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=url],
.gform_wrapper input[type=number],
.gform_wrapper input[type=search],
.gform_wrapper input[type=password],
.gform_wrapper textarea,
.gform_wrapper select {
  width: 100%;
  max-width: 100%;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 8px;
  background: var(--wp--preset--color--surface);
  color: var(--wp--preset--color--ink);
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.gform_wrapper input[type=text]::placeholder,
.gform_wrapper input[type=email]::placeholder,
.gform_wrapper input[type=tel]::placeholder,
.gform_wrapper input[type=url]::placeholder,
.gform_wrapper input[type=number]::placeholder,
.gform_wrapper input[type=search]::placeholder,
.gform_wrapper input[type=password]::placeholder,
.gform_wrapper textarea::placeholder,
.gform_wrapper select::placeholder {
  color: var(--wp--preset--color--ink-subtle);
}
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=search]:focus,
.gform_wrapper input[type=password]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  outline: none;
  border-color: var(--wp--preset--color--navy-soft);
  box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.1);
}
.gform_wrapper textarea {
  min-height: 130px;
  resize: vertical;
}
.gform_wrapper .gfield_description {
  margin-top: 4px;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  color: var(--wp--preset--color--ink-muted);
}
.gform_wrapper .gfield_radio {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gform_wrapper .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--s);
  padding: 10px 14px;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
}
.gform_wrapper .gfield_radio .gchoice:hover {
  border-color: var(--wp--preset--color--ink-subtle);
  background: var(--wp--preset--color--surface-warm);
}
.gform_wrapper .gfield_radio .gchoice:has(input:checked) {
  border-color: var(--wp--preset--color--navy-soft);
  background: var(--wp--preset--color--surface-warm);
}
.gform_wrapper .gfield_radio .gchoice input[type=radio] {
  width: auto;
  max-width: none;
  flex-shrink: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  accent-color: var(--wp--preset--color--navy-soft);
  cursor: pointer;
}
.gform_wrapper .gfield_radio .gchoice .gchoice_other_control {
  width: auto;
  max-width: 150px;
}
.gform_wrapper .gfield_radio .gchoice label {
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--wp--preset--color--ink);
  cursor: pointer;
  margin: 0;
}
.gform_wrapper .ginput_container_consent {
  display: flex;
  align-items: flex-start;
  gap: var(--wp--preset--spacing--s);
}
.gform_wrapper .ginput_container_consent input[type=checkbox] {
  width: auto;
  max-width: none;
  flex-shrink: 0;
  margin-top: 3px;
  padding: 0;
  border: none;
  box-shadow: none;
  accent-color: var(--wp--preset--color--navy-soft);
  cursor: pointer;
}
.gform_wrapper .ginput_container_consent label {
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.55;
  color: var(--wp--preset--color--ink-muted);
  cursor: pointer;
  margin: 0;
}
.gform_wrapper .gfield_error input[type=text],
.gform_wrapper .gfield_error input[type=email],
.gform_wrapper .gfield_error input[type=tel],
.gform_wrapper .gfield_error input[type=url],
.gform_wrapper .gfield_error input[type=number],
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select {
  border-color: var(--wp--preset--color--danger);
}
.gform_wrapper .validation_message {
  margin-top: 4px;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.75rem;
  color: var(--wp--preset--color--danger);
}
.gform_wrapper .gform_submission_error {
  font-family: var(--wp--preset--font-family--raleway);
  color: var(--wp--preset--color--danger);
  margin-bottom: var(--wp--preset--spacing--s);
}
.gform_wrapper .gform-grid-row {
  display: flex;
  gap: var(--wp--preset--spacing--m);
}
.gform_wrapper .gform-grid-col--size-auto {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.gform_wrapper .gform-field-label--type-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--wp--preset--color--ink-muted);
}
.gform_wrapper .ginput_container_fileupload {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gform_wrapper input[type=file] {
  width: 100%;
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  padding: 10px 14px;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 8px;
  background: var(--wp--preset--color--surface);
  color: var(--wp--preset--color--ink);
  cursor: pointer;
}
.gform_wrapper .gform_fileupload_rules {
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.75rem;
  color: var(--wp--preset--color--ink-subtle);
}
.gform_wrapper#gform_3 .gform_fields {
  display: flex !important;
  flex-wrap: wrap !important;
}
.gform_wrapper#gform_3 .gfield--width-half {
  flex: 0 0 calc(50% - var(--wp--preset--spacing--m) / 2) !important;
  max-width: calc(50% - var(--wp--preset--spacing--m) / 2) !important;
}
.gform_wrapper .gform-footer,
.gform_wrapper .gform_footer {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--wp--preset--spacing--m);
  padding: 0;
}
.gform_wrapper .gform_button {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--xs);
  font-family: var(--wp--preset--font-family--raleway);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.375rem;
  background-color: var(--wp--preset--color--navy);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.18s, box-shadow 0.18s, transform 0.18s;
  -webkit-appearance: none;
  appearance: none;
  white-space: nowrap;
}
.gform_wrapper .gform_button:hover {
  background-color: var(--wp--preset--color--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 42, 71, 0.08), 0 1px 3px rgba(14, 42, 71, 0.05);
}

/* THEME OVERRIDES */
.wp-block-cb-carousel {
  padding-left: 60px;
  padding-right: 60px;
}
.wp-block-cb-carousel .slick-prev {
  left: 0;
}
.wp-block-cb-carousel .slick-next {
  right: 0;
}
.wp-block-cb-carousel .slick-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--navy) !important;
  border: 1px solid transparent;
  z-index: 10;
  transition: background-color 0.18s, border-color 0.18s;
}
.wp-block-cb-carousel .slick-arrow::before {
  font-size: 18px;
  color: #ffffff !important;
  opacity: 1 !important;
  transition: color 0.18s;
}
.wp-block-cb-carousel .slick-arrow:hover, .wp-block-cb-carousel .slick-arrow:focus-visible {
  background-color: var(--wp--preset--color--accent-gold) !important;
  border-color: var(--wp--preset--color--accent-gold);
}
.wp-block-cb-carousel .slick-arrow:hover::before, .wp-block-cb-carousel .slick-arrow:focus-visible::before {
  color: var(--wp--preset--color--navy-deep) !important;
}

.wp-block-navigation__responsive-container-close {
  padding: 1.25rem 1.75rem;
}

.gutenberghub-tab-buttons-container {
  overflow-x: auto;
  flex-wrap: nowrap !important;
}

@media (max-width: 599px) {
  .hide-599 {
    display: none;
  }
}

/*# sourceMappingURL=theme.css.map */
