:root {
  /* Colors must derive from theme.json presets so palette changes propagate everywhere. */
  --ch-limestone: var(--wp--preset--color--limestone);
  --ch-sand: var(--wp--preset--color--sand);
  --ch-deepsea: var(--wp--preset--color--deep-sea);
  --ch-copper: var(--wp--preset--color--copper);
  --ch-olive: var(--wp--preset--color--olive);
  --ch-ink: var(--wp--preset--color--ink);
  --ch-mist: var(--wp--preset--color--mist);
  --ch-white: var(--wp--preset--color--white);

  /* Derived surfaces. */
  --ch-limestone-elevated: color-mix(in srgb, var(--ch-white) 66%, var(--ch-limestone));
  --ch-border-soft: color-mix(in srgb, var(--ch-deepsea) 14%, var(--ch-white));

  /*
    Blocksy (parent theme) ships its own palette variables (e.g. --theme-palette-color-1)
    and uses them across core UI. Map them to our theme.json presets so a palette change
    in theme.json propagates without chasing hard-coded colors across the codebase.
  */
  --theme-palette-color-1: var(--ch-deepsea) !important;
  --theme-palette-color-2: var(--ch-copper) !important;
  --theme-palette-color-3: var(--ch-ink) !important;
  --theme-palette-color-4: var(--ch-deepsea) !important;
  --theme-palette-color-5: var(--ch-mist) !important;
  --theme-palette-color-6: var(--ch-limestone-elevated) !important;
  --theme-palette-color-7: var(--ch-limestone) !important;
  --theme-palette-color-8: var(--ch-white) !important;

  --theme-text-color: var(--ch-ink) !important;
  --theme-link-initial-color: var(--ch-deepsea) !important;
  --theme-link-hover-color: var(--ch-copper) !important;
  --theme-selection-text-color: var(--ch-white) !important;
  --theme-selection-background-color: var(--ch-deepsea) !important;
  --theme-border-color: var(--ch-border-soft) !important;
  --theme-headings-color: var(--ch-deepsea) !important;
  --ch-radius: 14px;
  --ch-maxw: 1280px;
  --ch-content: 760px;
  --ch-space-4: 4px;
  --ch-space-8: 8px;
  --ch-space-12: 12px;
  --ch-space-16: 16px;
  --ch-space-24: 24px;
  --ch-space-32: 32px;
  --ch-space-48: 48px;
  --ch-space-64: 64px;
  --ch-font-display: "Playfair Display", serif;
  --ch-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ch-font-nav: "Montserrat", "Inter", system-ui, sans-serif;
  --ch-font-ar: "Noto Naskh Arabic", serif;
  --ch-transition-fast: 220ms ease;
  --ch-transition-med: 340ms ease;
  --ch-home-control-photo-height: 810px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ch-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ch-ink);
  background: var(--ch-limestone);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ch-font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--ch-deepsea);
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.55rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
}

p {
  max-width: 72ch;
}

small,
.ch-micro {
  font-family: var(--ch-font-nav);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  text-decoration-color: var(--ch-copper);
}

.ct-container,
.wp-site-blocks > *:not(.alignfull),
.entry-content > *:not(.alignfull) {
  max-width: var(--ch-maxw);
  margin-inline: auto;
}

.entry-content > * {
  margin-block: var(--ch-space-24);
}

.entry-content > * + * {
  margin-block-start: var(--ch-space-32);
}

.entry-content > .alignwide {
  max-width: var(--ch-maxw);
}

.entry-content > .alignfull {
  max-width: 100%;
}

.ch-section {
  padding-block: clamp(2rem, 5vw, 4.5rem);
}

.ch-landing-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}

@media (min-width: 1024px) {
  .ch-landing-split {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    align-items: end;
  }
}

[data-ch-hero],
.home .entry-content > .wp-block-cover:first-child {
  position: relative;
  min-height: clamp(70svh, 88svh, 100svh);
}

[data-ch-hero]::after,
.home .entry-content > .wp-block-cover:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--ch-deepsea) 52%, transparent) 0%,
    color-mix(in srgb, var(--ch-deepsea) 8%, transparent) 52%,
    color-mix(in srgb, var(--ch-deepsea) 40%, transparent) 100%
  );
}

[data-ch-hero] > *,
.home .entry-content > .wp-block-cover:first-child > * {
  position: relative;
  z-index: 1;
}

.ch-home-hero .wp-block-cover__inner-container {
  width: 100%;
}

