.om-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  background: var(--yellow);
  color: var(--text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.om-btn:hover { background: var(--yellow-hover); }
.om-btn--sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 12px;
}
.om-btn--ghost {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  color: var(--crimson);
}
.om-btn--ghost:hover { background: transparent; }
.om-btn--ghost span {
  display: inline-block;
  transition: transform 0.25s ease;
}
.om-btn--ghost:hover span { transform: translateX(4px); }
.om-underline {
  display: block;
  width: 88px;
  height: 3px;
  margin: 22px 0 26px;
  background: var(--crimson);
  border-radius: 40% 60% 50% 50% / 80% 20% 80% 20%;
  transform: rotate(-1.2deg);
}
.om-num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--crimson);
  letter-spacing: 0.12em;
}
.om-card-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin: 10px 0 0;
  line-height: 1.15;
}
.om-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(252, 250, 246, 0.92);
  display: grid;
  place-items: center;
  pointer-events: none;
}
.om-play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--text-main);
  margin-left: 3px;
}
.om-media {
  position: relative;
  overflow: hidden;
}
.om-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.om-media:hover img { transform: scale(1.02); }
.om-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  border-bottom: 1px solid rgba(48, 40, 34, 0.22);
}
.om-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 0;
  color: var(--text-main);
  outline: none;
}
.om-form input::placeholder { color: var(--text-light); }
.om-mark {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.28;
  filter: url(#om-rough);
  pointer-events: none;
}
.jd-design-switch {
  position: fixed;
  z-index: 100000;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px 8px;
  background: rgba(26, 22, 18, 0.92);
  font: 600 12px/1.2 var(--sans);
}
.jd-design-switch__label {
  color: rgba(244, 239, 230, 0.55);
  padding: 0 6px 0 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
}
.jd-design-switch__btn {
  color: #f4efe6;
  text-decoration: none;
  padding: 7px 12px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.jd-design-switch__btn:hover { background: rgba(255, 255, 255, 0.08); }
.jd-design-switch__btn.is-active { background: #fff; color: #1a1612; }
@media (max-width: 520px) {
  .jd-design-switch { left: 10px; right: 10px; transform: none; }
}
