.om-menu,
.om-menu * {
  box-sizing: border-box;
}
.om-menu {
  position: relative;
  width: max-content;
  margin-left: auto;
  z-index: 30;
}
.om-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 48px;
  margin: -7px -8px;
  padding: 7px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  list-style: none;
}
.om-trigger::-webkit-details-marker {
  display: none;
}
.om-mark {
  position: relative;
  display: block;
  width: 64px;
  height: 34px;
  overflow: visible;
  pointer-events: none;
  transform-origin: 50% 75%;
}
.om-mark img {
  position: absolute;
  display: block;
  width: 90px;
  height: 90px;
  max-width: none;
  left: -13px;
  top: -28px;
}
@media (hover: hover) {
  .om-trigger:hover .om-mark img {
    filter: drop-shadow(0 0 6px rgb(225 215 35 / 48%));
  }
  .om-panel a:hover,
  .om-panel button:hover {
    text-shadow: 0 0 10px rgb(225 215 35 / 60%);
  }
}
.om-menu[open] .om-mark {
  animation: om-diffuse 0.25s both;
}
.om-panel {
  position: absolute;
  top: 100%;
  right: -8px;
  width: min(160px, calc(100vw - 40px));
  padding: 6px 8px 8px;
}
.om-panel-inner {
  max-height: calc(100dvh - 100px);
  overflow-y: auto;
  padding: 4px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 3px 12px rgb(0 0 0 / 4%);
}
.om-panel a,
.om-panel button {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 26px;
  padding: 3px 8px;
  border-radius: 0;
  color: #111;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}
.om-panel button {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.om-panel .om-section {
  font-weight: 600;
}
.om-categories {
  display: none;
  margin: 0 0 4px 10px;
  padding: 0 0 3px;
  border-left: 1px solid #e5e5e5;
}
.om-archive[data-open="true"] .om-categories {
  display: block;
}
.om-categories a,
.om-categories .om-soon {
  font-size: 13px;
}
.om-soon {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 24px;
  padding: 2px 8px;
  color: #737373;
}
.om-soon small {
  font-size: 10px;
  white-space: nowrap;
}
.om-trigger:focus-visible,
.om-panel a:focus-visible,
.om-panel button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}
.om-info {
  max-width: 680px;
  padding: 20px 0 64px;
}
.om-info h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.om-info h2 {
  margin: 36px 0 12px;
  font-size: 22px;
  font-weight: 400;
}
.om-info p {
  font-size: 16px;
  line-height: 1.7;
}
.om-eyebrow {
  margin: 0 0 20px;
  color: #666;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.om-placeholder {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 0;
}
.om-placeholder p {
  margin: 8px 0 0;
  color: #666;
  font-size: 14px;
}
.om-info a {
  color: inherit;
  text-underline-offset: 4px;
}
.om-archive-list {
  padding: 0;
  list-style: none;
}
.om-archive-list li {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}
.om-archive-list span {
  color: #777;
  font-size: 13px;
}
/* Current liquid treatment; duration is independent of instant menu opening. */
.om-filter {
  position: absolute;
  pointer-events: none;
}
.om-menu[open] .om-mark {
  filter: url(#om-wave);
}
@keyframes om-diffuse {
  0% {
    filter: url(#om-wave) drop-shadow(0 0 2px rgb(225 215 35 / 15%));
    transform: none;
    animation-timing-function: cubic-bezier(0.2, 0.6, 0.3, 1);
  }
  30% {
    transform: translateY(1px) scale(1.075, 0.94) skewX(3deg);
    filter: url(#om-wave) drop-shadow(0 0 7px rgb(225 215 35 / 48%));
  }
  68% {
    transform: translateY(-1px) scale(0.975, 1.035) skewX(-1.5deg);
    filter: url(#om-wave) drop-shadow(0 0 4px rgb(225 215 35 / 28%));
  }
  100% {
    transform: none;
    filter: url(#om-wave) drop-shadow(0 0 0 rgb(225 215 35 / 0%));
  }
}
@media (prefers-reduced-motion: reduce) {
  .om-menu[open] .om-mark,
  .om-panel-inner {
    animation: none;
    filter: none;
  }
}

.om-account-links {
  margin-top: 3px;
  padding-top: 3px;
  border-top: 1px solid #ddd;
}
.om-account-choice {
  display: flex;
  align-items: center;
}
body:has(.om-menu) > .accountNav {
  margin-right: 96px;
  max-width: calc(100% - 224px);
}

@media (pointer: coarse) {
  .om-panel a,
  .om-panel button {
    min-height: 44px;
  }
}

.om-site-header {
  width: min(1200px, 100%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px 40px;
  display: flex;
  justify-content: flex-end;
}
.om-site-footer {
  width: min(1200px, 100%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 28px;
  color: #666;
  font-size: 12px;
}
.om-panel-inner {
  overscroll-behavior: contain;
}
main.accountPage {
  width: min(1200px, 100%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 28px;
}
main.accountPage.accountHub {
  padding-top: 20px;
}
.accountPage > h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
}
.accountPage > p {
  max-width: 680px;
}
.accountAuthPage {
  align-items: flex-start;
}
.accountAuthPage > h1 {
  width: auto;
  max-width: none;
  text-align: left;
}
.accountAuthPage .cl-rootBox,
.accountAuthPage .cl-cardBox {
  margin-inline: 0;
}
.accountPage .cl-card {
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
}
.om-form {
  max-width: 400px;
  margin: 28px 0;
}
.om-form label {
  display: block;
  margin: 0 0 16px;
  font-size: 14px;
}
.om-form input {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 6px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fafafa;
  font: inherit;
}
.om-form button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #eee;
  color: #777;
  font: inherit;
}
.om-preview-note {
  color: #666;
  font-size: 14px;
}
.om-empty {
  max-width: 680px;
  border: 1px solid #ddd;
  padding: 28px;
  margin: 28px 0;
}
.om-empty h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 400;
}
.om-empty p {
  color: #666;
  margin: 0;
}
@media (max-width: 1000px) {
  .om-site-header {
    padding-inline: 28px;
  }
  .om-site-footer,
  main.accountPage {
    padding-inline: 28px;
  }
}
@media (max-width: 700px) {
  .om-site-header {
    padding: 24px 20px 32px;
  }
  .om-site-footer,
  main.accountPage {
    padding-inline: 20px;
  }
}

.om-foundation {
  margin: 0;
  background: #fff;
  color: #111;
  font:
    1rem/1.6 Arial,
    Helvetica,
    sans-serif;
}
.om-foundation * {
  box-sizing: border-box;
}
.om-foundation .page {
  width: min(1200px, 100%);
  margin: auto;
}
.om-foundation .om-info {
  margin: 0 40px;
}
.om-foundation .om-updates {
  margin-top: 40px;
}
.om-foundation #signup {
  max-width: 400px;
}
.om-foundation #signup label {
  display: block;
  font-size: 14px;
}
.om-foundation #signup input {
  display: block;
  width: 100%;
  min-height: 44px;
  border: 1px solid #ddd;
  padding: 10px;
  margin: 6px 0 14px;
  font: inherit;
}
.om-foundation #signup button {
  min-height: 44px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  padding: 8px 18px;
  font: inherit;
  cursor: pointer;
}
.om-foundation #signup button:disabled {
  opacity: 0.5;
  cursor: default;
}
.om-foundation a {
  color: inherit;
  text-underline-offset: 4px;
}
@media (max-width: 1000px) {
  .om-foundation .om-info {
    margin-inline: 28px;
  }
}
@media (max-width: 700px) {
  .om-foundation .om-info {
    margin-inline: 20px;
  }
}

/* Desktop flyout leaves the primary links in place as categories collapse. */
@media (min-width: 700px) and (min-height: 450px) and (hover: hover) {
  .om-panel-inner {
    overflow: visible;
    max-height: none;
  }
  .om-archive {
    position: relative;
  }
  .om-categories {
    position: absolute;
    right: calc(100% + 7px);
    top: 0;
    width: 156px;
    margin: 0;
    padding: 4px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 3px 12px rgb(0 0 0 / 4%);
  }
  .om-categories::after {
    content: "";
    position: absolute;
    left: 100%;
    top: -1px;
    width: 9px;
    height: calc(100% + 2px);
  }
}

.om-about { padding-bottom:0; }
.om-about h1 { font-size:clamp(32px,4vw,44px); }
.om-about-logo { display:block; width:108.375px; max-width:70%; height:auto; margin:88px auto 0; }

.om-contact { display:flex; align-items:center; gap:12px; }
.om-contact-x { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; }
.om-contact-x:hover { filter:drop-shadow(0 0 5px rgb(225 215 35 / 50%)); }

.om-about-title { position:absolute; width:1px; height:1px; padding:0; margin:-1px !important; overflow:hidden; clip-path:inset(50%); white-space:nowrap; }
main:has(> .om-about) { padding-bottom:8px; }
body:has(.om-about) .om-site-footer { padding-top:12px; text-align:center; }

.om-about { margin-inline:auto; }