.ch-home-hero__content {
  color: var(--ch-white);
}

.ch-home-hero__content h1,
.ch-home-hero__content h2,
.ch-home-hero__content h3 {
  color: inherit;
}

.ch-home-hero__content p {
  max-width: 56ch;
}

.ch-home-split {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--ch-sand) 24%, var(--ch-limestone)) 0%,
    color-mix(in srgb, var(--ch-white) 66%, var(--ch-limestone)) 100%
  );
}

.ch-home-split .wp-block-columns {
  margin-block: 0;
}

.ch-home-split__list {
  margin: 0;
  padding-inline-start: 1.2em;
}

.ch-home-split__list li {
  margin-block: var(--ch-space-8);
}

.ch-home-split__image {
  margin: 0;
}

.ch-home-split__image img {
  width: 100%;
  min-height: clamp(340px, 50vw, 620px);
  object-fit: cover;
  border-radius: var(--ch-radius);
  box-shadow: 0 20px 44px color-mix(in srgb, var(--ch-ink) 16%, transparent);
}

.ch-home-cta-band {
  color: var(--ch-white);
}

.ch-home-cta-band h2,
.ch-home-cta-band h3,
.ch-home-cta-band p {
  color: inherit;
}

.ch-home-cta-band .wp-block-buttons {
  width: 100%;
}

.ch-auto-section {
  padding-block: clamp(2.2rem, 5vw, 4.8rem);
}

.ch-auto-shell {
  max-width: var(--ch-maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.ch-auto-eyebrow {
  margin: 0 0 var(--ch-space-12);
  color: var(--ch-copper);
  letter-spacing: 0.16em;
}

.ch-auto-heading {
  margin: 0 0 var(--ch-space-16);
}

.ch-auto-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ch-space-12);
  margin-top: var(--ch-space-24);
}

.ch-auto-list {
  margin: var(--ch-space-16) 0;
  padding-inline-start: 1.25em;
}

.ch-auto-list li {
  margin-block: var(--ch-space-8);
}

.ch-auto-hero {
  position: relative;
  min-height: clamp(62svh, 78svh, 86svh);
  display: flex;
  align-items: flex-end;
  color: color-mix(in srgb, var(--ch-deepsea) 88%, var(--ch-white));
  background: linear-gradient(
    180deg,
    var(--ch-limestone-elevated) 0%,
    var(--ch-limestone) 66%,
    color-mix(in srgb, var(--ch-sand) 46%, var(--ch-limestone)) 100%
  );
  overflow: hidden;
}

.ch-auto-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ch-auto-hero-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  filter: saturate(0.85) contrast(0.95);
}

.ch-auto-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--ch-limestone-elevated) 88%, transparent) 0%,
    color-mix(in srgb, var(--ch-limestone) 62%, transparent) 54%,
    color-mix(in srgb, var(--ch-sand) 34%, transparent) 100%
  );
}

.ch-auto-hero .ch-auto-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.ch-auto-hero h1,
.ch-auto-hero h2,
.ch-auto-hero h3,
.ch-auto-hero p {
  color: inherit;
}

.ch-auto-hero .ch-auto-heading {
  color: var(--ch-deepsea);
}

.ch-auto-hero p {
  color: color-mix(in srgb, var(--ch-deepsea) 76%, var(--ch-white));
}

.ch-auto-split {
  background: color-mix(in srgb, var(--ch-white) 62%, var(--ch-limestone));
}

.ch-auto-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: end;
}

.ch-auto-split__media img {
  width: 100%;
  min-height: clamp(320px, 45vw, 580px);
  object-fit: cover;
  border-radius: var(--ch-radius);
  box-shadow: 0 20px 42px color-mix(in srgb, var(--ch-ink) 16%, transparent);
}

.ch-auto-rich {
  background: color-mix(in srgb, var(--ch-limestone) 74%, var(--ch-white));
}

.ch-auto-cta {
  color: color-mix(in srgb, var(--ch-deepsea) 84%, var(--ch-white));
  background: linear-gradient(
    135deg,
    var(--ch-limestone-elevated) 0%,
    var(--ch-limestone) 58%,
    color-mix(in srgb, var(--ch-sand) 46%, var(--ch-limestone)) 100%
  );
  border-top: 1px solid var(--ch-border-soft);
  border-bottom: 1px solid var(--ch-border-soft);
}

.ch-auto-cta .ch-auto-heading,
.ch-auto-cta p {
  color: inherit;
}

.ch-auto-cta .ch-auto-heading {
  color: var(--ch-deepsea);
}

.home .hero-section {
  display: none;
}

/* Brand-inspired home layout. */
.entry-content > .ch-phx {
  margin-block: 0;
}

.entry-content > .ch-phx + .ch-phx {
  margin-block-start: 0;
}

.ch-phx__wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 640px) {
  .ch-phx__wrap {
    padding: 0 3.125%;
  }
}

.ch-phx__inner {
  max-width: 1920px;
  margin: 0 auto;
}

body.home #header,
body.home header.ch-header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Remove Blocksy page top spacing on home so hero starts at the very top. */
body.home #main-container,
body.home #main,
body.home .site-main,
body.home .ct-container-full[data-vertical-spacing] {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.home .ct-container-full[data-vertical-spacing] > article {
  margin-top: 0 !important;
}

body.admin-bar.home header.ch-header-shell {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.home header.ch-header-shell {
    top: 46px;
  }
}

.ch-phx-hero {
  position: relative;
  background-color: var(--ch-deepsea);
}

.ch-phx-hero .slider--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .ch-phx-hero .slider--desktop {
    display: block;
  }

  .ch-phx-hero .slider--mobile {
    display: none;
  }
}

.ch-phx-hero .splide__track {
  overflow: hidden;
}

.ch-phx-hero .splide__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-phx-hero .splide__slide {
  position: relative;
  flex: 0 0 100%;
}

.ch-phx-hero .splide__slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 33%;
  pointer-events: none;
  background: linear-gradient(0deg, color-mix(in srgb, var(--ch-deepsea) 56%, transparent), transparent);
}

@media (max-width: 639px) {
  .ch-phx-hero .splide__slide::after {
    height: 66%;
    background: linear-gradient(0deg, color-mix(in srgb, var(--ch-deepsea) 42%, transparent), transparent);
  }
}

.ch-phx-hero .slider__item {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  overflow: hidden;
}

.ch-phx-hero .slider__video,
.ch-phx-hero .slider__video-overlay,
.ch-phx-hero .slider__video-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ch-phx-hero .slider__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ch-phx-hero .slider__video-overlay {
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--ch-transition-med);
}

.ch-phx-hero .slider__video-overlay.is-hidden {
  opacity: 0;
}

.ch-reduced-motion .ch-phx-hero .slider__video-overlay {
  transition: none;
}

.ch-phx-hero .slider__video-overlay img {
  object-fit: cover;
  max-width: none;
}

.ch-phx-hero .slider__caption {
  position: absolute;
  z-index: 10;
  bottom: 20%;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--ch-white);
}

@media (max-width: 639px) {
  .ch-phx-hero .slider__caption {
    bottom: 15%;
  }
}

.ch-phx-hero .slider__caption-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}

@media (max-width: 639px) {
  .ch-phx-hero .slider__caption-inner {
    padding: 0 10px;
  }
}

.ch-phx-hero .slider__caption-heading {
  font-family: var(--ch-font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.55rem);
  line-height: 1.08;
  font-weight: 500;
  order: 2;
}

.ch-phx-hero .slider__caption-subheading {
  font-family: var(--ch-font-display);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.25;
  font-weight: 600;
  font-style: italic;
  opacity: 0.92;
  order: 1;
}

.ch-phx.intro {
  text-align: center;
  padding-top: 57px;
  padding-bottom: 71px;
  background: color-mix(in srgb, var(--ch-limestone-elevated) 76%, var(--ch-white));
}

@media (min-width: 640px) {
  .ch-phx.intro {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.ch-phx.intro .intro__content {
  display: flex;
  flex-direction: column;
  color: var(--ch-deepsea);
}

.ch-phx.intro .intro__content img {
  width: 60px;
  height: auto;
  margin: 0 auto 32px;
  order: 1;
}

.ch-phx.intro .intro__content h2 {
  order: 2;
  margin-bottom: 4px;
  font-family: var(--ch-font-display);
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
}

.ch-phx.intro .intro__content h1 {
  order: 3;
  margin-bottom: 32px;
}

.ch-phx.intro .intro__content p {
  order: 4;
  max-width: 430px;
  width: 100%;
  margin: 0 auto 12px;
  color: color-mix(in srgb, var(--ch-deepsea) 76%, var(--ch-white));
}

.ch-phx.intro .intro__content p:last-child {
  margin-bottom: 0;
}

.ch-phx .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
}

.ch-phx .links.links--center {
  justify-content: center;
}

.ch-phx .links__link {
  display: flex;
}

.ch-phx .button {
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 9.5px 40px 9.5px 20px;
}

.ch-phx .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.9;
}

.ch-phx .button.button--white {
  color: var(--ch-white);
  border-color: var(--ch-white);
  background: color-mix(in srgb, var(--ch-white) 10%, transparent);
}

.ch-phx .button.button--white:hover,
.ch-phx .button.button--white:focus-visible {
  color: var(--ch-deepsea);
  background: var(--ch-white);
  border-color: var(--ch-white);
}

.ch-phx .button.button--primary {
  color: var(--ch-deepsea);
  border-color: var(--ch-deepsea);
  background-color: transparent;
  transition: background-color var(--ch-transition-med), border-color var(--ch-transition-med), color var(--ch-transition-med);
}

.ch-phx .button.button--primary:hover,
.ch-phx .button.button--primary:focus-visible {
  color: var(--ch-white);
  background-color: var(--ch-deepsea);
  border-color: var(--ch-deepsea);
}

.ch-phx.landing {
  border-top: solid 4px color-mix(in srgb, var(--ch-deepsea) 52%, var(--ch-white));
}

.ch-phx.landing--split {
  background: color-mix(in srgb, var(--ch-limestone-elevated) 72%, var(--ch-sand));
}

.ch-phx.landing .landing__inner {
  width: 100%;
}

body.home .ch-phx.landing--home-control-photo,
body.home .ch-phx.landing--home-control-photo .landing__inner,
body.home .ch-phx.landing--home-control-photo .landing__item {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  body.home .ch-phx.landing--home-control-photo .landing__item {
    height: var(--ch-home-control-photo-height);
    min-height: var(--ch-home-control-photo-height);
  }
}

body.home .ch-phx.landing--home-control-photo .landing__slider,
body.home .ch-phx.landing--home-control-photo .splide,
body.home .ch-phx.landing--home-control-photo .splide__track,
body.home .ch-phx.landing--home-control-photo .splide__list,
body.home .ch-phx.landing--home-control-photo .splide__slide,
body.home .ch-phx.landing--home-control-photo .landing__slider-image,
body.home .ch-phx.landing--home-control-photo .landing__slider-picture,
body.home .ch-phx.landing--home-control-photo .landing__slider-picture img {
  width: 100%;
  height: 100%;
}

body.home .ch-phx.landing--home-control-photo .landing__slider-picture,
body.home .ch-phx.landing--home-control-photo .landing__slider-picture img {
  display: block;
}

body.home .ch-phx.landing--home-control-photo .landing__slider-picture img {
  object-fit: cover;
  object-position: center;
}

.ch-phx.landing .landing__item {
  display: grid;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.ch-phx.landing .landing__item.landing-split {
  display: flex;
  height: 100%;
}

@media (max-width: 639px) {
  .ch-phx.landing .landing__item.landing-split {
    flex-direction: column;
  }
}

@media (min-width: 640px) {
  .ch-phx.landing .landing__item.landing-split > div {
    width: 50%;
  }
}

.ch-phx.landing .landing__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ch-phx.landing .landing__content {
  padding: 25px 20px 20px;
  background: color-mix(in srgb, var(--ch-deepsea) 46%, transparent);
  z-index: 1;
  color: var(--ch-white);
}

@media (min-width: 1024px) {
  .ch-phx.landing .landing__content {
    padding: 40px 68px 40px 40px;
  }
}

.ch-phx.landing--split .landing__content {
  background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--ch-limestone) 96%, transparent) 0%,
      color-mix(in srgb, var(--ch-limestone) 86%, transparent) 60%,
      color-mix(in srgb, var(--ch-sand) 74%, transparent) 100%
    ),
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--ch-deepsea) 8%, transparent), transparent 55%);
  color: var(--ch-deepsea);
  display: flex;
}

.ch-phx.landing--split .landing__content-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 15px;
}

.ch-phx.landing .landing__content h2,
.ch-phx.landing .landing__content h3,
.ch-phx.landing .landing__content p {
  color: inherit;
}

.ch-phx.landing .landing__content h3 {
  font-family: var(--ch-font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 4px;
  order: 1;
}

.ch-phx.landing .landing__content h2 {
  font-family: var(--ch-font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 12px;
  order: 2;
}

.ch-phx.landing .landing__content p {
  font-family: var(--ch-font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: 0.9;
  order: 3;
}

@media (min-width: 640px) {
  .ch-phx.landing .landing__content p {
    padding-right: 5%;
  }
}

@media (min-width: 1024px) {
  .ch-phx.landing .landing__content p {
    padding-right: 20%;
  }
}

.ch-phx.landing .landing__content-inner-wrap {
  display: flex;
  flex-direction: column;
}

.ch-phx.landing .landing__content-links-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 639px) {
  .ch-phx.landing .landing__content-links-wrap {
    flex-wrap: wrap;
  }
}

.ch-phx.landing .landing__content-links-wrap .splide__nav {
  display: flex;
  padding-top: 32px;
  align-items: flex-end;
}

@media (max-width: 639px) {
  .ch-phx.landing .landing__content-links-wrap .splide__nav {
    width: 100%;
  }
}

.ch-phx.landing .landing__content-links-wrap .splide__nav-arrows {
  display: flex;
  gap: 10px;
}

.ch-phx.landing .landing__content-links-wrap .splide__nav-arrows button {
  color: currentColor;
}

.ch-phx.landing .landing__content-links-wrap .splide__nav-arrows button svg {
  width: 28px;
  height: 28px;
}

.ch-phx.landing--overlay .landing__content-links-wrap .splide__nav-arrows button {
  color: var(--ch-white);
}

.ch-phx.landing--split .landing__content-links-wrap .splide__nav-arrows button {
  color: var(--ch-deepsea);
}

.ch-phx.landing .landing__slider-image {
  height: 100%;
}

.ch-phx.landing .splide__track {
  overflow: hidden;
  height: 100%;
}

.ch-phx.landing .splide__list {
  display: flex;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-phx.landing .splide__slide {
  flex: 0 0 100%;
  height: 100%;
}

@media (min-width: 640px) {
  .ch-phx.landing .landing__item--left {
    grid-template-columns: 50% 50%;
  }
}

@media (min-width: 1024px) {
  .ch-phx.landing .landing__item--left {
    grid-template-columns: 40% 60%;
  }
}

.ch-phx.landing .landing__item--left .landing__slider {
  grid-area: 1 / 1 / 3 / 3;
}

.ch-phx.landing .landing__item--left .landing__content {
  grid-area: 2 / 1 / 3 / 3;
}

@media (min-width: 640px) {
  .ch-phx.landing .landing__item--left .landing__content {
    grid-area: 2 / 1 / 3 / 2;
  }
}

.ch-phx.landing .landing__item.landing-split .splide,
.ch-phx.landing .landing__item.landing-split .splide__track,
.ch-phx.landing .landing__item.landing-split .landing__slider-image {
  height: 100%;
}

.ch-phx.landing .landing__item--left.landing-split .landing__content {
  order: 1;
}

@media (max-width: 639px) {
  .ch-phx.landing .landing__item--left.landing-split .landing__content {
    order: 2;
  }
}

.ch-phx.landing .landing__item--left.landing-split .landing__slider {
  order: 2;
}

@media (max-width: 639px) {
  .ch-phx.landing .landing__item--left.landing-split .landing__slider {
    order: 1;
  }
}

.ch-phx.landing--split .landing__content .links .button--white {
  color: var(--ch-deepsea);
  border-color: var(--ch-deepsea);
  background: transparent;
}

.ch-phx.landing--split .landing__content .links .button--white:hover,
.ch-phx.landing--split .landing__content .links .button--white:focus-visible {
  color: var(--ch-white);
  background: var(--ch-deepsea);
  border-color: var(--ch-deepsea);
}

.ch-auto-form {
  padding-top: var(--ch-space-24);
}

.wp-element-button,
.wp-block-button__link,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wc-block-components-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ch-space-8);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  font-family: var(--ch-font-nav);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color var(--ch-transition-fast), color var(--ch-transition-fast), border-color var(--ch-transition-fast), transform var(--ch-transition-fast);
}

.wp-element-button,
.wp-block-button__link,
.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  color: var(--ch-white);
  background: var(--ch-deepsea);
  border-color: var(--ch-deepsea);
}

.wp-element-button:hover,
.wp-block-button__link:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: var(--ch-deepsea);
  background: transparent;
  border-color: var(--ch-deepsea);
}

.button:hover,
.button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: var(--ch-white);
  background: var(--ch-deepsea);
  border-color: var(--ch-deepsea);
}

/* Custom global nav + full-screen drawer. */
#header,
#offcanvas {
  display: none !important;
}

.ch-global-nav {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1400;
  width: 100%;
  pointer-events: none;
}

.ch-global-nav__bar {
  pointer-events: auto;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
  padding-block: 0;
  padding-inline: 42px;
  min-height: 72px;
  background: transparent;
  color: var(--ch-white);
}

body:not(.home) .ch-global-nav__bar {
  background: color-mix(in srgb, var(--ch-white) 95%, var(--ch-limestone));
  color: var(--ch-deepsea);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--ch-ink) 10%, transparent);
  border-bottom: 1px solid var(--ch-border-soft);
}

.ch-global-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  line-height: 0;
}

.ch-global-nav__menu-icon {
  display: block;
}

.ch-global-nav__quick-link {
  font-family: var(--ch-font-nav);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: inherit;
  text-decoration: none;
}

.ch-global-nav__quick-link:hover,
.ch-global-nav__quick-link:focus-visible {
  opacity: 0.82;
}

.ch-global-nav__cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0 0.95rem;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: var(--ch-font-nav);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  text-decoration: none;
}

.ch-global-nav__cta-caret {
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-0.01em);
}

.ch-global-nav__cta:hover,
.ch-global-nav__cta:focus-visible {
  opacity: 0.85;
}

.ch-global-nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 1450;
  display: grid;
  grid-template-columns: minmax(340px, 42vw) minmax(0, 58vw);
  min-height: 100vh;
  min-height: 100dvh;
  background: color-mix(in srgb, var(--ch-deepsea) 85%, var(--ch-ink));
  transform: translate3d(-100%, 0, 0);
  transition: transform 360ms ease;
  pointer-events: auto;
}

.ch-global-nav.is-open .ch-global-nav__drawer {
  transform: translate3d(0, 0, 0);
}

.ch-global-nav__drawer-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1.25rem, 2vw, 2rem);
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  background: color-mix(in srgb, var(--ch-white) 95%, var(--ch-limestone));
  padding: clamp(1.5rem, 3.6vw, 3rem);
  padding-top: clamp(4.5rem, 7vw, 6rem);
  overflow: hidden;
}

.ch-global-nav__close {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  left: clamp(1rem, 2.4vw, 2rem);
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--ch-deepsea);
  background: transparent;
  color: var(--ch-deepsea);
}

.ch-global-nav__drawer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-global-nav__drawer-links {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ch-global-nav__drawer-links li {
  margin: 0 0 0.85rem;
}

.ch-global-nav__drawer-links a {
  font-family: var(--ch-font-display);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.15;
  color: var(--ch-deepsea);
  text-decoration: none;
}

.ch-global-nav__drawer-links a:hover,
.ch-global-nav__drawer-links a:focus-visible {
  color: var(--ch-copper);
}

.ch-global-nav__drawer-right {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}

.ch-global-nav__drawer-right img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

body.ch-nav-drawer-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .ch-global-nav__drawer {
    grid-template-columns: minmax(0, 1fr);
  }

  .ch-global-nav__drawer-right {
    display: none;
  }
}

@media (min-width: 921px) {
  .ch-global-nav__bar {
    height: 115px;
    padding-block: 0;
    padding-inline: 42px;
  }
}

body.admin-bar .ch-global-nav__bar {
  margin-top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .ch-global-nav__bar {
    margin-top: 46px;
  }
}

header.ch-header-shell {
  position: sticky;
  top: 0;
  z-index: 1100;
  transition: background-color var(--ch-transition-med), box-shadow var(--ch-transition-med), padding var(--ch-transition-med), transform var(--ch-transition-med);
  border-bottom: 1px solid transparent;
}

header.ch-header-shell.ch-header--hidden {
  transform: translate3d(0, -110%, 0);
}

header.ch-header-shell.ch-header--solid,
header.ch-header-shell:not(.ch-header--transparent) {
  background: var(--ch-white);
  border-bottom-color: var(--ch-border-soft);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--ch-ink) 8%, transparent);
}

header.ch-header-shell.ch-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  color: var(--ch-white);
  --theme-text-color: var(--ch-white);
  --theme-headings-color: var(--ch-white);
  --theme-link-initial-color: var(--ch-white);
  --theme-link-hover-color: color-mix(in srgb, var(--ch-white) 72%, transparent);
  --theme-palette-color-4: var(--ch-white);
  --theme-icon-color: var(--ch-white);
}

header.ch-header-shell.ch-header--transparent a,
header.ch-header-shell.ch-header--transparent button,
header.ch-header-shell.ch-header--transparent .ct-header-account a {
  color: var(--ch-white);
}

header.ch-header-shell.ch-header--transparent .ct-icon {
  fill: currentColor;
}

body.home #header:not(.ch-header--solid),
body.home header.ch-header-shell:not(.ch-header--solid) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  color: var(--ch-white);
  --theme-text-color: var(--ch-white);
  --theme-headings-color: var(--ch-white);
  --theme-link-initial-color: var(--ch-white);
  --theme-link-hover-color: color-mix(in srgb, var(--ch-white) 72%, transparent);
  --theme-palette-color-4: var(--ch-white);
  --theme-icon-color: var(--ch-white);
}

body.home #header:not(.ch-header--solid) a,
body.home #header:not(.ch-header--solid) button,
body.home #header:not(.ch-header--solid) .ct-header-account a,
body.home header.ch-header-shell:not(.ch-header--solid) a,
body.home header.ch-header-shell:not(.ch-header--solid) button,
body.home header.ch-header-shell:not(.ch-header--solid) .ct-header-account a {
  color: var(--ch-white);
}

body.home #header:not(.ch-header--solid) .ct-icon,
body.home header.ch-header-shell:not(.ch-header--solid) .ct-icon {
  fill: currentColor;
}

body.home #header:not(.ch-header--solid) [data-row*="middle"],
header.ch-header-shell.ch-header--transparent [data-row*="middle"] {
  background-color: transparent !important;
}

body.home #header.ch-header--solid [data-row*="middle"],
body.home header.ch-header-shell.ch-header--solid [data-row*="middle"],
body.home header.ch-header-shell:not(.ch-header--transparent) [data-row*="middle"] {
  background-color: var(--ch-white) !important;
}

header.ch-header-shell.ch-header--compact {
  box-shadow: 0 12px 28px color-mix(in srgb, var(--ch-ink) 12%, transparent);
}

header.ch-header-shell .menu > li > a,
header.ch-header-shell nav a {
  font-family: var(--ch-font-nav);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

header.ch-header-shell .menu > li > a {
  position: relative;
}

header.ch-header-shell .menu > li > a::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width var(--ch-transition-med);
}

header.ch-header-shell .menu > li > a:hover::after,
header.ch-header-shell .menu > li > a:focus-visible::after {
  width: 100%;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-block-end: var(--ch-space-24);
}

.woocommerce .woocommerce-ordering select {
  min-width: 220px;
}

.woocommerce span.onsale {
  min-height: 0;
  min-width: 0;
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ch-white);
  background: var(--ch-copper);
}

.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  gap: var(--ch-space-12);
  padding: var(--ch-space-16);
  border: 1px solid var(--ch-border-soft);
  border-radius: var(--ch-radius);
  background: color-mix(in srgb, var(--ch-white) 72%, var(--ch-limestone));
  transition: transform var(--ch-transition-fast), box-shadow var(--ch-transition-fast), border-color var(--ch-transition-fast);
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--ch-ink) 12%, transparent);
  border-color: color-mix(in srgb, var(--ch-copper) 40%, var(--ch-border-soft));
}

.woocommerce ul.products li.product a img {
  width: 100%;
  border-radius: calc(var(--ch-radius) - 2px);
  transition: transform var(--ch-transition-med);
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.015);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--ch-font-display);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ch-deepsea);
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--ch-font-display);
  font-size: 1.24rem;
  color: var(--ch-deepsea);
}

.woocommerce ul.products li.product .price ins,
.woocommerce div.product .price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .price del,
.woocommerce div.product .price del {
  opacity: 0.58;
  margin-inline-end: 0.35em;
}

.woocommerce ul.products li.product .button {
  inline-size: fit-content;
  margin-block-start: auto;
}

.single-product .woocommerce div.product {
  margin-block-start: var(--ch-space-24);
}

@media (min-width: 992px) {
  .single-product .woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(1.6rem, 4vw, 4rem);
    align-items: start;
  }

  .single-product .woocommerce div.product .images,
  .single-product .woocommerce div.product .summary {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
  }

  .single-product .woocommerce div.product .images {
    position: sticky;
    top: 118px;
  }
}

.single-product .woocommerce div.product .product_title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-block-end: var(--ch-space-12);
}

.single-product .woocommerce div.product .summary > * {
  margin-block-end: var(--ch-space-16);
}

.single-product .woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: var(--ch-space-12);
  flex-wrap: wrap;
}

.single-product .woocommerce div.product form.cart .quantity .qty {
  min-height: 44px;
  inline-size: 88px;
  text-align: center;
}

.single-product .woocommerce-product-details__short-description p {
  color: color-mix(in srgb, var(--ch-ink) 78%, var(--ch-white));
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border: 0;
  margin: 0 0 var(--ch-space-24);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 999px;
  border: 1px solid var(--ch-border-soft);
  margin: 0 var(--ch-space-8) var(--ch-space-8) 0;
  background: color-mix(in srgb, var(--ch-white) 78%, var(--ch-limestone));
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-color: var(--ch-deepsea);
  background: var(--ch-deepsea);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--ch-font-nav);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ch-deepsea);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ch-white);
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: var(--ch-space-24);
  border: 1px solid var(--ch-border-soft);
  border-radius: var(--ch-radius);
  background: color-mix(in srgb, var(--ch-white) 80%, var(--ch-limestone));
}

.woocommerce .related.products {
  margin-block-start: clamp(2.5rem, 5vw, 4rem);
}

.woocommerce .related.products > h2,
.woocommerce .up-sells > h2 {
  margin-block-end: var(--ch-space-24);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single,
input[type="email"],
input[type="text"],
input[type="tel"],
textarea,
select {
  border: 1px solid var(--ch-border-soft);
  border-radius: var(--ch-radius);
  background: color-mix(in srgb, var(--ch-white) 82%, var(--ch-limestone));
  padding: 0.72rem 0.85rem;
}

.woocommerce .select2-container .select2-selection--single {
  min-height: 46px;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 30px;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 9px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top: 0;
  border-inline-start: 4px solid var(--ch-copper);
  border-radius: var(--ch-radius);
  background: color-mix(in srgb, var(--ch-white) 84%, var(--ch-limestone));
  color: var(--ch-ink);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  color: var(--ch-copper);
}

.woocommerce table.shop_table {
  border: 1px solid var(--ch-border-soft);
  border-radius: var(--ch-radius);
  overflow: hidden;
  background: color-mix(in srgb, var(--ch-white) 80%, var(--ch-limestone));
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 0.88rem 1rem;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--ch-border-soft);
  border-radius: var(--ch-radius);
  background: color-mix(in srgb, var(--ch-white) 82%, var(--ch-limestone));
}

.woocommerce-checkout #order_review_heading {
  margin-block: var(--ch-space-24) var(--ch-space-12);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
  inline-size: 100%;
  justify-content: center;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--ch-border-soft);
  border-radius: var(--ch-radius);
  overflow: hidden;
  background: color-mix(in srgb, var(--ch-white) 84%, var(--ch-limestone));
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin: 0;
  border-bottom: 1px solid var(--ch-border-soft);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.78rem 1rem;
  font-family: var(--ch-font-nav);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--ch-white);
  background: var(--ch-deepsea);
}

.woocommerce-account .woocommerce-MyAccount-content {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--ch-border-soft);
  border-radius: var(--ch-radius);
  background: color-mix(in srgb, var(--ch-white) 82%, var(--ch-limestone));
}

[data-ch-reveal],
.ch-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 700ms ease;
}

[data-ch-reveal].is-visible,
.ch-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.ch-reduced-motion *,
html.ch-reduced-motion *::before,
html.ch-reduced-motion *::after {
  animation-duration: 1ms !important;
  transition-duration: 1ms !important;
  scroll-behavior: auto !important;
}

html[dir="rtl"] body {
  font-family: var(--ch-font-ar);
}

html[dir="rtl"] header.ch-header-shell .menu > li > a::after {
  inset-inline-start: 50%;
}

@media (max-width: 767px) {
  .entry-content > * {
    margin-block: var(--ch-space-16);
  }

  .entry-content > * + * {
    margin-block-start: var(--ch-space-24);
  }

  .woocommerce .products li.product {
    padding: var(--ch-space-12);
  }

  .woocommerce ul.products li.product .button {
    inline-size: 100%;
    justify-content: center;
  }

  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td {
    padding: 0.7rem 0.6rem;
  }

  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce-checkout #order_review {
    padding: var(--ch-space-16);
  }

  .ch-home-hero {
    min-height: 82svh !important;
  }

  .ch-home-cta-band .wp-block-buttons {
    justify-content: flex-start;
  }

  .ch-auto-hero {
    min-height: 72svh;
  }

  .ch-auto-buttons {
    gap: var(--ch-space-8);
  }
}

@media (min-width: 1024px) {
  .ch-auto-split__inner {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  }
}
